*{
    margin: 0;
}
body {
      margin: 0;
      background: #FFF;
      font-family: "Poppins", sans-serif;
      overflow-x: hidden;
      color: #fff;
    }
/* HERO SECTION */
.hero {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
/* Hero Logo */
.hero-logo {
  position: absolute;
    top: 25px;
    left: 25px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
}
.hero-logo img {
  width: 120px;      /* Adjust size */
  height: auto;
  transition: 0.3s ease;
}
.hero-logo img:hover {
  transform: scale(1.05);
}
/* Main Logo */
.hero-logo .main-logo {
    width: 120px;
    height: auto;
}

/* Slides */
.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 2s ease-in-out;
}

.slide.active {
  opacity: 1;
}

/* Dark Overlay */
.overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

/* Hero Content */
.content {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  z-index: 2;
  color: #fff;
  max-width: 550px;
  animation: fadeUp 1.5s ease;
}
/* Hero Content Background Box */
.hero-content-box {
  background: rgba(3, 27, 76, 0.55); /* Dark navy transparent */
  padding: 25px 30px;
  border-radius: 3px;
  backdrop-filter: blur(-2px);
  /* border: 1px solid rgba(255, 255, 255, 0.15); */
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
}
.content h1 {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  /* text-shadow: 0 0 15px rgba(212,175,55,0.5); */
}

.content p {
  font-size: 1.1rem;
  margin: 15px 0 25px;
}

.btn {
  background: #fdfdfe;
  border: none;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 30px;
  transition: 0.3s;
}

.btn:hover {
  background: rgba(0, 0, 0, 0.45);
  color: #fff;
}

/* Floating Luxury Navbar */
.lux-navbar {
  position: fixed;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 9999;
}

.lux-navbar a {
  width: 60px;
  height: 60px;
  border-radius: 15px;
  background: rgba(21, 60, 139, 0.55);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(25, 7, 91, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  color: #fff;
  position: relative;
  transition: 0.4s ease;
}

.lux-navbar a:hover {
  scale: 1.15;
  background: linear-gradient(135deg, #252065, #0f2559);
  box-shadow: 0 0 15px #6d74c5;
}

.lux-navbar a span {
  position: absolute;
  right: 70px;
  opacity: 0;
  transform: translateX(20px);
  background: #ffffff;
  padding: 6px 14px;
  border-radius: 8px;
  color: #000;
  white-space: nowrap;
  font-size: 14px;
  font-weight: 500;
  transition: 0.4s;
}

.lux-navbar a:hover span {
  opacity: 1;
  transform: translateX(0);
}
/* --- MOBILE NAVBAR FIX --- */
@media (max-width: 767px) {
  .lux-navbar {
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      top: auto !important;
      right: auto !important;
      flex-direction: row;
      gap: 12px;
      background: rgba(0, 0, 0, 0.55);
      padding: 10px 15px;
      border-radius: 20px;
      backdrop-filter: blur(8px);
      z-index: 9999;
  }

  .lux-navbar a {
      width: 45px;
      height: 45px;
      font-size: 18px;
      border-radius: 12px;
  }

  .lux-navbar * {
      pointer-events: auto;
  }
}

/* Fade-up animation */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
/* ---- RESPONSIVE HERO SECTION ---- */

/* Large Desktops */
@media (min-width: 1400px) {
  .content h1 {
    font-size: 3.6rem;
  }
  .content p {
    font-size: 1.3rem;
  }
}

/* Tablets (768px - 991px) */
@media (max-width: 991px) {
  .hero {
    height: 80vh;
  }

  .content {
    left: 5%;
    max-width: 450px;
  }

  .content h1 {
    font-size: 2.4rem;
  }
}

/* Mobile (576px - 767px) */
@media (max-width: 767px) {
  .hero {
    height: 75vh;
  }

  .hero-logo img {
    width: 85px;
  }

  .content {
    left: 5%;
    width: 90%;
    padding: 20px;
  }

  .hero-content-box {
    padding: 18px 20px;
  }

  .content h1 {
    font-size: 1.9rem;
    line-height: 1.3;
  }

  .content p {
    font-size: 0.95rem;
  }

  .btn {
    padding: 10px 22px;
    font-size: 0.9rem;
  }
}

/* Bottom center on mobile */
@media (max-width: 767px) {

  .lux-navbar {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    top: auto;
    right: auto;
    flex-direction: row;
    gap: 12px;
    background: rgba(0, 0, 0, 0.45);
    padding: 10px 15px;
    border-radius: 20px;
    backdrop-filter: blur(8px);
  }

  .lux-navbar a {
    width: 45px;
    height: 45px;
    font-size: 18px;
    border-radius: 12px;
  }

  .lux-navbar a span {
    display: none; /* hide labels on small screens */
  }
}
/* Desktop (Default) */
.hero-logo img {
  width: 120px;
  height: auto;
}

/* Tablet */
@media (max-width: 991px) {
  .hero-logo img {
    width: 100px;
  }
}

/* Mobile */
@media (max-width: 767px) {
  .hero-logo {
    top: 20px;
    left: 20px;
  }

  .hero-logo img {
    width: 80px;
  }
}

/* Small Mobile (Extra Small) */
@media (max-width: 480px) {
  .hero-logo img {
    width: 65px;
  }
}

/* Ultra Small Screens */
@media (max-width: 360px) {
  .hero-logo img {
    width: 55px;
  }
}
/* QR CODE BOX (Desktop Default) */
.hero-qr {
    position: absolute;
    bottom: 40px;
    right: 40px;
    background: rgba(255, 255, 255, 0.18);
    padding: 14px 18px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    z-index: 5;
}
.hero-qr img {
    width: 110px;
    height: auto;
}
.hero-qr p {
    font-size: 14px;
    font-weight: 600;
    margin-top: 8px;
    color: #fff;
}
/* 📱 Tablet View */
@media (max-width: 991px) {
    .hero-qr {
        bottom: 25px;
        right: 25px;
        padding: 12px 16px;
    }

    .hero-qr img {
        width: 90px;
    }
}

/* 📱 Mobile View */
@media (max-width: 767px) {
    .hero-qr {
        bottom: 20px;
        right: 50%;
        transform: translateX(50%);
        padding: 10px 14px;
        width: auto;
        max-width: 50%; 
    }

    .hero-qr img {
        width: 70px;
    }

    .hero-qr p {
        font-size: 12px;
    }
}

/* 📱 Extra Small Mobile */
@media (max-width: 480px) {
    .hero-qr img {
        width: 60px;
    }

    .hero-qr {
        padding: 8px 12px;
    }

    .hero-qr p {
        font-size: 11px;
    }
}

/* About Section */
.about-section {
  background: linear-gradient(135deg, #ffffff, #fafafa);
  position: relative;
  overflow: hidden;
}

.about-img {
  position: relative;
  overflow: hidden;
}

.about-img img {
  transition: transform 1.5s ease;
}

.about-img:hover img {
  transform: scale(1.1);
}

.about-img {
    position: relative;
    overflow: visible;   /* ribbon should not cut */
}
.section-about {
  font-size: 2.5rem;
  color: #111;
  font-weight: 700;
  position: relative;
}
.section-about::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: #2125a2;
  margin: 15px 84px;
  border-radius: 2px;
}


/* Fade-up animations */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s ease forwards;
}
.fade-up-delay { animation-delay: 0.4s; }
.fade-up-delay2 { animation-delay: 0.8s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
    
/* Comfort Amenities */
.amenities.white-bg {
  background:linear-gradient(rgba(3, 27, 76, 0.55), rgba(3, 27, 76, 0.55)),url("../img/living_roomm.jpg");
  background-attachment: fixed;
  background-repeat: no-repeat;
  padding: 100px 0;
  color: #000;
  overflow: hidden;
  background-size: cover;
}

.section-title {
  font-size: 2.5rem;
  color: #111;
  font-weight: 700;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #d4af37;
  margin: 15px auto;
  border-radius: 2px;
}
.subtitle {
  color: #555;
  font-size: 1.1rem;
  letter-spacing: 1px;
}

/* Amenity Cards */
.amenity-card {
  background: #ffffff;
  border: 1px solid rgba(212, 175, 55, 0.3);
  padding: 40px 20px;
  border-radius: 20px;
  transition: all 0.4s ease;
  height: 100%;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.amenity-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(212, 175, 55, 0.25);
  border-color: #d4af37;
}

.amenity-card i {
  font-size: 3rem;
  color: #153c8b;
  margin-bottom: 15px;
}

/* Fade-up Animation */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s forwards;
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Project Heighlight */
/* Project Highlights - Unique White Design */
.project-highlights {
  background: #fff;
  padding: 100px 0;
  font-family: "Poppins", sans-serif;
}

.section_project {
  font-size: 2.6rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}
.section_project::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: #2125a2;
  margin: 15px 115px;
  border-radius: 2px;
}

.subtitle {
  color: #777;
  font-size: 1.1rem;
  margin-bottom: 30px;
  line-height: 1.7;
}

.highlight-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.highlight-list li {
  font-size: 1.05rem;
  color: #333;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  line-height: 1.6;
}

.highlight-list i {
  font-size: 1.4rem;
  color: #153c8b;
}

.btn-download {
  background: #153c8b;
  color: #fff;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(58, 55, 212, 0.3);
}

.btn-download:hover {
  background: #2e6db9;
  box-shadow: 0 8px 25px rgba(45, 47, 181, 0.5);
  color: #fff;
  transform: scale(1.05);
}

/* Image Box */
.image-box img {
  border-radius: 20px;
  max-width: 90%;
  transition: transform 0.5s ease;
}

.image-box img:hover {
  transform: scale(1.03);
}

/* Animation */
.fade-left {
  opacity: 0;
  transform: translateX(-40px);
  animation: fadeLeft 1s forwards;
}

.fade-right {
  opacity: 0;
  transform: translateX(40px);
  animation: fadeRight 1s forwards;
}

@keyframes fadeLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Apartment Showcase */
.luxury-showcase {
  background: linear-gradient(rgba(3, 27, 76, 0.55), rgba(3, 27, 76, 0.55)),url("../img/building-3.jpeg");
  background-attachment: fixed;
  background-repeat: no-repeat;
  padding: 100px 0;
  color: #fff;
  background-size: cover;
  overflow: hidden;
}
.section-project {
  font-size: 2.6rem;
  font-weight: 700;
  color: #fff;
  position: relative;
}
.section-title::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  background: #2125a2;
  margin: 15px auto;
  border-radius: 2px;
}

.subtitle_apartment {
  color: #f7f6f6;
  font-size: 1.1rem;
  margin-bottom: 60px;
}

.space-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  justify-content: center;
}

.space-card {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.space-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
}

.space-info {
  padding: 25px;
}

.space-info h3 {
  color:  #153c8b;
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.space-info p {
  color: #444;
  font-size: 1rem;
  line-height: 1.6;
}

/* Hover Effect */
.space-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

/* Floating Animation */
@keyframes floatIn {
  0% {opacity: 0; transform: translateY(50px);}
  100% {opacity: 1; transform: translateY(0);}
}

.float-in {
  opacity: 0;
  animation: floatIn 1s forwards ease-out;
}
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }
.delay-4 { animation-delay: 0.8s; }

/* Contact Section */
.contact-us {
  background: #ffffff;
  padding: 100px 0;
  color: #111;
  position: relative;
}

.contact-us .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #000;
}

.contact-us .section-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background:  #153c8b;
  margin: 15px 0;
  border-radius: 2px;
}

.contact-us .subtitle {
  color: #666;
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.info-list {
  list-style: none;
  padding: 0;
}

.info-list li {
  font-size: 1.1rem;
  color: #333;
  margin-bottom: 12px;
}

.info-list i {
  color:  #153c8b;
  margin-right: 10px;
}

/* Form Styling */
.contact-form {
  background: #fff;
  border: 1px solid #eee;
}

.form-control {
  border-radius: 10px;
  border: 1px solid #ccc;
  padding: 12px 15px;
  font-size: 1rem;
}

.form-control:focus {
  border-color:  #153c8b;
  box-shadow: 0 0 6px rgba(212, 175, 55, 0.4);
}

.btn-send {
  background:  #153c8b;
  color: #fff;
  border: none;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}

.btn-send:hover {
  background: #2e6db9;
  box-shadow: 0 8px 25px rgba(45, 47, 181, 0.5);
  transform: scale(1.05);
}

/* Animations */
.fade-left {
  opacity: 0;
  transform: translateX(-50px);
  animation: fadeInLeft 1s forwards;
}

.fade-right {
  opacity: 0;
  transform: translateX(50px);
  animation: fadeInRight 1s forwards;
}

@keyframes fadeInLeft {
  to { opacity: 1; transform: translateX(0); }
}

@keyframes fadeInRight {
  to { opacity: 1; transform: translateX(0); }
}



/* ============ Footer Design ============ */
.footer-section {
  background: linear-gradient(135deg, #111 0%, #1b1b1b 100%);
  color: #fff;
  padding: 80px 0 40px;
  position: relative;
  overflow: hidden;
}

.footer-logo {
  width: 150px;
  animation: float 4s ease-in-out infinite;
}
.tagline {
  font-size: 0.95rem;
  color: #fff;
  margin-top: 10px;
}

.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin: 6px 0;
}
.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-links a:hover {
  color:  #153c8b;
}

.social-icons {
  text-align: center;
  margin-top: 40px;
}
.social-icons a {
  color: #fff;
  font-size: 1.3rem;
  margin: 0 12px;
  transition: transform 0.3s ease, color 0.3s ease, text-shadow 0.3s ease;
}
.social-icons a:hover {
  color:  #153c8b;
  transform: translateY(-4px);
  text-shadow: 0 0 10px  #153c8b;
}

.copyright {
  text-align: center;
  margin-top: 40px;
  font-size: 0.9rem;
  color: #999;
}

/* ===== Floating animation for logo ===== */
@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
  100% { transform: translateY(0); }
}

/* ===== Fade-up Animation ===== */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s ease forwards;
}
.fade-up:nth-child(1) { animation-delay: 0.2s; }
.fade-up:nth-child(2) { animation-delay: 0.4s; }
.fade-up:nth-child(3) { animation-delay: 0.6s; }

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== Gold glowing particles ===== */
.footer-section::before {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(212,175,55,0.05) 0%, transparent 70%);
  animation: moveGlow 15s linear infinite;
  z-index: 0;
}
@keyframes moveGlow {
  0% { transform: translate(0,0); }
  50% { transform: translate(-50px, -50px); }
  100% { transform: translate(0,0); }
}

.footer-section * {
  position: relative;
  z-index: 1;
}

.address-link {
  text-decoration: none;       /* removes underline */
  color: #0b0b0b;              /* light/white text */
}

.address-link:hover {
  text-decoration: none;       /* still no underline on hover */
  color: #153c8b;            /* optional: gold hover color */
}

/* Modal  */
/* Blue Glass Modal */
/* FIX: Make modal block all other layers on mobile */
.modal {
  pointer-events: auto !important;
  z-index: 20000 !important;
}

.modal-backdrop.show {
  pointer-events: none !important;
  z-index: 19000 !important;
}

.modal-content {
  position: relative;
  z-index: 20001 !important;
  pointer-events: auto !important;
}

.btn-close {
  z-index: 20002 !important;
  pointer-events: auto !important;
}

.modal-glass {
  position: relative;
  background: rgba(0, 51, 153, 0.25);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  overflow: hidden;
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.25);
}

/* Left Section */
.modal-left-glass {
  padding: 40px;
  color: #fff;
}

/* Tag */
.glass-tag {
  background: rgba(255, 255, 255, 0.20);
  border: 1px solid rgba(255, 255, 255, 0.35);
  padding: 6px 16px;
  border-radius: 30px;
  font-weight: 600;
  width: max-content;
  color: #e3f2ff;
}

/* Headings */
.glass-main-title {
  font-size: 36px;
  font-weight: 700;
  margin: 15px 0 10px;
  color: #ffffff;
}

.glass-sub-title {
  font-size: 18px;
  color: #dbe9ff;
  margin-bottom: 20px;
}

/* Description */
.glass-desc {
  font-size: 15px;
  color: #c9dffc;
  margin-bottom: 25px;
}

/* Buttons */
.glass-btn-primary {
  background: linear-gradient(90deg, #0057ff, #00a6ff);
  color: #fff;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 10px;
  border: none;
}

.glass-btn-secondary {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  padding: 10px 25px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.glass-btn-primary:hover,
.glass-btn-secondary:hover {
  transform: scale(1.03);
  transition: 0.2s;
}

/* Right Section Image */
.modal-right-glass img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Close Button */
.btn-close {
  filter: brightness(200%);
  position: absolute;
  top: 15px;
  right: 15px;
}

