@import url("https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap");
body {
  font-family: "Inter", sans-serif;
  background-color: #f7f3ed; /* हल्का क्रीम पृष्ठभूमि */
}
/* ब्रांड के रंग (हरी और भूरी टोन) */
.brand-green {
  background-color: #4a7531;
}
.brand-green-text {
  color: #4a7531;
}
.brand-brown {
  background-color: #7d4f3e;
}
.brand-light {
  background-color: #f3e9d8;
}
.yellow-500 {
  color: yellow;
}


/* Custom style for map section (to simulate image) */
.map-section {
  background-image: url("assets/map.png"); /* Using user's specified path */
  background-size: cover;
  background-position: center;
  min-height: 400px; /* Default: Mobile screens */
  position: relative;
}

/* Responsive Map Height for Tablet/Medium Screens */
@media (min-width: 768px) {
  .map-section {
    min-height: 600px;
  }
}

/* Responsive Map Height for Desktop/Large Screens */
@media (min-width: 1024px) {
  .map-section {
    min-height: 800px; /* Original height for desktop */
  }
}

/* 📱 MOBILE FIX — Form header ke peeche chipakne se rokta hai */
@media (max-width: 640px) {
    
    .hero-mobile-height {
    min-height: 900px !important;
    height: auto !important;
    padding-top: 10px !important; /* header ke peeche na chhupe */
  }
    
  #home .hero-wrapper {
    padding-top: 20px !important;   /* header height compensate */
  }
  .stats-box {
    margin-top: 8vh !important;   /* 20vh bahut zyada tha */
    gap: 16px !important;
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    justify-items: center;
  }

  .stats-box div {
    width: 120px !important;         /* equal width */
    padding: 18px !important;        /* bigger padding */
    text-align: center !important;
  }

  .stats-box div p:first-child {
    font-size: 28px !important;      /* number size */
  }

  .stats-box div p:last-child {
    font-size: 11px !important;      /* label size */
    line-height: 1.2;
  }
}
/* फॉर्म फ़ील्ड स्टाइलिंग */
.form-input {
  width: 100%;
  padding: 10px;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  transition: border-color 0.3s;
  color: #111;
}
.form-input:focus {
  outline: none;
  border-color: #4a7531;
}

/* कस्टम मॉडल पॉपअप के लिए स्टाइल */
.modal {
  display: none;
  position: fixed;
  z-index: 50;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(5px);
  justify-content: center;
  align-items: center;
}
.modal-content {
  background-color: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1),
    0 2px 4px -2px rgba(0, 0, 0, 0.1);
  max-width: 400px;
  width: 90%;
  text-align: center;
}
/* Essential utility for line-clamp functionality */
.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

/*----------MENU CARD Style css strat-------------*/


/* Section Wrapper */
.menu-section {
  padding: 15vh 5vw;
  margin: auto;
}

/* Heading */
.menu-section-heading {
  text-align: center;
  margin-bottom: 40px;
}

.menu-section-heading h1 {
  font-size: 32px;
  margin-bottom: 15px;
}

.menu-section-heading p {
  font-size: 15px;
  line-height: 1.6;
  color: #fff;
  max-width: 800px;
  margin: auto;
}

/* Masonry style */
.menu-section .images {
  column-count: 4;   /* Desktop */
  column-gap: 15px;
}

.menu-section .images img {
  width: 100%;
  margin-bottom: 15px;
  border-radius: 10px;
  display: block;
  break-inside: avoid;   /* masonry ke liye important */
}

/* 🔹 Responsive breakpoints */
@media (max-width: 1024px) {
  .menu-section .images {
    column-count: 2; /* Tablet */
  }
}

@media (max-width: 768px) {
  .menu-section {
    padding: 60px 15px;
  }
  .menu-section-heading h1 {
    font-size: 28px;
  }
  .menu-section .images {
    column-count: 2; /* Mobile landscape */
  }
}

@media (max-width: 480px) {
  .menu-section {
    padding: 40px 10px;
  }
 .menu-section-heading h1 {
    font-size: 28px;
  }
  .menu-section .images {
    column-count: 2; /* Mobile portrait */
  }
}

@media (max-width: 380px) {
  .menu-section {
    padding: 40px 10px;
  }
  .menu-section-heading h1 {
    font-size: 28px;
  }
  .menu-section .images {
    column-count: 2; /* Mobile portrait */
  }
}
/*----------MENU CARD Style css end-------------*/

/* Lightbox Background */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(6px);
  z-index: 9999;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.3s ease;
}

/* Lightbox Image */
.lightbox-img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
  animation: zoomIn 0.35s ease;
}

/* Close Button */
.lightbox-close {
  position: absolute;
  top: 25px;
  right: 30px;
  font-size: 2.5rem;
  color: #fff;
  cursor: pointer;
  transition: 0.2s ease;
}

.lightbox-close:hover {
  transform: scale(1.2);
}

/* Animations */
@keyframes zoomIn {
  from {
    transform: scale(0.7);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* lightbox css end */
/* WhatsApp Floating Button Style */
.whatsapp-float {
  position: fixed;
  bottom: 20px;   /* screen ke bottom se distance */
  right: 30px;    /* screen ke right se distance */
  z-index: 9999;
}

.whatsapp-float img {
  width: 50px;   /* size aap chhota-bada kar sakte ho */
  height: 50px;
  border-radius: 10%;
  /*box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);*/
  transition: transform 0.3s ease;
}

.whatsapp-float img:hover {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .whatsapp-float img {
    width: 45px;
    height: 45px;
  }
}
/* WhatsApp Floating Button Style End */

/* Call Floating Button Style */
.call-float {
  position: fixed;
  bottom: 90px;   /* screen ke bottom se distance */
  right: 30px;    /* screen ke right se distance */
  z-index: 9999;
}

.call-float img {
  width: 50px;   /* size aap chhota-bada kar sakte ho */
  height: 50px;
  border-radius: 10%;
  /*box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);*/
  transition: transform 0.3s ease;
}

.call-float img:hover {
  transform: scale(1.1);
}

@media (max-width: 768px) {
  .call-float img {
    width: 45px;
    height: 45px;
  }
}
/* Call Floating Button Style End */


/*----------Coming-soon Card Style css start-------------*/
/* Coming-soon Section Wrapper */
.coming-soon-section {
  padding: 10vh 0;
  max-width: 1200px;
  margin: auto;
}

/* Heading */
.coming-soon-section-heading {
  text-align: center;
  margin-bottom: 40px;
}

.coming-soon-section-heading h1 {
  font-size: 35px;
  font-weight: 700;
  margin-bottom: 15px;
}

.coming-soon-section-heading p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  max-width: 800px;
  margin: auto;
}

/* Cards Grid */
.coming-soon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

/* Card */
.coming-soon-card {
 background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 16px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.coming-soon-card:hover {
   transform: translateY(-8px);
  box-shadow: 0 0 25px rgba(255, 114, 24, 0.7); /* glow effect */
}

/* Image */
.coming-soon-image {
  width: 100%;
  height: 350px;
  overflow: hidden;
}

.coming-soon-image img {
  width: 100%;
  height: 100%;
  object-fit:cover;
  display: block;
}

/* ------------ Responsive ------------- */

/* Tablet */
@media (max-width: 992px) {
    
    .coming-soon-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }
  .coming-soon-section {
    padding: 15vh 30px;
  }

  .coming-soon-section-heading h1 {
    font-size: 28px;
  }

  .coming-soon-image {
    height: 300px;
  }
}

/* Mobile - 2x2 Cards */
@media (max-width: 768px) {
  .coming-soon-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .coming-soon-image {
    height: 250px;
  }

}

/* Small Mobile - 1 Card */
@media (max-width: 480px) {
  .coming-soon-grid {
    grid-template-columns:1fr;
  }

  .coming-soon-image {
    height: 220px;
  }
}
/*----------Coming-soon Card Style css end-------------*/

