* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* ================= BASE ================= */

body {
  margin: 0;
  padding: 0;
  padding-top: 0; /* navbar height adjust */
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(135deg, #e3f2fd, #ffffff);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;

}
h1, h2, h3 {
  font-family: 'Playfair Display', serif;
}
html{
  margin: 0;
  padding: 0;
  scroll-behavior: smooth;
}
/* ================= HEADER ================= */
header, .top {
  background: linear-gradient(to right, #004aad, #007bff);
  color: white;
  text-align: center;
  padding: 30px;
}
.card,
.stat-box,
.review-card,
.vm-card {
  transform: translateZ(0);
  backface-visibility: hidden;
}
/* image smooth load */
img {
  image-rendering: auto;
  max-width: 100%;
  height: auto;
}
/* reduce lag in hover */
.card:hover,
.vm-card:hover {
  transform: translateY(-8px);
}

/* ================= SECTIONS ================= */
section {
  padding: 40px;
  max-width: 1200px;
  margin: auto;
  position: relative;
  animation: fadeUp 0.8s ease;
  /* NEW ADD */
  border-radius: 20px;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(10px);

}

section::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: #007bff;
  margin: 25px auto;
  border-radius: 10px;
}

/* ===== FINAL HERO LOGO FIX (NO DISAPPEAR) ===== */
/* ===== SUBTLE TAGLINE ===== */
.hero-tagline {
  margin-top: 12px;
  font-size: 16px;
  letter-spacing: 2px;

  color: rgba(255,255,255,0.85);

  /* soft glow */
  text-shadow: 0 2px 10px rgba(0,0,0,0.6);

  font-family: 'Montserrat', sans-serif;
  font-weight: 400;

  opacity: 0;
  animation: taglineFade 1.2s ease forwards;
  animation-delay: 2.2s; /* intro ke baad */
}

/* FADE IN EFFECT */
@keyframes taglineFade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* MOBILE ADJUST */
@media (max-width: 768px) {
  .hero-tagline {
    font-size: 14px;
    letter-spacing: 1px;
  }
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero-content img.hero-main-logo {
    width: 220px !important;   /* 👈 mobile perfect size */
  }
}

/* ===== SMALL PHONE (extra polish) ===== */
@media (max-width: 480px) {
  .hero-content img.hero-main-logo {
    width: 180px !important;
  }
}
.hero-content {
  position: absolute;
  z-index: 3;
  text-align: center;
  top: 50%;
  transform: translateY(-30%);
  
  color: rgb(245, 240, 240);
  /* NEW ADD */
  padding: 0 20px;
}

/* HERO LOGO FINAL */
.hero-content img.hero-main-logo {
  width: 310px !important;
  max-width: none !important;   /* 👈 IMPORTANT FIX */
  height: auto;
  display: block;
  margin: auto;

  filter: drop-shadow(0 0 25px rgba(255,215,0,0.7));
  opacity: 1 !important;
}


/* ===== INTRO LOADER ===== */
#intro-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: black;
  display: flex;
  justify-content: center;
  align-items: center;

  z-index: 99999;
}

/* INTRO LOGO */
.intro-logo {
  width: 200px;
  opacity: 0;
  transform: scale(0.5);

  animation: introAnim 2s ease forwards;
}

/* INTRO ANIMATION */
@keyframes introAnim {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.hero {
  position: relative;
  height: 600px;
  overflow: hidden;
  margin: 0;
  border-radius: 0;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  width: 100%;
  max-width: 100%;
  padding: 0;
  ; /* center align fix */
}

.slider {
  position: absolute;
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: 1s;
  transform: scale(1.08);
  transition: opacity 1.2s ease-in-out, transform 1.2s;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.4),
    rgba(0,0,0,0.55)
  );
  z-index: 2;
}
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  top: 50%;
  transform: translateY(-50%);
  color: rgb(245, 240, 240);
  /* NEW ADD */
  padding: 0 20px;

}
.hero-content img {
 /* max-width: 120px;*/
  margin-bottom: 10px;
  filter: drop-shadow(0 5px 15px rgba(0,0,0,0.6));
}


/* ================= CARDS ================= */
.property-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 280px));
  justify-content: auto;
  gap: 30px;
  padding: 40px;
}

.card {
  background: rgba(255,255,255,0.9);
  padding: 20px;
  border-radius: 18px;
  width: 100%;
  max-width: 280px;
  margin: auto ;
  text-align: center;
  backdrop-filter: blur(12px);
  box-shadow:  0 15px 35px rgba(0,0,0,0.12);
  transition: 0.4s;
  border: 1px solid rgba(255,255,255,0.3);
  overflow: hidden;
  position: relative;

}
.card h3 {
  font-size: 18px;
  margin: 12px 0 5px;
  color: #111;
}

.card p {
  font-size: 14px;
  color: #666;
}
/* highlight line */
.card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;

  background: linear-gradient(90deg, #007bff, #00c6ff);
}
.card .btn {
  display: inline-block;

  background: linear-gradient(135deg, #007bff, #00c6ff);

  padding: 10px 16px;
  border-radius: 25px;

  font-size: 13px;

  transition: 0.3s;
}

.card .btn:hover {
  transform: translateY(-2px);
}
.card:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 25px 50px rgba(0,0,0,0.2);

}

.card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 10px;
  transition: 0.5s ease;
}

/* zoom effect */
.card:hover img {
  transform: scale(1.05);
}

.btn {
  display: inline-block;
  background: #007bff;
  color: white;
  padding: 10px;
  margin-top: 10px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  transition: 0.3s;
  box-shadow: 0 5px 20px rgba(0,123,255,0.4);
  
}

.btn:hover {
  background: #004aad;
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0,123,255,0.6);

}

/* ================= PROPERTY PAGE ================= */
.property-details {
  padding: 30px;
  max-width: 800px;
  margin: auto;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(12px);

  border-radius: 20px;

  box-shadow: 0 20px 60px rgba(0,0,0,0.15);

}
.property-details h2 {
  font-size: 28px;
  color: #007bff;
  margin-top: 20px;
}
.property-details p {
  font-size: 15px;
  line-height: 1.7;
  color: #444;
  margin: 5px 0;
}

.property-details h3 {
  margin-top: 15px;
  color: #111;
}
.property-details ul {
  margin-top: 10px;
  padding-left: 20px;
}

.property-details li {
  margin-bottom: 6px;
  color: #555;
}

.main-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 15px;
  margin-bottom: 10px;
  transition: transform 0.4s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);

}
.main-img:hover {
  transform: scale(1.05);
}

.thumbnail-container {
  display: flex;
  gap: 10px;
  margin-top: 15px;
  justify-content: center;
  flex-wrap: wrap;

}

.thumbnail-container img {
  width: 80px;
  height: 60px;
  object-fit: cover;
  cursor: pointer;
  border-radius: 6px;
  transition: 0.3s;
  border: 2px solid transparent;
}

.thumbnail-container img:hover {
  border: 2px solid blue;
  transform: scale(1.08);
}


.thumbnail-container img.active-thumb {
  border: 2px solid red;
  transform: scale(1.1);
}

/* ================= BUTTONS ================= */
.call, .whatsapp-btn {
  display: inline-block;
  margin: 10px;
  padding: 10px 20px;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);

}
.whatsapp-btn {
  background: linear-gradient(135deg, #25D366, #1ebe5d);
}
.call { background: green; }
.whatsapp-btn {
background: linear-gradient(135deg, #28a745, #218838);
}

.call:hover, .whatsapp-btn:hover {
  transform: scale(1.08);
  transition: 0.3s;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* ================= MODAL ================= */
.modal {
  display: none;
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  justify-content: center;
  align-items: center;
}

.modal img {
  max-width: 90%;
  max-height: 90%;
}

/* ================= STATS ================= */
.stats {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 60px;
}

.stat-box {
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  min-width: 120px;
  color: white;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
  transition: 0.3s;
}

.stat-box:nth-child(1) {
  background: linear-gradient(135deg, #4facfe, #00f2fe);
}
.stat-box:nth-child(2) {
  background: linear-gradient(135deg, #43e97b, #38f9d7);
}
.stat-box:nth-child(3) {
  background: linear-gradient(135deg, #fa709a, #fee140);
}

.stat-box:hover {
  transform: translateY(-8px) scale(1.05);
}

/* ================= FEATURES ================= */
.features {
  text-align: center;
  margin-top: 60px;
  background: linear-gradient(to right, #f8fbff, #eef5ff);
  padding: 40px;
  border-radius: 15px;
}

.feature-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 20px;
  margin-top: 20px;
}

.feature-box p {
  background: white;
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.feature-box p:hover {
  transform: scale(1.05);
  background: #004aad;
  color: white;
}

/* ================= PROCESS ================= */
.process {
  margin-top: 60px;
  text-align: center;
  background: linear-gradient(to right, #eef5ff, #ffffff);
  padding: 40px;
  border-radius: 15px;
}

.process-box {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.process-box p {
  background: white;
  padding: 20px;
  border-radius: 10px;
  min-width: 150px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.process-box p:hover {
  background: #007bff;
  color: white;
}

/* ================= TESTIMONIAL ================= */
/* REVIEW UPGRADE */
.reviews-container {
  margin-top: 20px;
}

.review-card {
  background: rgba(255, 255, 255, 0.2);
  padding: 35px 25px;
  border-radius: 20px;
  max-width: 500px;
  margin: 0 auto;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  font-style: italic;
  transform: scale(0.9);
  opacity: 0.6;
  transition: 0.5s;
  min-width: 100%;
  text-align: center;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

/* ACTIVE SLIDE */
.review-card.active {
  transform: scale(1);
  opacity: 1;
}

/* TEXT */
.review-card p {
  font-size: 16px;
  font-style: italic;
  margin-bottom: 15px;
  color: #333;
}

.review-card:hover {
  transform: scale(1.03);
}

.review-card h4 {
  margin-top: 10px;
  font-size: 14px;
  color: #111;
  font-weight: 600;
}

/* ================= BUTTON FIX ================= */

/* FIX: button नीचे center */
.review-btn-box {
  margin-top: 30px;
  text-align: center;
  position: static; /* IMPORTANT */
}

/* FIX: write review अलग class */
.write-review-btn {
  display: inline-block;
  padding: 12px 25px;
  background: #007bff;
  color: white;
  border-radius: 25px;
  text-decoration: none;
  transition: 0.3s;
}

.write-review-btn:hover {
  background: #004aad;
}

/* ================= SLIDER ================= */

.review-slider {
  overflow: hidden;
  max-width: 600px;
  margin: 40px auto;
  position: relative;
}

.reviews-track {
  display: flex;
  transition: transform 0.6s ease;
}

/* ================= ARROWS FIX ================= */

.review-btn.prev,
.review-btn.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 10px 14px;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
}

/* SIDE POSITION */
.review-btn.prev { left: -60px; }
.review-btn.next { right: -60px; }

.review-btn:hover {
  background: #004aad;
}

/* ================= STARS ================= */

.review-card .stars {
  color: gold;
  font-size: 18px;
  margin-bottom: 10px;
}

/* ================= DOTS ================= */

.review-dots {
  margin-top: 20px;
  text-align: center;
}

.review-dots span {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: #ccc;
  margin: 5px;
  border-radius: 50%;
  cursor: pointer;
}

.review-dots .active {
  background: #007bff;
}

/* ================= SECTION ================= */

.testimonials {
  text-align: center;
  padding: 80px 20px;
  position: relative;
}

.testimonials h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
}

.testimonials h2::after {
  content: "";
  width: 60px;
  height: 3px;
  background: #007bff;
  display: block;
  margin: 10px auto;
  border-radius: 10px;
}
/*.testimonials {
  margin-top: 60px;
  text-align: center;
  background: linear-gradient(to right, #fdfbfb, #ebedee);
  padding: 40px;
  border-radius: 15px;
}

.testimonials p {
  background: white;
  padding: 20px;
  border-radius: 10px;
  max-width: 500px;
  margin: auto;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  font-style: italic;
}*/

/* ================= CONTACT ================= */
.contact {
  margin-top: 60px;
  text-align: center;
  background: linear-gradient(to right, #004aad, #007bff);
  color: white;
  padding: 40px;
  border-radius: 15px;
}

/* ================= FOOTER ================= */
.footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 20px;
  margin-top: 20px;
}

/* ================= ANIMATION ================= */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== FINAL DIVIDER FIX ===== */

/* sirf important sections pe line dikhe */
.features::after,
.projects::after,
.process::after,
.testimonials::after,
.contact::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(to right, #007bff, #00c6ff);
  margin: 20px auto;
  border-radius: 10px;
}

/* baaki sab sections se line hata do */
.logo {
  height: 48px;
  margin-right: 10px;
  width: auto;
  display: flex;
  align-items: center;
}
.company-name {
  font-size: 18px;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.5px;
  margin-right: auto;
  display: flex;
  align-items: center;
  margin-left: 8px;

}
section::after {
  content: none;
}
.navbar * {
  pointer-events: auto;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 40px;
  color: white;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  backdrop-filter: blur(10px);/*extra*/
  background: rgba(34, 122, 238, 0.85);
  margin: 0;
  width: 100%;
  transition: 0.3s;
  pointer-events: auto;
}

/* SCROLL EFFECT */
.navbar.scrolled {
  background: rgba(0, 74, 173, 0.95);
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}
.navbar ul {
  display: flex;
  list-style: none;
  gap: 25px;
  align-items: center;
}
.navbar li {
  display: inline-block;
}

.navbar a {
  text-decoration: none;
  font-weight: 500;
  color: #00c6ff;
  transition: 0.3s;
}
.navbar a::after {
  content: "";
  position: absolute;
  width: 0%;
  height: 2px;
  left: 0;
  bottom: -5px;
  background: #00c6ff;
  transition: 0.3s;
}
.navbar a:hover::after {
  width: 100%;
}
.navbar h2 {
  margin-left: 8px;
}
.navbar ul li a {
  color: #00cfff;
  text-decoration: none;
  position: relative;
  z-index: 5;
}
.navbar ul li {
  z-index: 5;
}
/* ===== INDEX NAVBAR RIGHT ALIGN FIX ===== */
.index-navbar {
  display: flex;
  align-items: center;
}

/* logo left */
/*.index-navbar .logo {
  margin-right: auto;
}*/

/* nav links + button right */
.index-navbar ul {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 25px;
}

/* login button spacing */
.index-navbar .login-btn-premium {
  margin-left: 15px;
}
.about-company {
  text-align: center;
  padding: 50px;
  background: linear-gradient(to right, #f0f4ff, #ffffff);
  border-radius: 15px;
}
.vision-mission {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-top: 40px;
}

.vision-mission .box {
  background: white;
  padding: 25px;
  border-radius: 10px;
  width: 250px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}
/* ================= FOOTER PRO ================= */
.footer-pro {
  background: linear-gradient(to right, #0f2027, #203a43, #2c5364);
  color: #ddd;
  padding: 50px 20px 20px;
  margin-top: 60px;
}

.footer-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: auto;
}

.footer-box h3 {
  color: white;
  margin-bottom: 15px;
  border-bottom: 2px solid #00c6ff;
  display: inline-block;
  padding-bottom: 5px;
}

.footer-box p {
  margin: 8px 0;
  font-size: 14px;
  cursor: pointer;
  transition: 0.3s;
}

.footer-box p:hover {
  color: #00c6ff;
  transform: translateX(5px);
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #444;
  margin-top: 30px;
  padding-top: 15px;
  font-size: 13px;
}
.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #25D366;
  color: white;
  font-size: 26px;
  padding: 12px 14px;
  border-radius: 50%;
  z-index: 9999;
  text-decoration: none;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% {transform: scale(1);}
  50% {transform: scale(1.15);}
  100% {transform: scale(1);}
}
.vm-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  max-width: 1100px;
  margin: auto;
}

.vm-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  transition: 0.3s;
}

.vm-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}

.vm-card h3 {
  padding: 15px 20px 0;
}

.vm-card p {
  padding: 10px 20px 20px;
  font-size: 14px;
  color: #444;
}

.vm-card:hover {
  transform: translateY(-10px);
}


/* FORM SECTION */
@media (max-width: 768px) {
  .contact-form {
    grid-template-columns: 1fr;
  }
}
.contact-form-section {
  text-align: center;
  margin: 50px auto;
  max-width: 600px;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.contact-form button {
  padding: 12px;
  background: #007bff;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.contact-form button:hover {
  background: #004aad;
}
.map-section {
  margin: 50px 0;
  border-radius: 10px;
  overflow: hidden;
}

/* ================= CONTACT INFO ================= */
@media (max-width: 768px) {
  .contact-info {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.contact-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 60px auto;
  align-items: start;
}

.info-box {
  background: transparent;
  padding: 10px;
  text-align: left;
  box-shadow: none;
  border-radius: 0;
  width: 100%;
  text-align: left;
}

.info-box h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
  color: #222;
  text-transform: uppercase;
}

.info-box p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

/* ================= FORM SECTION ================= */
.contact-form-section {
  max-width: 1100px;
  margin: 60px auto;
  text-align: left;
}

.contact-form-section h2 {
  margin-bottom: 20px;
}

/* GRID FORM (MAX STYLE) */
.contact-form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.contact-form input,
.contact-form textarea {
  padding: 12px;
  border: 1px solid #ddd;
  background: #f5f5f5;
  font-size: 14px;
  outline: none;
  border-radius: 3px;
}

/* textarea full width */
.contact-form textarea {
  grid-column: span 3;
  height: 120px;
}

/* button styling */
.contact-form button {
  grid-column: span 3;
  width: 200px;
  padding: 12px;
  background: #3bb2d0;
  color: white;
  border: none;
  cursor: pointer;
  border-radius: 3px;
  transition: 0.3s;
}

.contact-form button:hover {
  background: #2a9bb7;
}

/* ================= MAP ================= */
.map-section {
  max-width: 1100px;
  margin: 60px auto;
  border-radius: 10px;
  overflow: hidden;
}

.map-section iframe {
  width: 100%;
  height: 350px;
  border: none;
}
.section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  max-width: 1100px;
  margin: 40px auto 20px;
}

.section-title span {
  background: #ff6600;
  color: white;
  padding: 10px;
}

.section-title h2 {
  border-bottom: 2px solid #eee;
  width: 100%;
  padding-bottom: 5px;
}
.page-banner {
  max-width: 100%;
  width: 100%;
  height: 240px;
  background: url('images/banner.jpg') no-repeat center center;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 0;
  margin-top: -80px;
  padding-top: 80px;
  margin: 0;
  border-radius: 0
}

/* overlay */
.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0,0,0,0.7),
    rgba(0,0,0,0.4),
    rgba(0,0,0,0.2)
  );
}

/* text */
.banner-content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
}
/* ----------gallery---------*/
.achievement-section{
  text-align: center;
}
.achievement-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 20px;
}

.achievement-card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 5px 20px rgba(0,0,0,0.2);
  min-width: 100%;
  padding: 10px;
  min-width: 100%;
  flex-shrink: 0;
  
}

.achievement-card img {
  width: 100%;
  height: auto;
  object-fit: contain;
  cursor: pointer;
  border-radius: 10px;
}
.achievement-card input {
  width: 90%;
  margin: 10px;
  padding: 5px;
  border-radius: 6px;
  border: 1px solid #ccc;
}

.achievement-card button {
  background: red;
  color: white;
  border: none;
  padding: 5px 10px;
  margin-bottom: 10px;
  cursor: pointer;
}

.achievement-slider {
  overflow-x: auto;
  overflow: hidden;
  scroll-behavior: smooth;
  max-width: 600px;
  margin: auto;
}
.achievement-track {
  display: flex;
  gap: 20px;
}


/* LIGHTBOX */
.lightbox {
  display: none;
  position: fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  background: rgba(0,0,0,0.8);
  justify-content:center;
  align-items:center;
}

.lightbox img {
  max-width:80%;
  border-radius:10px;
}

.lightbox span {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 30px;
  cursor: pointer;
}

/*====================logout or home button=======================*/
/* BUTTON CONTAINER */
.top-buttons {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

/* COMMON BUTTON STYLE */
.btn {
  padding: 10px 20px;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
  color: white;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* HOME BUTTON */
.home-btn {
  background: linear-gradient(135deg, #00c6ff, #0072ff);
}

.home-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* LOGOUT BUTTON */
.logout-btn {
  background: linear-gradient(135deg, #ff4d4d, #cc0000);
}

.logout-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}
/*===================login button==================================*/
/* PREMIUM LOGIN BUTTON */
.login-btn-premium {
  padding: 10px 18px;
  margin-left: 15px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  color: white;
  z-index: 1;

  background: linear-gradient(135deg, #00c6ff, #0072ff);

  box-shadow: 0 5px 20px rgba(0, 114, 255, 0.4);

  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
}

/* HOVER EFFECT */
.login-btn-premium:hover {
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 10px 30px rgba(0, 114, 255, 0.6);
}

/* GLOW ANIMATION */
.login-btn-premium::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  /*background: linear-gradient(120deg, transparent, rgba(255,255,255,0.5), transparent);*/
  transition: 0.5s;
}

.login-btn-premium:hover::before {
  left: 100%;
}
/* LEGAL SECTION */
  .legal-section {
    padding: 60px 20px;
    text-align: center;
  }

  .legal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px,1fr));
    gap: 20px;
    margin-top: 30px;
  }

  .doc-card {
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
    aspect-ratio: 3/4;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 1;

  }

  .doc-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
  }

  .doc-card:hover img {
    transform: scale(1.1);
  }

  .doc-card::after {
    content: "View Document";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: 0.3s;
  }

  .doc-card:hover::after {
    opacity: 1;
  }

  /* LIGHTBOX */
  .doc-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 999;
  }

  .doc-lightbox img {
    max-width: 90%;
    max-height: 90%;
  }

  .doc-lightbox span {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 35px;
    color: white;
    cursor: pointer;
  }
  .vision-img {
    position:absolute;
    justify-content: center;
  }
  /* DESKTOP ME HIDE */
  .menu-toggle {
    display: none;
  }

  /* ================= MOBILE SAFE CODE ================= */
@media (max-width: 768px) {

  /* NAVBAR FIX */
  .navbar {
    padding: 10px 15px;
  }

  .navbar ul {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background: rgba(0, 74, 173, 0.95);
    flex-direction: column;
    align-items: center;
    display: none;
    padding: 20px 0;
  }

  .navbar ul.active {
    display: flex;
  }

  .navbar ul li {
    margin: 10px 0;
  }

  /* MENU BUTTON */
  .menu-toggle {
    display: block;
    font-size: 22px;
    cursor: pointer;
    color: white;
  }

  

  /* PROPERTY CARDS FULL WIDTH */
  .property-list {
    grid-template-columns: 1fr;
    padding: 20px;
    justify-content: center;
    text-align: left;

  }

  /* VM GRID */
  .vm-grid {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  /* STATS STACK */
  .stats {
    flex-direction: column;
    align-items: center;
  }

  /* FEATURES */
  .feature-box {
    grid-template-columns: 1fr;
  }

  /* PROCESS */
  .process-box {
    flex-direction: column;
  }

  /* REVIEW BUTTON FIX */
  .review-btn.prev,
  .review-btn.next {
    display: none;
  }

  /* FOOTER */
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  /* PLOT GRID FIX (IMPORTANT) */
  .grid {
    grid-template-columns: repeat(2, 1fr);
  }

}


/*=========================================================navbar-dropdown-list-about-section==================================*/
/* ===== DROPDOWN FIX FINAL ===== */

.dropdown {
  position: relative;
}

/* dropdown box */
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;

  background: #fff;
  width: 180px;
  border-radius: 10px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);

  display: block !important;   /* 🔥 FORCE FIX */
  flex-direction: column !important; /* 🔥 STOP FLEX */

  opacity: 0;
  visibility: hidden;

  transform: translateY(10px);
  transition: 0.3s;

  padding: 10px 0;
  z-index: 999;
}

/* vertical list */
.dropdown-menu li {
  display: block;
  width: 100%;
}

/* links */
.dropdown-menu li a {
  display: block;
  padding: 10px 15px;
  color: #333;
  text-decoration: none;
}

/* show */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* hover effect */
.dropdown-menu li:hover {
  background: #f0f6ff;
}
@media (max-width: 768px) {

  /* ===== GENERAL SPACING (MISSING) ===== */
  section {
    padding: 25px 15px;
  }

  /* ===== FONT SIZE FIX (MISSING) ===== */
  h1 {
    font-size: 24px;
  }

  h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  color: #111;

  position: relative;

  }
  /* underline animation */
h2::after {
  content: "";
  width: 50px;
  height: 3px;
  background: #007bff;
  display: block;
  margin-top: 8px;
  border-radius: 10px;
}

  p {
  line-height: 1.7;
  color: #444;
  font-size: 15px;
  }

  /* ===== HERO TEXT FIX (MISSING) ===== */
  .hero-content h1 {
    font-size: 22px;
    /* glow effect */
  text-shadow: 0 5px 25px rgba(0,0,0,0.8);

  margin-bottom: 10px;

  }

  .hero-content p {
    font-size: 18px;
  font-weight: 400;
  color: #e0e0e0;

  text-shadow: 0 3px 15px rgba(0,0,0,0.7);

  }

  /* ===== NAVBAR TEXT SIZE (MISSING) ===== */
  /*.navbar h2 {
    font-size: 16px;
  }*/

  /* ===== LOGO SIZE FIX (MISSING) ===== */
  

  /* ===== PAGE BANNER TEXT (MISSING) ===== */
  .banner-content h1 {
    font-size: 22px;
  }

  .banner-content p {
    font-size: 13px;
  }

  /* ===== WHATSAPP BUTTON SIZE (MISSING) ===== */
  .whatsapp-float {
    bottom: 15px;
    right: 15px;
    font-size: 22px;
    padding: 10px;
  }

}
/* ===== VIDEO SECTION ===== */

.video-section {
  margin-top: 30px;
  text-align: center;
}

/* heading */
.video-section h3 {
  margin-bottom: 15px;
  color: #111;
}

/* video box */
.video-section video {
  width: 100%;
  max-width: 700px;
  border-radius: 15px;

  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
}

/* note */
.video-note {
  margin-top: 10px;
  font-size: 14px;
  color: #666;
}
/* ===== MOBILE VIDEO FIX ===== */
@media (max-width: 768px) {

  .video-section {
    margin-top: 20px;
    padding: 0 10px;
  }

  .video-section video {
    width: 100%;
    height: auto;
    border-radius: 12px;
  }

  .video-note {
    font-size: 13px;
    text-align: center;
  }

}
@media (max-width: 768px) {

  .property-details {
    padding: 20px 12px;
    margin: 20px 10px;
  }

  .main-img {
    height: 220px;
  }

  .thumbnail-container {
    justify-content: center;
    flex-wrap: wrap;
  }

  .thumbnail-container img {
    width: 60px;
    height: 45px;
  }

}

@media (max-width: 768px) {

  .call, .whatsapp-btn {
    display: block;
    width: 100%;
    text-align: center;
    margin: 8px 0;
  }

}
.download-btn {
  display: inline-block;
  margin-top: 10px;

  background: linear-gradient(135deg, #007bff, #00c6ff);
  color: #fff;

  padding: 10px 18px;
  border-radius: 25px;

  font-size: 14px;
  text-decoration: none;

  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: 0.3s;
}

.download-btn:hover {
  transform: translateY(-2px);
}
.footer-box a {
  color: #ccc;
  text-decoration: none;
  transition: 0.3s;
}

.footer-box a:hover {
  color: #00c6ff;
}