/* Base styles for all devices */

/* Basic reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Global styles */
body {
  font-family: Arial, sans-serif;
  line-height: 1.6;

  color: white;
}

main {
  align-items: center;
  margin: auto;
}

/* Header styles */
header {
  background-color: black;
  color: #fff;
  padding: 1rem 0;
  text-align: center;
}

/* Navbar styles */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between; /* Updated from space-a to space-between */
  background-color: black;
  color: #fff;
  padding: 0 1rem; /* Add horizontal padding to create space around the ends */
}

.navbar-logo img {
  height: 70px; /* Adjust based on your logo size */
  width: auto;
}

.navbar-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-grow: 1;
  justify-content: center;
  gap: 30px;
}

.navbar-menu li {
  margin: 0 1rem;
}

.navbar-menu a {
  color: #fff;
  text-decoration: none;
  font-size: 1.2rem;
}

/* Contact button */
.navbar-contact {
  margin-left: auto;
}

.contact-button {
  background-color: white; /* Example button color */
  color: black;
  padding: 0.5rem 1rem;
  text-decoration: none;
  border-radius: 5px;
  font-weight: bold;
  transition: background-color 0.3s ease;
}

.contact-button:hover {
  background-color: white; /* Darker shade for hover effect */
}

/* Hero Section */
.hero-section {
  display: flex;
  flex-direction: column;
  background-color: black;
}

.box {
  display: flex;
  width: 80%;
  margin-bottom: 40px;
  justify-content: center;
  margin: auto;
}

.box1 {
  display: flex;
  gap: 20px;
}

.box-1 .box-content {
  width: 50%;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: start;
}

.box-1 .box-image {
  width: 50%;
}

.box-1 h1 {
  font-size: 44px;
}

.box-1 .box-image img {
  width: 60%;
  height: auto;
  display: block;
}

.box-2 {
  display: flex;
  width: 80%;
  justify-content: center;
  margin: auto;
  margin-bottom: 30px;
  margin-top: 30px;
}

.box-2 .box-part-25 {
  width: 25%;
  padding: 20px;
  box-sizing: border-box;
  border-right: 1px solid #ddd; /* Optional, for visual separation */
  background-color: white;
}

.box-2 .location-info {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.box-2 .location-icon {
  width: 40px; /* Adjust size as needed */
  height: 40px;
  margin-right: 10px; /* Space between icon and text */
}

.box-2 .location-text {
  display: flex;
  flex-direction: column;
}

.box-2 .location-text h3 {
  margin: 0;
  font-size: 24px;
  color: black;
}

.box-2 .location-name {
  margin: 5px 0 0;
  text-decoration: underline;
  font-size: 16px;
  color: red;
}

.box-2 .box-part-75 {
  width: 75%;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #aabef1;
  color: black;
}

.box-2 .content {
  flex-grow: 1;
}

.cta-button {
  align-self: flex-end;
  padding: 10px 20px;
  background: #f3d50e;
  color: black;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

.cta-button:hover {
  background: #f3d50e;
}

/* Responsive design */
@media (max-width: 1200px) {
  .box-1 h1 {
    font-size: 36px; /* Adjust font size for larger tablets and small desktops */
    line-height: 1.3;
  }

  .box-2 .box-part-25,
  .box-2 .box-part-75 {
    padding: 10px; /* Reduce padding for medium devices */
  }
}

@media (max-width: 768px) {
  .navbar {
    flex-direction: row;
    align-items: center; /* Center items on mobile */
  }

  .navbar-menu {
    display: none; /* Hide menu links on mobile */
  }

  .navbar-contact {
    text-align: center;
  }

  .hero-section {
    flex-direction: column;
  }

  .box-1 {
    flex-direction: column;
  }

  .box-1 .box-content,
  .box-1 .box-image {
    width: 100%;
  }

  .box-1 .box-image img {
    width: 100%; /* Ensure image is responsive */
  }

  .box-2 {
    flex-direction: column;
  }

  .box-2 .box-part-25,
  .box-2 .box-part-75 {
    width: 100%;
    padding: 10px;
    border-right: none; /* Remove border for mobile */
  }

  .box-2 .cta-button {
    align-self: center; /* Center button on mobile */
  }
}

@media (max-width: 470px) {
  .navbar-logo img {
    height: 50px; /* Adjust logo size for small screens */
  }

  .box-1 h1 {
    font-size: 28px; /* Further reduce font size for small screens */
  }

  .box-2 .location-text h3 {
    font-size: 20px; /* Adjust heading size for small screens */
  }

  .box-2 .location-name {
    font-size: 14px; /* Adjust font size for small screens */
  }
}
/* Section styles */
.about-section {
  width: 100%;
  padding: 40px 20px; /* Increased padding for better spacing */
  background-color: white; /* Light background color for contrast */
}

.section-heading {
  font-size: 40px;
  text-align: left;
  margin-bottom: 20px;
  color: black; /* Adjust color as needed */
  margin-left: 10px;
}

.section-content {
  display: flex;
  width: 100%;
  gap: 20px; /* Space between the two parts */
}

.part {
  width: 50%;
  padding: 20px;
  box-sizing: border-box;
}

.part-image img {
  width: 90%;
  height: auto; /* Maintain aspect ratio */
  display: block;
  border-radius: 8px; /* Optional: Add some border radius to the image */
}

.part-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left; /* Align text to the left for better readability */
  color: #333; /* Darker text color for contrast */
}

.part-content h3 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #333; /* Adjust color as needed */
}

.part-content p {
  font-size: 18px;
  line-height: 1.7;
  color: #555; /* Slightly lighter color for body text */
}

/* Responsive design */
@media (max-width: 768px) {
  .section-content {
    flex-direction: column; /* Stack parts vertically on smaller screens */
  }

  .part {
    width: 100%;
    padding: 10px; /* Reduced padding for smaller screens */
  }

  .part-image img {
    width: 100%;
    height: auto; /* Maintain aspect ratio */
    display: block;
    border-radius: 8px; /* Optional: Add some border radius to the image */
  }
}

/* Section styles */
.location-section {
  width: 100%;
  padding: 40px 20px; /* Padding for spacing */
  background-color: #ffffff; /* White background for the section */
}

.location-content {
  display: flex;
  width: 100%;
  gap: 20px; /* Space between the two parts */
}

.location-p {
  color: black !important;
  margin-left: 11px;
}
.location-part {
  width: 50%;
  padding: 20px;
  box-sizing: border-box;
}

.location-image img {
  width: 80%;
  height: auto; /* Maintain aspect ratio */
  display: block;
  border-radius: 8px; /* Optional: Add border radius to the image */
}

.location-content-box {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left; /* Align text to the left for better readability */
}

.location-box {
  padding: 20px;
  background: #aabef1;

  border-radius: 8px; /* Rounded corners */
  width: 70%;
  height: auto;
}

.location-box h4 {
  font-size: 24px;
  margin-bottom: 15px;
  color: black; /* Adjust color as needed */
}

.location-box p {
  font-size: 14px;
  line-height: 1.6;
  color: #333; /* Darker text color for contrast */
}

/* Responsive design */
@media (max-width: 768px) {
  .location-content {
    flex-direction: column; /* Stack parts vertically on smaller screens */
  }

  .location-part {
    width: 100%;
    padding: 10px; /* Reduced padding for smaller screens */
  }

  .location-box {
    padding: 20px;
    background: #aabef1;

    border-radius: 8px; /* Rounded corners */
    width: 100%;
    height: auto;
  }

  .location-image img {
    width: 100%;
    height: auto; /* Maintain aspect ratio */
    display: block;
    border-radius: 8px; /* Optional: Add border radius to the image */
  }
}

/* Section styles */
.layout-section {
  width: 100%;
  padding: 40px 20px; /* Padding for spacing */
  background-color: black; /* Set background color to black */
  display: flex;
  justify-content: center; /* Center the layout content horizontally */
}

.layout-content {
  display: flex;
  justify-content: center; /* Center the layout parts horizontally */
  gap: 20px; /* Space between the two parts */
  max-width: 1200px; /* Maximum width for large screens */
  width: 100%;
}

.layout-part {
  width: 50%;
  padding: 20px;
  box-sizing: border-box;
  text-align: center; /* Center text within each part */
  color: white; /* Set text color to white for contrast */
}

.layout-part:not(:last-child) {
  border-right: 2px solid white; /* Add a dividing line between parts */
}

.layout-heading {
  font-size: 28px;
  margin-bottom: 10px;
  color: white; /* Set heading color to white */
}

.layout-paragraph {
  font-size: 16px;
  line-height: 1.6;
  color: #ddd; /* Light gray color for better readability */
  margin-bottom: 15px;
}

.layout-image {
  width: 100%;
  height: auto; /* Maintain aspect ratio */
  border-radius: 8px; /* Optional: Add border radius to the image */
}

/* Responsive design */
@media (max-width: 768px) {
  .layout-content {
    flex-direction: column; /* Stack parts vertically on smaller screens */
  }

  .layout-part {
    width: 100%;
    padding: 10px; /* Reduced padding for smaller screens */
    border-right: none; /* Remove dividing line on smaller screens */
  }

  .layout-part:not(:last-child) {
    border-bottom: 2px solid white; /* Add a dividing line between parts */
    border-right: none;
  }
}

/* Section styles */
.area-statement {
  width: 100%;
  overflow: hidden; /* Ensure the image does not overflow its container */
}

.full-image {
  width: 100%;
  height: auto; /* Maintain aspect ratio */
  display: block; /* Remove default inline spacing */
}

/* Section styles */
.floor-plans {
  width: 100%;
  text-align: center; /* Center the heading */
  overflow: hidden; /* Ensure the image does not overflow its container */
  background-color: black;
}

.floor-plans-heading {
  font-size: 2rem; /* Adjust size as needed */
  color: white; /* Heading color */
  margin: 20px 0; /* Space above and below the heading */
  text-align: left;
  width: 70%;
  margin-left: 100px;
}

.floor-plans-image {
  width: 75%;
  height: auto; /* Maintain aspect ratio */
  display: block; /* Remove default inline spacing */
  margin: 0 auto;
}

/* Section styles */
.flooreplans-hidemobile {
  display: flex;
  width: 100%;
  gap: 20px; /* Space between the two boxes */
  background-color: black;
}

.flooreplans-hidemobile-box {
  width: 50%;
}

.flooreplans-hidemobile-image {
  width: 70%;
  height: auto; /* Maintain aspect ratio */
  display: block; /* Remove default inline spacing */
  margin: auto;
}

/* Hide section on mobile */
@media (max-width: 768px) {
  .flooreplans-hidemobile {
    display: none; /* Hide the section on smaller screens */
  }
}

/* Section styles */
.flooreplans-hidemobile2 {
  display: flex;
  justify-content: center; /* Center the content horizontally */
  align-items: center; /* Center the content vertically if needed */
  width: 100%;
  height: auto; /* Adjust as needed */
  padding: 20px; /* Optional: Add padding around the section */
  background-color: black;
}

.flooreplans-hidemobile-box2 {
  display: flex;
  justify-content: center; /* Center the image within the box */
  align-items: center; /* Center the image vertically within the box */
}

.flooreplans-hidemobile-image2 {
  max-width: 100%; /* Ensure image scales correctly */
  height: auto; /* Maintain aspect ratio */
  display: block; /* Remove default inline spacing */
}

@media (max-width: 768px) {
  .flooreplans-hidemobile-box2 {
    display: none; /* Hide the section on smaller screens */
  }

  .floor-plans-heading {
    font-size: 1.5rem; /* Adjust size as needed */
    color: white; /* Heading color */
    margin: 20px 0; /* Space above and below the heading */
    text-align: left;
    width: 100%;
  }

  .floor-plans-image {
    width: 100%;
    height: 200px; /* Maintain aspect ratio */
    display: block; /* Remove default inline spacing */
    margin: 0 auto;
  }
}

/* Section styles */
.amenities-section {
  width: 100%;
  padding: 40px 20px;
  background-color: white; /* Light background */
  text-align: center; /* Center heading */
}

.amenities-heading {
  font-size: 32px;
  color: #333;
  margin-bottom: 40px;
  text-align: left;
  margin-left: 40px;
}

.amenities-content {
  display: flex;
  justify-content: space-between; /* Space between the two parts */
  max-width: 100%;
  margin: 0 auto; /* Center the content */
  gap: 20px; /* Space between the two parts */
}

.amenities-part {
  width: 50%;
}

/* First part with image, heading, and text */
.amenities-box-1 {
  text-align: center;
}

.amenities-image {
  width: 100%;
  height: auto;
  border-radius: 8px; /* Optional */
}

.amenities-box-heading {
  font-size: 24px;
  margin-top: 15px;
  color: #333;
  text-align: left;
  margin-left: 40px;
}

.amenities-text {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin-top: 10px;
  text-align: left;
  margin-left: 40px;
  width: 90%;
}

/* Second part with four smaller boxes */
.amenities-box-2 {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.amenities-row {
  display: flex;
  justify-content: space-between; /* Space between two small boxes */
  gap: 20px;
}

.amenities-small-box {
  width: 50%; /* Half the width of the row */

  text-align: left;
}

.amenities-small-image {
  width: 100%;
  height: auto;
  border-radius: 8px; /* Optional */
}

.amenities-small-heading {
  font-size: 18px;
  margin-top: 10px;
  color: #333;
  text-align: left;
}

.amenities-small-text {
  font-size: 14px;
  color: #555;
  margin-top: 5px;
  text-align: left;
}

/* Responsive design */
@media (max-width: 768px) {
  .amenities-content {
    flex-direction: column;
  }

  .amenities-part {
    width: 100%;
  }

  .amenities-row {
    flex-direction: column;
  }

  .amenities-small-box {
    width: 100%;
  }

  .amenities-image {
    width: 100%;
    height: auto;
    border-radius: 8px; /* Optional */
  }

  .amenities-box-heading {
    font-size: 24px;
    margin-top: 15px;
    color: #333;
    text-align: left;
    margin-left: 0px;
  }
  .amenities-text {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
    margin-top: 10px;
    text-align: left;
    margin-left: 0px;

    width: 100%;
  }
}

/* Section styles */
.amenities-listing-section {
  background-color: white; /* Set background color to white */
  padding: 20px; /* Add padding around the section */
  display: flex;
  flex-direction: column;
  align-items: center; /* Center the content horizontally */
  max-width: 1200px; /* Set a max-width to keep the content centered */
  margin: 0 auto; /* Center the section within its container */
  width: 100%; /* Ensure the section takes full width */
}

/* Row styles */
.amenities-listing-row {
  display: flex;
  justify-content: space-between; /* Space between items in the same row */
  margin-bottom: 20px; /* Space between rows */
  width: 100%; /* Full width for rows */
}

/* Item styles */
.amenities-listing-item {
  display: flex;
  align-items: center; /* Align the icon and text vertically */
  flex: 1; /* Make items take equal space */
  max-width: calc(50% - 20px); /* Ensure items fit in 50% of the row width minus gap */
  box-sizing: border-box; /* Ensure padding and border are included in the width */
  text-align: center; /* Center text within each item */
}

/* Icon styles */
.amenities-listing-item i {
  color: black; /* Set icon color */
  font-size: 24px; /* Adjust the icon size */
  margin-right: 10px; /* Space between icon and text */
}

/* Text styles */
.amenities-listing-text {
  font-size: 15px;
  color: #555; /* Text color */
}

/* Responsive design */
@media (max-width: 768px) {
  .amenities-listing-row {
    flex-direction: column; /* Stack rows vertically on smaller screens */
    align-items: lef; /* Center items horizontally */
    text-align: left;
  }

  .amenities-listing-item {
    max-width: 100%; /* Full width for items on smaller screens */
    margin-bottom: 20px; /* Space between items */
  }

  .amenities-listing-row {
    display: flex;
    justify-content: space-between; /* Space between items in the same row */
    margin-bottom: 0px; /* Space between rows */
    width: 100%; /* Full width for rows */
  }

  /* Icon styles */
  .amenities-listing-item i {
    color: black; /* Set icon color */
    font-size: 20px; /* Adjust the icon size */
    margin-right: 10px; /* Space between icon and text */
  }

  /* Text styles */
  .amenities-listing-text {
    font-size: 14px;
    color: #555; /* Text color */
  }

  /* Item styles */
  .amenities-listing-item {
    display: flex;
    align-items: left; /* Align the icon and text vertically */
    flex: 1; /* Make items take equal space */
    max-width: 100%; /* Ensure items fit in 50% of the row width minus gap */
    box-sizing: border-box; /* Ensure padding and border are included in the width */
    text-align: left; /* Center text within each item */
  }
}

/* Section styles */
.specifications {
  width: 100%;
  margin: 0; /* Remove default margin */
  padding: 0; /* Remove default padding */
  overflow: hidden; /* Ensure the image doesn't overflow the section */
}

/* Image styles */
.specifications-image {
  width: 100vw; /* Full viewport width */

  display: block; /* Remove any extra space below the image */
  margin: 0; /* Remove default margin */
  padding: 0; /* Remove default padding */
}

/* Responsive design */
@media (max-width: 768px) {
  .specifications-image {
    height: auto; /* Adjust height for smaller screens */
    max-height: 50vh; /* Limit maximum height on smaller screens if needed */
  }
}

/* Section container */
.form-details {
  background-color: #f9f9f9; /* Light background color for the section */
  padding: 50px 20px; /* Padding around the form */
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Form container */
.form-container {
  background-color: black; /* Form background */
  padding: 40px; /* Inner padding */
  border-radius: 8px; /* Rounded corners */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Subtle shadow */
  max-width: 800px; /* Max width of the form */
  width: 100%; /* Full width for responsiveness */
  box-sizing: border-box;
}

/* Input row (two inputs per row) */
.input-row {
  display: flex;
  justify-content: space-between;
  gap: 20px; /* Space between the input groups */
  margin-bottom: 20px; /* Space between rows */
}

/* Input group (each input field with label) */
.input-group {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Labels */
input-group label {
  font-weight: 600; /* Bold labels */
  margin-bottom: 5px; /* Space between label and input */
}

/* Input fields */
input,
textarea {
  padding: 10px; /* Input padding */
  border: 1px solid #ccc; /* Light border */
  border-radius: 4px; /* Rounded inputs */
  font-size: 16px; /* Input text size */
  width: 100%; /* Full width input fields */
  box-sizing: border-box; /* Ensure padding is included in width */
  transition: border 0.3s ease; /* Smooth border transition */
}

input:focus,
textarea:focus {
  background: white;

  outline: none; /* Remove default outline */
}

/* Textarea */
textarea {
  resize: none; /* Disable resizing */
  height: 100px; /* Fixed height for textarea */
}

/* Submit button */
button[type="submit"] {
  background: #295ad8;

  color: white; /* White text */
  padding: 12px 20px; /* Button padding */
  border: none; /* Remove default border */
  border-radius: 4px; /* Rounded button */
  font-size: 16px; /* Font size */
  cursor: pointer; /* Pointer cursor */
  transition: background-color 0.3s ease; /* Smooth hover effect */
  width: 100%; /* Full width button */
  margin-top: 20px;
}

button[type="submit"]:hover {
  background-color: rgb(26, 26, 137); /* Darker green on hover */
}

/* Error states */
.error-input {
  border-color: red; /* Red border for invalid inputs */
}

.error-label {
  color: red; /* Red text for error labels */
}

.form-subheading {
  margin-bottom: 50px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .input-row {
    flex-direction: column; /* Stack inputs vertically on smaller screens */
  }

  button[type="submit"] {
    width: 100%; /* Full width for button on small screens */
  }
}

/* Footer section styles */
.footer-section {
  position: relative;
  background-image: url("/images/footer.png"); /* Background image */
  background-size: cover;
  background-position: center;
  padding: 50px 20px;
  text-align: center;
  color: white;
  height: 505px;
}

/* Black overlay */
.footer-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75); /* Black overlay */
  z-index: 1;
}

/* Content inside the footer */
.footer-content {
  display: flex;
  justify-content: space-between; /* Space between sections */
  align-items: center;
  position: relative;
  z-index: 2; /* Content above overlay */
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  margin-top: 100px;
}

/* First Part: Address styles */
.footer-address {
  flex: 1;
  text-align: left;
}

.footer-address h3 {
  margin-bottom: 10px;
  font-size: 18px;
  color: #fff;
}

.footer-address p {
  margin-bottom: 20px;
  font-size: 14px;
  color: #ccc;
}

/* Second Part: Logos */
.footer-logos {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 40px;
}

.footer-logo1 img {
  width: 250px; /* Adjust size */
  height: auto;
}

.footer-logo2 img {
  width: 120px; /* Adjust size */
  height: auto;
}

.footer-content a {
  position: relative;
  z-index: 2; /* Ensures link is clickable above overlay */
}
.footer-content a {
  pointer-events: auto; /* Ensure the link can be clicked */
}

/* Responsive design */
@media (max-width: 768px) {
  .footer-section {
    position: relative;
    background-image: url("/images/footer.png"); /* Background image */
    background-size: cover;
    background-position: center;
    padding: 50px 20px;
    text-align: center;
    color: white;
    height: 100vh;
  }
  .footer-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-address,
  .footer-logos {
    flex: unset;
    width: 100%;
    margin-bottom: 20px;
  }

  .footer-logos {
    justify-content: center;
  }

  .footer-logo1 img {
    width: 220px; /* Adjust size */
    height: auto;
  }

  .footer-logo2 img {
    width: 120px; /* Adjust size */
    height: auto;
  }
}

/* Designed by section styles */
.footer-designed-by {
  position: relative;
  z-index: 2; /* Ensures it's above the overlay */
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: white; /* Set text color to white */
}

.footer-designed-by a {
  text-decoration: none;
  color: white; /* Ensure the link is white */
  font-weight: bold;
}

.footer-designed-by a:hover {
  color: red; /* Optional: Change color on hover */
}

.contact-icons-container {
  position: fixed;
  bottom: 20px; /* Distance from the bottom of the viewport */
  right: 20px; /* Distance from the right of the viewport */
  display: flex;
  flex-direction: column; /* Stack icons vertically */
  align-items: center; /* Center the icons horizontally */
  z-index: 1000; /* Ensure the icons stay above other content */
}

.contact-icon {
  width: 60px; /* Adjust size as needed */
  height: 60px; /* Adjust size as needed */
  margin-bottom: 60px; /* Space between icons */
}

.contact-icon img {
  width: 100%;
  height: 100%;
  display: block;
}
