* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
  width: 100%;
}
html {
  scroll-behavior: smooth;
}

body {
  margin: 0;              /* 🔥 THIS LINE ADD KARO */
  background: #F9F7F2;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #1B3022;   /* green bar */
  z-index: 10000;
}
/* .hero {
  height: 100vh;
  position: relative;

  background:
    linear-gradient(
      rgba(27, 48, 34, 0.55),
      rgba(27, 48, 34, 0.55)
    ),
    url("hero.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
} */
.hero {
  height: 100vh;
  position: relative;

  display: flex;
  align-items: center;        /* vertical center */
  justify-content: flex-start;

  padding-left: 80px;        /* left se thoda space */

  background:
    linear-gradient(
      rgba(27, 48, 34, 0.55),
      rgba(27, 48, 34, 0.55)
    ),
    url("./images/hero.jpg");

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero {
  position: relative;   /* already hai, but confirm */
}

.hero-logo {
  position: absolute;
  top: 18px;        /* bilkul upar */
  left: 24px;       /* left corner */

  width: 90px;      /* ðŸ”¹ SMALL SIZE */
  height: auto;

  z-index: 50;      /* sabke upar rahe */
}

.hero-content {
  max-width: 520px;
  color: #F9F7F2;

  display: flex;
  flex-direction: column;
  justify-content: center;

  z-index: 5;
}
.hero-content h1 {
  font-size: 56px;
  font-family: 'Playfair Display', serif;
  margin-bottom: 12px;
}

.hero-content p {
  font-size: 20px;
  margin-bottom: 24px;
}

.nav-container {
  background: #1B3022;
  padding: 10px 20px;
  border-radius: 50px;
}

.nav-menu {
  display: flex;
  gap: 15px;
  list-style: none;
}

.nav-menu a {
  color: #F9F7F2;
  padding: 8px 16px;
  border-radius: 30px;
  text-decoration: none;
}

.nav-menu a.active {
  background: #C5A059;
  color: #1B3022;
}
.section {
  padding: 100px 20px;
}

.center {
  text-align: center;
  margin-bottom: 40px;
}

.two-col {
  max-width: 1200px;
  margin: auto;
  display: grid;
  gap: 40px;
}

@media (min-width: 768px) {
  .two-col {
    grid-template-columns: 1fr 1fr;
  }
}

.grid-4, .grid-6 {
  display: grid;
  gap: 20px;
  max-width: 1200px;
  margin: auto;
}

.grid-4 {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.grid-6 {
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}

.card {
  padding: 30px;
  border: 1px solid #ddd;
  text-align: center;
}

.gallery-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.gallery-grid img {
  width: 100%;
  transition: transform 0.4s;
}

.gallery-grid img:hover {
  transform: scale(1.05);
}

.contact-grid {
  max-width: 1000px;
  margin: auto;
  display: grid;
  gap: 40px;
}

.fade {
  opacity: 0;
  transform: translateY(40px);
  transition: 0.8s;
}

.fade.show {
  opacity: 1;
  transform: translateY(0);
}

#scrollTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: none;
  background: #C5A059;
  color: #1B3022;
  padding: 12px;
  border-radius: 50%;
}
button {
  background-color: #C5A059;   /* Gold */
  color: #1B3022;              /* Dark green text */
  padding: 8px 20px;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
}

/* Hover effect */
button:hover {
  background-color: #b08f4c;
}
.query-box {
  position: absolute;
  top: 50%;
  right: 60px;
  transform: translateY(-50%);

  width: 320px;
  padding: 25px;
  background-color: #F9F7F2;
  border: 1px solid #C5A059;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  z-index: 10;
}
@media (max-width: 768px) {
  .query-box {
    position: static;
    transform: none;
    width: 90%;
    margin: 30px auto;
  }
}

.query-title {
  text-align: center;
  margin-bottom: 20px;
  padding: 10px 15px;

  background-color: #C5A059;   /* Gold highlight */
  color: #1B3022;              /* Dark green text */

  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;

  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}


.query-box input,
.query-box textarea {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 14px;
}
.section {
  padding: 100px 20px;
  text-align: center;   /* ensures headings center */
}

.query-box input:focus,
.query-box textarea:focus {
  outline: none;
  border-color: #C5A059;
}

.contact-section {
  position: relative;   /* IMPORTANT */
  padding: 100px 20px;
  background-color: #F9F7F2;
}

/* ===== FORCE HIGHLIGHT FOR ALL SECTION HEADINGS ===== */
.section-heading {
  display: inline-block !important;
  margin: 0 auto 40px auto !important;
  padding: 12px 24px !important;

  background-color: #C5A059 !important; /* GOLD */
  color: #1B3022 !important;

  border-radius: 10px !important;
  font-family: 'Playfair Display', serif !important;
  font-size: 30px !important;
  font-weight: 600 !important;

  box-shadow: 0 6px 18px rgba(0,0,0,0.2) !important;
  text-align: center !important;
}
/* ===== POPUP OVERLAY ===== */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

/* ===== POPUP BOX ===== */
.popup-box {
  width: 360px;
  background: #F9F7F2;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
  position: relative;
}

/* CLOSE BUTTON */
.close-btn {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 28px;
  cursor: pointer;
  color: #1B3022;
}

/* MOBILE */
@media (max-width: 480px) {
  .popup-box {
    width: 90%;
  }
}
/* ===== POPUP BOX (PROFESSIONAL) ===== */


/* Smooth entry */
@keyframes popupFade {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Close button */
.close-btn {
  position: absolute;
  top: 14px;
  right: 18px;
  font-size: 26px;
  cursor: pointer;
  color: #1B3022;
}

/* ===== TITLE ===== */
.query-title {
  text-align: center;
  padding: 12px;
  margin-bottom: 24px;

  background: linear-gradient(135deg, #C5A059, #e3c37a);
  color: #1B3022;

  border-radius: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 600;

  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

/* ===== FORM ===== */
.query-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.query-box form {
  display: flex;
  flex-direction: column;
  align-items: center;   /* ðŸ”¥ button center */
}

.query-box form button {
  margin-top: 10px;
}
/* .hero-logo {
  width: 150px;          /* logo ka size */
  height: auto;          /* aspect ratio safe */
  margin-bottom: 18px;   /* logo aur heading ke beech gap */
} */
.hero-logo {
  position: absolute;
  top: 10px;        /* top se distance */
  left: 20px;       /* left se distance */

  width: 50px;     /* logo size */
  height: auto;

  z-index: 20;      /* hero image ke upar rahe */
}
@media (max-width: 768px) {
  .hero-logo {
    top: 02px;
    left: 5px;
    width: 50px;
  }
}

@media (max-width: 768px) {
  .hero-logo {
    width: 50px;
    margin-bottom: 14px;
  }
}


/* Inputs */
.query-form input,
.query-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
  background: #ffffff;
}

/* Focus */
.query-form input:focus,
.query-form textarea:focus {
  outline: none;
  border-color: #C5A059;
  box-shadow: 0 0 0 2px rgba(197,160,89,0.25);
}

/* Textarea */
.query-form textarea {
  resize: none;
  min-height: 90px;
}

/* Submit Button */
.query-form button {
  margin-top: 10px;
  padding: 12px;
  border-radius: 30px;
  background: #1B3022;
  color: #F9F7F2;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s ease;
  align-items: center;
}

.query-form button:hover {
  background: #C5A059;
  color: #1B3022;
}

/* Mobile */
@media (max-width: 480px) {
  .popup-box {
    width: 92%;
    padding: 24px;
  }
}
/* ===== POPUP OVERLAY ===== */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;                /* ðŸ‘ˆ VERY IMPORTANT */
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}
.popup-box {
  width: 420px;
  background: #F9F7F2;
  padding: 30px 28px 35px;
  border-radius: 18px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.35);
  position: relative;
}
/* ===== WHATSAPP FLOAT BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 56px;
  height: 56px;

  background-color: #25D366;
  border-radius: 50%;

  display: flex;
  justify-content: center;
  align-items: center;

  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  z-index: 9999;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float img {
  width: 28px;
  height: 28px;
}

/* Hover effect */
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 28px rgba(0,0,0,0.4);
}
/* ===== FIX SUBMIT BUTTON VISIBILITY ===== */
.query-form button {
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Ensure popup content scrolls if needed */
.popup-box {
  max-height: 90vh;
  overflow-y: auto;
}
/* ===== HERO QUERY BOX SUBMIT FIX ===== */
.query-box form button {
  width: 100%;
  margin-top: 12px;
  padding: 12px;
  border-radius: 6px;
  font-size: 16px;
  display: block;
}
/* ===== FIX SUBMIT TEXT VISIBILITY ===== */
.query-box form button {
  color: #1B3022 !important;   /* dark forest text */
  font-weight: 600;
}

.query-box form button:hover {
  color: #1B3022;
}
/* ===== HERO QUERY SUBMIT FINAL FIX ===== */
.query-box form button {
  background-color: #C5A059 !important;  /* GOLD always */
  color: #1B3022 !important;             /* DARK TEXT */
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.query-box form button:hover {
  background-color: #b08f4c !important;  /* darker gold hover */
  color: #1B3022 !important;
}
/* ===============================
   NAVBAR CALL NUMBER
================================ */

.nav-menu {
  display: flex;
  align-items: center;   /* number vertically center rahe */
  gap: 15px;
}

.nav-call a {
  background-color: #C5A059;   /* Gold */
  color: #1B3022;              /* Forest text */

  padding: 8px 18px;
  border-radius: 30px;

  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;

  transition: background-color 0.3s ease, transform 0.2s ease;
}

.nav-call a:hover {
  background-color: #b08f4c;   /* Darker gold */
  transform: translateY(-1px);
}
/* ===============================
   PRICING SECTION â€“ FULL COVER
================================ */

#price .price-box {
  max-width: 1100px;
  margin: 0 auto;

  background: #ffffff;
  padding: 40px 50px;

  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

/* Table full width */
#price table {
  width: 100%;
  border-collapse: collapse;
}

/* Headings */
#price th {
  text-align: left;
  padding: 14px 10px;
  font-size: 18px;
  color: #1B3022;
  border-bottom: 2px solid #C5A059;
}

/* Data rows */
#price td {
  padding: 16px 10px;
  font-size: 16px;
  color: #333;
  border-bottom: 1px solid #e5e5e5;
}

/* Last row border remove */
#price tr:last-child td {
  border-bottom: none;
}

/* Mobile */
@media (max-width: 768px) {
  #price .price-box {
    padding: 30px 20px;
  }
}
/* ===== PRICING TABLE CENTER ALIGN FIX ===== */

/* Header center */
#price th {
  text-align: center;
}

/* Table data center */
#price td {
  text-align: center;
}
/* ===== PRICING REQUEST CLICKABLE ===== */
.price-request {
  color: #C5A059;
  font-weight: 600;
  cursor: pointer;
}

.price-request:hover {
  text-decoration: underline;
}
/* ===== HERO BUTTONS GAP FIX ===== */
.hero-buttons {
  display: flex;
  gap: 14px;   /* yahin se gap control hoga */
}
@media (max-width: 768px) {
  .hero-buttons {
    gap: 10px;
  }
}
/* ===== HERO BUTTON OUTLINE MATCH ===== */
.hero-buttons button {
  background: transparent;
  border: 2px solid #ffffff;   /* white border */
  color: #ffffff;
}

/* Hover effect */
.hero-buttons button:hover {
  background: rgba(255,255,255,0.15);
}
/* ===== ONLY BROCHURE BUTTON BORDER FIX ===== */
.hero-buttons .outline {
  border: 2px solid #ffffff;   /* same as Schedule a Visit */
  box-shadow: none;            /* extra outline remove */
  outline: none;               /* browser outline remove */
}
/* ===== GALLERY UNIFORM SIZE FIX ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* ek hi line, 4 images */
  gap: 20px;
}

.gallery-grid img {
  width: 100%;
  height: 240px;          /* ðŸ”¥ sabki same height */
  object-fit: cover;     /* image crop hogi, stretch nahi */
  border-radius: 6px;
}
/* ===== LOCATION LIST PERFECT ALIGNMENT (NO ZIG-ZAG) ===== */

.location-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.location-info li {
  display: flex;
  align-items: flex-start;
  gap: 12px;                 /* icon aur text ke beech gap */

  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.4;
}

/* Icon column fixed width */
.location-info li span.icon {
  width: 26px;
  flex-shrink: 0;
  text-align: center;
}

/* Text proper wrap */
.location-info li span.text {
  flex: 1;
}
/* ===== LOCATION FINAL PERFECT ALIGN ===== */

#location .two-col {
  align-items: flex-start;
}

/* Map wrapper */
.map-wrap iframe {
  width: 100%;
  border: none;
  border-radius: 10px;
}

/* Location list alignment */
.location-info ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.location-info li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.4;
}

.location-info .icon {
  width: 26px;
  flex-shrink: 0;
  text-align: center;
}

.location-info .text {
  flex: 1;
}
/* ===== LOCATION TEXT LEFT-START FIX ===== */

.location-info {
  align-items: flex-start;   /* parent se center hataya */
}

.location-info ul {
  width: 100%;
}

.location-info li {
  display: flex;
  align-items: flex-start;
  gap: 12px;

  text-align: left;          /* ðŸ”¥ text left start */
}

.location-info .icon {
  width: 26px;
  flex-shrink: 0;
  text-align: center;
}

.location-info .text {
  text-align: left;          /* ðŸ”¥ force left */
  white-space: normal;       /* wrap naturally */
}
/* ================= FOOTER ================= */
.site-footer {
  background: #111111;
  color: #ffffff;
  padding: 40px 20px;
  text-align: center;
}

.site-footer p {
  max-width: 1100px;
  margin: 0 auto 15px;
  font-size: 13px;
  line-height: 1.7;
  color: #e0e0e0;
}

.site-footer strong {
  color: #C5A059; /* Gold highlight */
}

.footer-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 14px;
  color: #ffffff;
  text-decoration: underline;
}

.footer-link:hover {
  color: #C5A059;
}
/* ================= CONTACT SECTION ================= */

.contact-wrapper {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.contact-info h3 {
  font-size: 28px;
  margin-bottom: 15px;
  color: #1B3022;
}

.contact-info p {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 16px;
  margin-bottom: 10px;
  color: #333;
}

.contact-info span {
  min-width: 22px;     /* ðŸ”¥ SAME START LINE */
  text-align: center;
}


.contact-text {
  margin-top: 15px;
  color: #555;
  line-height: 1.6;
}

/* Right box */
.contact-form-box {
  background: #F9F7F2;
  padding: 26px;
  border-radius: 14px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.18);

  max-width: 420px;   /* ðŸ”¥ QUERY BOX CONTROL */
  margin-left: auto; /* right side chipka rahe */
}

/* Mobile */
@media (max-width: 768px) {
  .contact-wrapper {
    grid-template-columns: 1fr;
  }
}
/* ================= CONTACT FIX ================= */

/* Left info text + icon alignment */
.contact-info p {
  display: flex;
  align-items: center;      /* ðŸ”¥ icon side me center */
  gap: 10px;
  font-size: 16px;
  margin-bottom: 10px;
  color: #333;
}

/* Fix icon width so all text starts from same line */
.contact-info p span {
  min-width: 24px;          /* ðŸ”¥ same starting line */
  text-align: left;
  font-size: 18px;
}

/* Query box size control */
.contact-form-box {
  max-width: 420px;         /* ðŸ”¥ zyada badi nahi hogi */
  margin-left: auto;        /* right side aligned */
}
/* ======================================
   CONTACT PAGE â€“ QUERY BOX FINAL FIX
====================================== */

/* Box width & padding */
#contact .contact-form-box {
  width: 420px;
  padding: 22px 26px;
}

/* Form spacing control */
#contact .query-form {
  gap: 12px;                 /* pehle zyada gap tha */
}

/* Inputs compact */
#contact .query-form input {
  padding: 10px 14px;
  height: 44px;
  font-size: 14px;
}

/* Textarea compact */
#contact .query-form textarea {
  min-height: 70px;
  padding: 10px 14px;
  font-size: 14px;
}

/* Title tight */
#contact .query-title {
  font-size: 20px;
  padding: 10px;
  margin-bottom: 14px;
}

/* Button slim */
#contact .query-form button {
  padding: 12px;
  font-size: 15px;
  margin-top: 6px;
}
/* ===== POPUP CLOSE BUTTON (MINIMAL & CLEAN) ===== */
.popup-box .close-btn {
  position: absolute;
  top: 14px;
  right: 18px;

  font-size: 22px;
  font-weight: 400;
  line-height: 1;

  color: #1B3022;
  background: transparent;
  border: none;

  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.popup-box .close-btn:hover {
  opacity: 1;
  transform: scale(1.1);
}
/* ===============================
   PROJECT HIGHLIGHTS â€“ PERFECT ALIGN
================================ */

.highlights-list {
  max-width: 1100px;
  margin: 40px auto 0;
}

.highlight-item {
  display: grid;
  grid-template-columns: 32px 160px 20px 1fr; /* ðŸ”¥ single line */
  column-gap: 12px;
  align-items: flex-start;
  margin-bottom: 22px;
}

/* ICON */
.highlight-item .icon {
  font-size: 18px;
  line-height: 1.6;
}

/* HEADING (Location, Configuration etc.) */
.highlight-item .label {
  font-weight: 600;
  color: #1B3022;
  line-height: 1.6;
  white-space: nowrap;   /* ðŸ”¥ VERY IMPORTANT */
}

/* COLON */
.highlight-item .colon {
  font-weight: 600;
  line-height: 1.6;
}

/* TEXT AFTER COLON */
.highlight-item .value {
  color: #333;
  line-height: 1.6;
}
/* ===== PROJECT HIGHLIGHTS TEXT ALIGN FIX ===== */

#highlights .highlight-item {
  text-align: left;   /* ðŸ”¥ section ka center override */
}

#highlights .highlight-item .value {
  text-align: left;   /* ðŸ”¥ sab lines same point se start */
}
/* ================= AMENITIES ================= */

.amenities-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* Card */
.amenity-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  text-align: center;
}

/* Image */
.amenity-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

/* Text below image */
.amenity-card span {
  display: block;
  padding: 14px 10px;
  background: #1B3022;        /* Forest */
  color: #F9F7F2;             /* Cream */
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* Hover */
.amenity-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

/* Mobile */
@media (max-width: 992px) {
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .amenities-grid {
    grid-template-columns: 1fr;
  }

  .amenity-card img {
    height: 180px;
  }
}
.thankyou-box img {
  width: 80px;
  margin-bottom: 20px;
}
/* =========================
   MOBILE FINAL FIX (NO REMOVAL)
========================= */
@media (max-width: 768px) {

  /* NAVBAR CUT FIX */
  .navbar {
    top: 0;
  }

  /* LOGO SAFE */
  .hero-logo {
    position: relative;
    top: 0;
    left: 0;
    width: 46px;
  }

  /* MOBILE MENU FULL SCREEN */
  .nav-menu {
    position: fixed;
    top: 64px;
    left: 0;
    width: 100%;
    height: calc(100vh - 64px);

    background: #ffffff;
    flex-direction: column;
    padding: 30px 20px;
    gap: 18px;
    overflow-y: auto;
  }

  .nav-menu a {
    color: #1B3022;
    font-size: 18px;
    padding: 12px 0;
  }

  /* HERO FLEXIBLE */
  .hero {
    height: auto;
    padding: 120px 20px 40px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  /* QUERY BOX SCROLLABLE */
  .query-box {
    position: static;
    transform: none;
    width: 90%;
    margin: 30px auto;
  }

  .hero-buttons {
    justify-content: center;
  }
}

/* BOTTOM BAR SPACE */
body {
  padding-bottom: 60px;
}
/* =========================
   FORCE MOBILE FIX (FINAL)
========================= */
@media (max-width: 768px) {

  /* ===== NAVBAR FORCE RESET ===== */
  .navbar {
    position: fixed !important;
    top: 0 !important;
    left: 0;
    width: 100%;
    margin: 0 !important;
    border-radius: 0 !important;
  }

  /* ===== HERO RESET ===== */
  .hero {
    height: auto !important;
    padding: 120px 16px 30px !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  /* ===== QUERY BOX FORCE SHIFT ===== */
  .hero .query-box {
    position: relative !important;   /* ðŸ”¥ absolute TOD */
    right: auto !important;
    top: auto !important;
    transform: none !important;

    width: 92% !important;
    margin: 24px auto 0 !important;
  }

  /* ===== HERO CONTENT CENTER ===== */
  .hero-content {
    text-align: center;
    margin-bottom: 20px;
  }

}
/* =========================
   MOBILE OVERRIDE (FINAL)
========================= */
@media screen and (max-width: 768px) {

  /* NAVBAR FIX */
  .navbar {
    top: 0 !important;
    left: 0;
    width: 100%;
  }

  /* HERO FIX */
  .hero {
    height: auto !important;
    padding: 120px 16px 40px !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  /* QUERY BOX FIX */
  .hero .query-box {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    transform: none !important;

    width: 92% !important;
    margin: 24px auto 0 !important;
  }

  /* HERO CONTENT CENTER */
  .hero-content {
    text-align: center;
    margin-bottom: 20px;
  }

}
@media screen and (max-width: 768px) {

 header,
.navbar {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  margin: 0 !important;
  border-radius: 0 !important;
  }

}
@media screen and (max-width: 768px) {

  .hero .query-box,
  .query-box {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    transform: none !important;

    width: 92% !important;
    margin: 24px auto 0 !important;
  }

}
@media screen and (max-width: 768px) {

  .hero {
    height: auto !important;
    min-height: unset !important;
    padding: 120px 16px 40px !important;
    flex-direction: column !important;
    align-items: center !important;
  }

}

/* =====================================
   MOBILE FIX â€“ NAVBAR + HERO QUERY
===================================== */
@media (max-width: 768px) {

  /* ===== NAVBAR FIX ===== */
  .navbar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    justify-content: center !important;
    z-index: 9999;
  }

  .nav-container {
    width: 100%;
    border-radius: 0 !important;
    padding: 10px 16px;
  }

  /* ===== HERO FIX ===== */
  .hero {
    height: auto !important;
    padding: 120px 16px 40px !important;
    flex-direction: column !important;
    align-items: center !important;
  }

  .hero-content {
    text-align: center;
    margin-bottom: 20px;
  }

  /* ===== QUERY BOX FIX (MAIN ISSUE) ===== */
  #home .query-box {
    position: relative !important;   /* ðŸ”¥ absolute tod diya */
    top: auto !important;
    right: auto !important;
    transform: none !important;

    width: 92% !important;
    margin: 24px auto 0 !important;
  }

}
@media (max-width: 768px) {

  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
  }

  .hamburger span {
    width: 24px;
    height: 2px;
    background: #F9F7F2;
  }

  .nav-menu {
    position: fixed;
    top: 64px;
    left: 0;
    width: 100%;
    height: calc(100vh - 64px);
    background: #ffffff;

    flex-direction: column;
    padding: 30px 20px;
    gap: 18px;

    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 9998;
  }

  .nav-menu.active {
    transform: translateX(0);
  }

  .nav-menu a {
    color: #1B3022;
    font-size: 18px;
  }

  #home .query-box {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    transform: none !important;
    width: 92%;
    margin: 24px auto 0;
  }
}
/* ===============================
   MOBILE FIX: HAMBURGER STICKY
================================ */
@media (max-width: 768px) {

  /* Navbar always visible */
  .navbar {
    position: fixed !important;
    top: 0 !important;
    left: 0;
    width: 100%;
    z-index: 10000;
  }

  /* Nav container full width */
  .nav-container {
    width: 100%;
    padding: 12px 16px;
    border-radius: 0 !important;
  }

  /* Hamburger always on top */
  .hamburger {
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    z-index: 10001;
  }

  /* Push page content below navbar */
  body {
    padding-top: 70px;
  }
}
/* ===============================
   MOBILE NAVBAR â€“ CLEAN REDESIGN
================================ */
@media (max-width: 768px) {

  /* Navbar base */
  .navbar {
    position: fixed !important;
    top: 0 !important;
    left: 0;
    width: 100%;
    z-index: 10000;
    background: #1B3022; /* forest */
  }

  .nav-container {
    width: 100%;
    height: 56px;                 /* ðŸ”¥ proper height */
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 0 16px;
    border-radius: 0 !important;
  }

  /* Project title */
  .mobile-title {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 600;
    color: #F9F7F2;
    letter-spacing: 0.4px;
  }

  /* Hamburger alignment fix */
  .hamburger {
    position: relative;           /* ðŸ”¥ absolute hata diya */
    top: auto;
    right: auto;
    transform: none;
  }

  .hamburger span {
    background: #F9F7F2;
  }

  /* Page content push */
  body {
    padding-top: 56px;
  }

  /* Desktop safety */
  .mobile-title {
    display: block;
  }
}

/* Hide mobile title on desktop */
@media (min-width: 769px) {
  .mobile-title {
    display: none;
  }
}
/* ===============================
   REMOVE WHITE GAP UNDER NAVBAR
================================ */
@media (max-width: 768px) {

  /* Remove default margin */
  body {
    margin: 0;
  }

  /* Hero ko navbar ke niche chipkao */
  .hero {
    margin-top: 0 !important;
  }

  /* Force hero background to start immediately */
  #home {
    padding-top: 0 !important;
  }
}
@media (max-width: 768px) {
  .navbar {
    box-shadow: none !important;
  }
}
/* ================================
   TABLET + MOBILE FINAL FIX
================================ */
@media (max-width: 1024px) {

  .hero {
    height: auto !important;
    flex-direction: column !important;
    align-items: center !important;
    padding: 120px 20px 40px !important;
  }

  .query-box {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    transform: none !important;
    width: 90%;
    margin: 30px auto 0;
  }

  .nav-container {
    justify-content: space-between !important;
  }

}
/* ===========================
   TABLET NAVBAR FIX
=========================== */
@media (max-width: 1024px) {

  .navbar {
    position: relative !important;   /* fixed hata diya */
  }

  body {
    padding-top: 0 !important;       /* agar kahi diya ho */
  }

}
