*{
  font-family: Arial, Helvetica, sans-serif;
}
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  background-color: #fff;
}
.container {
  display: flex;
  min-height: 100vh;
}
.left-section {
  width: 75%;
  padding: 0;
  background: #fff;
  display: flex;
  flex-direction: column;
}

/* Navbar Section Start */
.navbar {
  width: 100%;
  position: relative;
  z-index: 2;
  padding: 0;
}
#navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  max-width: 100vw;
  background-color: white;
  color: black;
  position: sticky;
  top: 0;
  z-index: 9999;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

.logo img {
  height: 40px;
  width: auto;
  display: block;
}
.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  margin: 0;
  padding: 0;
}
.nav-links li a {
  color: #000000;
  text-decoration: none;
  font-size: 1em;
  padding: 8px 12px;
  border-radius: 3px;
  transition: background 0.3s, color 0.3s;
}
.nav-links li a:hover,
.nav-links li a:focus {
  background: #23272b;
  color: white;
  outline: none;
}
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  cursor: pointer;
  z-index: 3;
  margin-left: 20px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 3px;
  margin: 4px 0;
  background: #000;
  border-radius: 4px;
  transition: 0.4s;
}
/* --- MOBILE RESPONSIVE --- */
@media (max-width: 950px) {
  /* Switch container layout handled elsewhere (if needed) */
}
@media (max-width: 1000px) {
  .nav-links {
    position: absolute;
    right: 0;
    top: 60px;
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    width: 100vw;
    max-width: 300px;
    padding: 20px 0 10px 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-in-out;
  }
  .nav-links.active {
    opacity: 1;
    pointer-events: auto;
  }
  .nav-links li a {
    color: #000000;
    padding: 12px 20px;
  }
  .nav-links li a:hover,
  .nav-links li a:focus {
    background: #23272b;
    color: white;
  }
  .menu-toggle {
    display: flex;
  }
}
/* Animate Hamburger to X when active */
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}
/* --- RIGHT SECTION STYLES --- */
.right-section {
  width: 25%;
  padding: 20px;
  background: linear-gradient(to top left, #1e3c72, #2a5298);
  position: sticky;
  top: 0;
  height: 95vh;
}
/* Navbar Section End */

/* Hero Section Start */
.hero-section {
  width: 100%;
  max-width: 100%;
  padding-top: 2px;
  margin: 0;
  position: relative;
  overflow: hidden;
}
/* Carousel Item Layout */
.hero-carousel .item {
  position: relative;
  width: 100%;
  height: 89vh;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 0 0 22px 22px;
  box-shadow: 0 4px 36px 0 rgba(41, 51, 93, 0.07);
}
/* Responsive image styling */
.hero-carousel .item img.img-fluid {
  width: 100vw;
  min-width: 100%;
  min-height: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.88) grayscale(5%);
  transition: filter 0.5s;
}
/* Captions */
.hero-carousel .caption {
  position: absolute;
  left: 8vw;
  bottom: 16%;
  z-index: 2;
  color: #fff;
  text-shadow: 0 2px 16px #1820243a;
  max-width: 52vw;
  background: rgba(35, 48, 78, 0.34);
  border-radius: 10px;
  padding: 22px 34px 20px 30px;
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(1.5px);
  box-shadow: 0 2px 34px 0 rgba(46, 56, 98, 0.08);
  animation: fadeInUp 1s cubic-bezier(0.4, 2, 0.55, 0.98);
}
@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(28px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-carousel .caption h1 {
  font-size: 2.6em;
  font-weight: 700;
  margin-bottom: 12px;
  letter-spacing: 1.2px;
  color: #fff;
  line-height: 1;
  text-shadow: 0 2px 16px #0f25354a;
}
.hero-carousel .caption p {
  font-size: 1.25em;
  font-weight: 400;
  color: #dbe7f3;
}
/* Owl Carousel controls styling */
.owl-dots {
  display: none;
}
.hero-section .owl-dots {
  position: absolute;
  left: 50%;
  bottom: 25px;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  opacity: 0;
}
.hero-section .owl-dot span {
  width: 12px;
  height: 12px;
  display: inline-block;
  background: #fff;
  margin: 4px 4px;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.3s;
  border: 2px solid #0734610f;
}
.hero-section .owl-dot.active span {
  background: #189bfa;
  opacity: 0;
  border: 2px solid #1279c9;
}
.hero-section .owl-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  pointer-events: none;
  z-index: 4;
  display: flex;
  justify-content: space-between;
  padding: 0 16px;
}
.hero-section .owl-nav button {
  pointer-events: all;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  border: none;
  box-shadow: 0 4px 18px #2b3e5436;
  width: 42px;
  height: 42px;
  font-size: 1.44em;
  color: #174d74;
  transition: background 0.25s, color 0.3s;
}
.hero-section .owl-nav button:hover {
  background: #189bfa;
  color: #fff;
}
/* Responsive: Tablet */
@media (max-width: 900px) {
  .hero-carousel .item {
    height: 46vw;
    min-height: 186px;
    border-radius: 0 0 14px 14px;
  }
  .hero-carousel .caption {
    padding: 16px 22px 14px 16px;
    left: 5vw;
    bottom: 10%;
    max-width: 63vw;
  }
  .hero-carousel .caption h1 {
    font-size: 2em;
  }
  .hero-carousel .caption p {
    font-size: 1em;
  }
}
/* Responsive: Mobile */
@media (max-width: 600px) {
  .hero-carousel .item {
    height: 84vw;
    min-height: 130px;
    max-height: 560px;
    margin-top: 0px;
    margin: 0;
    padding: 0;
    box-shadow: 0 4px 22px 0 rgba(41, 51, 93, 0.07);
  }
  .hero-carousel .caption {
    padding: 8px 13px 8px 13px;
    left: 3vw;
    bottom: 7vw;
    max-width: 94vw;
  }
  .hero-carousel .caption h1 {
    font-size: 1.19em;
    line-height: 10%;
  }
  .hero-carousel .caption p {
    font-size: 0.95em;
  }
  .hero-section .owl-nav button {
    width: 32px;
    height: 32px;
    font-size: 1em;
  }
}
/* Hero Section End */

/* About Section Start */
.about-section {
  margin-top: 30px;
  background: #f6fafd; /* Change this color as needed */
  padding: 48px 0 32px 0;
  width: 100%;
  border-radius: 50px;
}
.about-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
  padding: 0 24px;
}
.about-text {
  flex: 1.7;
  min-width: 240px;
}
.about-image {
  flex: 1.3;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 200px;
}
.about-img {
  width: 100%;
  max-width: 340px;
  height: 50vh;
  border-radius: 12px;
  box-shadow: 0 8px 38px rgba(0, 0, 0, 0.09);
}
.section-title {
  font-size: 1.7rem;
  margin-bottom: 16px;
  font-family: inherit;
  color: #173650;
}
.overview-info {
  font-size: 1.08rem;
  color: #3d4251;
  margin-bottom: 10px;
  line-height: 1.6;
}
.moreText {
  display: block;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 0.4s ease, max-height 0.4s ease;
  font-size: 1.04rem;
  color: #4b4f5e;
  margin-bottom: 10px;
  line-height: 1.6;
}
/* When active (visible) */
.moreText.show {
  opacity: 1;
  max-height: 400px; /* Enough to fit content, adjust if needed */
}
.moreBtn {
  background: #1876d1;
  color: #fff;
  border: none;
  padding: 9px 23px;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 6px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.moreBtn:hover {
  background: #145aa0;
}
/* --- Responsive Styles --- */
@media (max-width: 900px) {
  .about-container {
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
  }
  .about-image {
    width: 100%;
    justify-content: flex-start;
  }
  .about-img {
    max-width: 720px;
  }
}
@media (max-width: 600px) {
  .about-section {
    padding: 32px 0 20px 0;
    margin-top: 24px;
  }
  .about-container {
    gap: 16px;
    padding: 0 10px;
  }
  .about-text {
    font-size: 0.98rem;
  }
  .about-img {
    max-width: 98vw;
    height: 50vh;
    border-radius: 8px;
  }
  .section-title {
    font-size: 5rem;
    margin-bottom: 12px;
  }
}
/* About Section End */

/* Highlight Section Start */
.highlight-section {
  margin-top: 30px;
  background: #f0f6ff; /* subtle light blue background, change as needed */
  padding: 48px 0 32px;
  width: 100%;
}
.highlight-container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}
.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #162852;
  margin-bottom: 32px;
  line-height: 1.18;
  letter-spacing: 0.2px;
  text-align: center; /* text-center */
}
/* Highlight Grid */
.highlight-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px 30px;
}
@media (max-width: 900px) {
  .highlight-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .section-title {
    font-size: 1.7rem;
  }
}
/* Highlight Card */
.highlightData {
  display: flex;
  align-items: flex-start;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 5px 32px 0 rgba(24, 155, 250, 0.09);
  padding: 26px 24px;
  min-height: 92px;
  gap: 18px;
  opacity: 0;
  transform: translateY(30px);
  transition: box-shadow 0.25s, transform 0.3s, opacity 0.7s;
  will-change: transform, opacity;
}
.highlightData:hover {
  box-shadow: 0 8px 46px 0 rgba(24, 155, 250, 0.16);
  transform: translateY(-3px) scale(1.015);
}
/* Icon styling */
.iconBox {
  width: 44px;
  height: 44px;
  min-width: 44px;
  min-height: 44px;
  background: linear-gradient(135deg, #189bfa 52%, #c8e4ff 109%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 3px 12px #b4e9ff26;
  margin-right: 8px;
}
.iconBox img {
  width: 24px;
  height: 24px;
  filter: none;
  display: block;
}
.highlightData p {
  font-size: 1.09rem;
  color: #2a3a60;
  letter-spacing: 0.06px;
  margin: 0;
  line-height: 1.5;
  font-weight: 500;
}
/* Fade-in animation */
.animate-fade {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s cubic-bezier(0.21, 1.06, 0.74, 0.98),
    transform 0.7s cubic-bezier(0.21, 1.06, 0.74, 0.98);
}
.animate-fade.visible {
  opacity: 1;
  transform: translateY(0);
}
/* Cascading delays */
.delay-0 {
  transition-delay: 0.08s;
}
.delay-1 {
  transition-delay: 0.26s;
}
.delay-2 {
  transition-delay: 0.44s;
}
.delay-3 {
  transition-delay: 0.62s;
}
.delay-4 {
  transition-delay: 0.8s;
}
.delay-5 {
  transition-delay: 0.98s;
}
/* Responsive for mobile */
@media (max-width: 550px) {
  .highlightData {
    padding: 18px 12px;
    border-radius: 11px;
    gap: 14px;
    min-height: unset;
  }
  .iconBox {
    width: 33px;
    height: 33px;
    min-width: 33px;
    min-height: 33px;
    border-radius: 9px;
  }
  .iconBox img {
    width: 17px;
    height: 17px;
  }
  .section-title {
    font-size: 1.17rem;
  }
  .highlightData p {
    font-size: 0.97rem;
  }
}
/* Highlight Section End */

/* Floor Section Table Start */
.floor-section {
  margin-top: 30px;
  background: #f4fafb;
  padding: 48px 0 32px 0;
  width: 100%;
  border-radius: 50px;
  border-color: #000000;
  border-width: 50px;
}
.floor-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-title {
  color: #173650;
  font-size: 1.7rem;
  text-align: center;
  margin-bottom: 24px;
  font-family: inherit;
}
.table-responsive {
  width: 100%;
  overflow-x: auto;
  background: transparent;
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.06);
}
.pricing-table th,
.pricing-table td {
  padding: 16px 10px;
  text-align: left;
  font-size: 1.04rem;
  color: #184262;
}
.pricing-table th {
  background: #eaf2f3;
  font-weight: 600;
  border-bottom: 2px solid #dee7ee;
}
.pricing-table tr:not(:last-child) td {
  border-bottom: 1px solid #f0f0f0;
}
.currency {
  font-weight: bold;
  color: #2187d1;
}
@media (max-width: 900px) {
  .floor-container {
    padding: 0 10px;
  }
  .section-title {
    font-size: 1.25rem;
  }
}
@media (max-width: 600px) {
  .floor-section {
    padding: 32px 0 18px 0;
    margin-top: 20px;
  }
  .pricing-table,
  .pricing-table thead,
  .pricing-table tbody,
  .pricing-table tr,
  .pricing-table th,
  .pricing-table td {
    display: block;
    width: 100%;
  }
  .pricing-table thead {
    display: none;
  }
  .pricing-table tr {
    margin-bottom: 18px;
    box-shadow: 0 2px 8px rgba(40, 118, 201, 0.06);
    border-radius: 8px;
    background: #fff;
    padding: 10px;
  }
  .pricing-table td {
    padding: 9px 5px;
    position: relative;
    font-size: 1rem;
    border: none;
  }
  .pricing-table td::before {
    content: attr(data-label) ": ";
    font-weight: bold;
    color: #2187d1;
    display: block;
    margin-bottom: 4px;
  }
}
/* Floor Section Table End */

/* Amenities Section Start */
.amenities-section {
  margin-top: 30px;
  background: #f7f9fb; /* Change this to fit your palette */
  width: 100%;
  padding: 48px 0 32px 0;
  border-radius: 0; /* remove rounding for full-width look */
}
.amenities-container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-title {
  color: #173650;
  text-align: center;
  font-size: 1.7rem;
  margin-bottom: 36px;
  font-family: inherit;
}
.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px 20px;
  width: 100%;
}
.amenity-box {
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 12px;
  min-height: 154px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.07);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  transition: box-shadow 0.2s;
  cursor: pointer;
}
.amenity-box:hover {
  box-shadow: 0 18px 44px rgba(24, 118, 209, 0.14);
}
.overlay-text {
  width: 100%;
  background: rgba(25, 61, 96, 0.66);
  color: #fff;
  font-size: 1.15rem;
  text-align: center;
  padding: 14px 0;
  font-weight: 500;
  letter-spacing: 0.5px;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  position: absolute;
  bottom: 0;
}
/* Tablet: 2 columns */
@media (max-width: 900px) {
  .amenities-container {
    padding: 0 12px;
  }
  .section-title {
    font-size: 1.22rem;
  }
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px 14px;
  }
  .amenity-box {
    min-height: 120px;
  }
}
/* Mobile: 1 column */
@media (max-width: 600px) {
  .amenities-section {
    padding: 28px 0 14px 0;
    margin-top: 20px;
  }
  .amenities-container {
    padding: 0 6px;
  }
  .amenities-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .amenity-box {
    min-height: 270px;
    border-radius: 7px;
  }
  .overlay-text {
    padding: 10px 0;
    font-size: 1rem;
    border-bottom-left-radius: 7px;
    border-bottom-right-radius: 7px;
  }
}
/* Amenities Section End */

/* Gallery Section Start */
.gallery-section {
  margin-top: 30px;
  background: #f9fbfe; /* Change background to your preferred color */
  width: 100%;
  padding: 48px 0 32px 0;
  border-radius: 0; /* No border radius for full-width */
}
.gallery-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-title {
  font-size: 1.7rem;
  color: #173650;
  margin-bottom: 24px;
  font-family: inherit;
}
/* Owl Carousel Overrides */
.gallery-carousel .gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  background: #fff;
}
.gallery-carousel .gallery-item img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  transition: transform 0.4s ease;
}
.gallery-carousel .gallery-item:hover img {
  transform: scale(1.05);
}
/* Custom Navigation Buttons */
.gallery-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}
.gallery-nav button {
  background: #1876d1;
  border: none;
  color: white;
  font-size: 1.8rem;
  padding: 8px 16px;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.gallery-nav button:hover,
.gallery-nav button:focus {
  background: #145aa0;
  outline: none;
}
/* Responsive Grid for Owl Carousel items */
@media (min-width: 1200px) {
  /* Usually Owl Carousel items are shown one at a time by default.
     Use JS options to control number visible if desired */
}
@media (max-width: 900px) {
  .gallery-carousel .gallery-item img {
    height: 180px;
  }
  .gallery-container {
    padding: 0 16px;
  }
  .section-title {
    font-size: 1.35rem;
  }
  .gallery-nav button {
    font-size: 1.5rem;
    padding: 7px 14px;
  }
}
@media (max-width: 600px) {
  .gallery-carousel .gallery-item img {
    height: 230px;
  }
  .gallery-container {
    padding: 0 12px;
  }
  .section-title {
    font-size: 1.1rem;
  }
  .gallery-nav button {
    font-size: 1.25rem;
    padding: 6px 12px;
  }
}
/* Gallery Section End */

/* Conatct Section Start */
.contact-section {
  margin-top: 30px;
  background: #e9f1f7; /* Change this background color as desired */
  width: 100%;
  padding: 48px 0 48px 0;
  border-radius: 0;
  box-sizing: border-box;
}
.contact-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}
.contact-card {
  display: flex;
  gap: 48px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.06);
  padding: 36px 36px 36px 36px;
  align-items: center;
  box-sizing: border-box;
}
/* Image side */
.contact-img {
  flex: 1;
  min-width: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact-img img {
  width: 100%;
  max-width: 380px;
  border-radius: 12px;
  box-shadow: 0 6px 22px rgba(0, 0, 0, 0.1);
  object-fit: cover;
}
/* Form side */
.contact-form {
  flex: 1.2;
  min-width: 280px;
  box-sizing: border-box;
}
/* Section title */
.contact-form .section-title {
  font-size: 1.8rem;
  color: #173650;
  margin-bottom: 24px;
  font-family: inherit;
}
/* Form styles */
.contact-form form {
  width: 100%;
}
.form-group {
  position: relative;
}
.input-icon {
  position: absolute;
  top: 50%;
  left: 14px;
  transform: translateY(10%);
  color: #a0aaba;
  font-size: 1.1rem;
  pointer-events: none;
  z-index: 1;
  height: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-control {
  width: 100%;
  padding: 12px 14px 12px 40px;
  font-size: 1rem;
  border-radius: 6px;
  border: 1.6px solid #ccdbe5;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
  outline-offset: 2px;
}
.form-control:focus {
  border-color: #1876d1;
  box-shadow: 0 0 8px rgba(24, 118, 209, 0.4);
}
/* Error message */
.error {
  color: #d73925;
  font-size: 0.875rem;
  display: none;
  margin-top: 6px;
  font-weight: 500;
}
/* Show error when input invalid & touched */
.form-control:invalid + .error {
  display: block;
}
.form-group input[name="name"],
.form-group input[name="mobile"] {
  margin-top: 20px;
}
/* Checkbox */
.form-check {
  font-size: 0.87rem;
  color: #393f51;
  margin-top: 10px;
}
.form-check-input {
  width: 16px;
  height: 16px;
  margin-top: 3px;
  cursor: pointer;
}
.form-check-label a.link-primary {
  color: #1876d1;
  text-decoration: underline;
}
/* Submit button */
.btn.custom-btn {
  background-color: #1876d1;
  border: none;
  color: white;
  padding: 12px 26px;
  font-size: 1.1rem;
  border-radius: 6px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: inline-block;
}
.btn.custom-btn:hover,
.btn.custom-btn:focus {
  background-color: #145aa0;
  outline: none;
}

/* Responsive styles */

@media (max-width: 900px) {
  .contact-card {
    flex-direction: column;
    padding: 24px 20px 24px 20px;
    gap: 24px;
  }
  .contact-img {
    min-width: 100%;
    max-width: 480px;
  }
  .contact-img img {
    max-width: 100%;
    height: auto;
  }
  .contact-form {
    min-width: 100%;
  }
}

@media (max-width: 600px) {
  .contact-section {
    padding: 32px 0 32px 0;
    margin-top: 20px;
  }
  .contact-container {
    padding: 0 12px;
  }
  .contact-form .section-title {
    font-size: 1.4rem;
    margin-bottom: 16px;
  }
  .form-control {
    font-size: 0.95rem;
    padding: 10px 12px 10px 36px;
  }
  .btn.custom-btn {
    width: 100%;
    font-size: 1rem;
    padding: 12px 0;
  }
}

/* Conatct Section End */

/* Footer Section Start */
/* Creative Footer Start */
.footer-container {
  width: 90%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 15px;
  text-align: center;
}
/* Custom Footer */
.custom-footer {
  background: #162852;
  color: #d7e1ef;
  margin-top: 20px;
  padding: 48px 15px 36px;
  font-size: 1rem;
  user-select: none;
}
/* Footer Brand Section */
.footer-brand {
  max-width: 280px;
  margin: 0 auto;
}
.footer-logo {
  max-width: 140px;
  height: auto;
  display: block;
  margin: 0 auto;
  background-color: white;
  filter: drop-shadow(0 2px 3px rgba(255, 255, 255, 0.12));
  transition: filter 0.3s ease;
}
.footer-logo:hover,
.footer-logo:focus {
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.22));
  outline: none;
  cursor: pointer;
}
.footer-qr {
  max-width: 100px;
  height: auto;
  margin: 12px auto 0;
  display: block;
  border-radius: 5px;
  box-shadow: 0 5px 18px rgba(24, 155, 250, 0.4);
  transition: transform 0.3s ease;
}
.footer-qr:hover,
.footer-qr:focus {
  transform: scale(1.06);
  outline: none;
  cursor: pointer;
}
/* RERA Info Text */
.rera-info {
  font-size: 0.875rem;
  line-height: 1.5;
  color: #a8bad8;
  margin-top: 18px;
  user-select: text;
}
/* Footer Links */
.footer-links {
  margin-top: 24px;
  font-size: 0.9rem;
  color: #aec2e1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  user-select: none;
}
.footer-link {
  color: #aec2e1;
  text-decoration: none;
  padding: 4px 6px;
  border-radius: 6px;
  transition: background-color 0.3s ease, color 0.25s ease;
}
.footer-link:hover,
.footer-link:focus {
  text-decoration: underline;
  color: #189bfa;
  background-color: rgba(24, 155, 250, 0.15);
  outline: none;
  cursor: pointer;
}
.divider {
  color: #779cc8;
  user-select: none;
  font-weight: 500;
  pointer-events: none;
}
/* Bottom Attribution Section */
#footer-attribution {
  background: #f9fbff;
  color: #5574a7;
  font-size: 0.9rem;
  user-select: none;
  border-top: 1px solid #d9e5fc;
  justify-content: space-around;
}
#footer-attribution p {
  margin: 0;
  padding: 0;
  line-height: 1.5;
}
.footer-attribution-link {
  color: #189bfa;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.3s ease;
}
.footer-attribution-link:hover,
.footer-attribution-link:focus {
  color: #1279c9;
  text-decoration: underline;
  outline: none;
}
/* Medium devices/tablets */
@media (max-width: 768px) {
  .custom-footer {
    padding: 36px 12px 28px;
  }
  .footer-brand {
    max-width: 220px;
  }
  .footer-logo {
    max-width: 110px;
  }
  .footer-qr {
    max-width: 80px;
  }
  .footer-links {
    font-size: 0.85rem;
    gap: 10px;
  }
  #footer-attribution {
    font-size: 0.82rem;
  }
}
/* Small devices/mobile */
@media (max-width: 480px) {
  .custom-footer {
    padding: 28px 10px 24px;
  }
  .footer-brand {
    max-width: 180px;
  }
  .footer-logo {
    max-width: 90px;
  }
  .footer-qr {
    max-width: 70px;
  }
  .footer-links {
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.8rem;
  }
  .footer-enquiryBtn {
    font-size: 0.9rem;
    gap: 2vw;
    padding: 12px 8px;
  }
  .footer-enquiryBtn i {
    font-size: 1.15rem;
  }
}
/* Creative Footer End */
/* Footer Section End */

/* Right From Start */
/* === Pre-register Form Section Styles === */
.formdiv {
  margin-top: 30px;
  background: #eff6fb; /* Custom light background, change as needed */
  padding: 28px 20px 20px 20px;
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(24, 118, 209, 0.1);
  width: 100%;
  box-sizing: border-box;
}
.pre-register-form h3 {
  font-size: 1.3rem;
  color: #175ba8;
  margin-bottom: 7px;
  font-family: inherit;
}
.pre-register-form p {
  color: #184262;
  margin-bottom: 24px;
  font-size: 1rem;
}
.pre-register-form label.sr-only {
  position: absolute;
  left: -9999px;
}
.pre-register-form input {
  width: 100%;
  margin-bottom: 14px;
  padding: 11px 12px;
  border-radius: 6px;
  border: 1.4px solid #bdd1e7;
  font-size: 1rem;
  background: #fff;
  color: #173650;
  box-sizing: border-box;
  transition: border 0.22s;
}
.pre-register-form input:focus {
  border-color: #1876d1;
  outline: 0;
}
.pre-register-whatsapp-btn {
  display: block;
  width: 100%;
  margin-top: 6px;
  background: #25d366;
  color: #ffffff;
  font-weight: 600;
  font-size: 1.08rem;
  border: none;
  border-radius: 6px;
  padding: 11px 0;
  cursor: pointer;
  text-align: center;
  text-decoration: none;
  transition: background 0.22s;
}
.pre-register-whatsapp-btn:hover,
.pre-register-whatsapp-btn:focus {
  background: #128c7e;
  color: #fff;
  outline: none;
}
/* === Service Icon Section === */
.enquiry-section {
  margin-top: 18px;
  display: flex;
  gap: 10px;
  justify-content: space-between;
  background: #f6fafb;
  padding: 18px 6px 10px 6px;
  border-radius: 10px;
}
.serv-sec {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.serv-sec img {
  margin-bottom: 8px;
}
/* === WhatsApp Floating Icon === */
.whatsaapBtn {
  position: fixed;
  right: 24px;
  bottom: 32px;
  background: #25d366;
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 98;
  box-shadow: 0 4px 18px rgba(24, 118, 209, 0.18);
  transition: background 0.22s;
}
.whatsaapBtn:hover {
  background: #128c7e;
}
.whatsaapBtn img {
  width: 34px;
  height: 34px;
  display: block;
}
/* Responsive styles */
@media (max-width: 900px) {
  .formdiv {
    padding: 18px 12px 16px 12px;
  }
  .enquiry-section {
    padding: 14px 2px 8px 2px;
  }
}
@media (max-width: 600px) {
  .formdiv {
    margin-top: 24px;
    padding: 9vw 3vw 6vw 3vw;
    border-radius: 7px;
  }
  .pre-register-form h3 {
    font-size: 1.1rem;
  }
  .pre-register-form p {
    font-size: 0.98rem;
  }
  .enquiry-section {
    flex-direction: column;
    gap: 12px;
    padding: 10px 1px;
  }
  .serv-sec {
    flex: unset;
    flex-direction: row;
    justify-content: flex-start;
  }
  .serv-sec img {
    margin: 0 8px 0 0;
    width: 26px;
  }
  .whatsaapBtn {
    width: 46px;
    height: 46px;
    right: 16px;
    bottom: 20px;
  }
  .whatsaapBtn img {
    width: 25px;
    height: 25px;
  }
}

/* Right From End */

@media (max-width: 1000px) {
  .container {
    flex-direction: column;
  }
  .left-section,
  .right-section {
    width: 100% !important;
    padding: 15px 20px;
    box-sizing: border-box;
  }
  .right-section {
    position: static;
    height: auto;
  }
}

/* Project Walkthrough Start */
.project-walkthrough-section {
    margin-top: 40px;
    width: 100%;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 24px;
    box-sizing: border-box;
  }

  .pw-title {
    font-size: 2.4rem;
    font-weight: 700;
    text-align: center;
    color: #173650;
    margin-bottom: 24px;
    font-family: inherit;
    letter-spacing: 0.3px;
    user-select: none;
  }

  .pw-video-container {
    width: 100%;
    max-width: 860px;
    margin: 0 auto;
    box-shadow: 0 8px 40px rgba(24, 118, 209, 0.15);
    border-radius: 18px;
    overflow: hidden;
    cursor: pointer;
  }

  .pw-video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 18px;
    outline: none;
  }

  /* Responsive for smaller devices */
  @media (max-width: 1100px) {
    .project-walkthrough-section {
      max-width: 95vw;
      padding: 0 16px;
    }
    .pw-video-container {
      max-width: 100%;
    }
    .pw-title {
      font-size: 2rem;
      margin-bottom: 20px;
    }
  }

  @media (max-width: 600px) {
    .pw-title {
      font-size: 1.6rem;
    }
    .pw-video-container {
      border-radius: 12px;
      box-shadow: 0 4px 18px rgba(24, 118, 209, 0.1);
    }
  }
/* Project Walkthrough End */
