/* style.css */

body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #faf8f6;
  color: #222;
  overflow-x: hidden;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 48px;
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  flex-wrap: wrap;
}

.logo {
  font-size: 1.8rem;
  font-weight: bold;
  color: #9A8358;
}

nav {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

nav a {
  text-decoration: none;
  color: #333;
  font-size: 1rem;
  padding: 6px 10px;
  border-radius: 4px;
}

nav a.selected,
nav a:hover {
  color: #c8a46b;
  border-bottom: 2px solid #c8a46b;
}

.gallery-wrapper {
  overflow: hidden;
  width: 100%;
  background: #f5f5f5;
  padding: 10px 0;
}

.gallery-slider {
  display: flex;
  white-space: nowrap;
  animation: scrollGallery 30s linear infinite;
  gap: 20px;
}

.gallery-slider img {
  height: 160px;
  max-width: 280px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
}

@keyframes scrollGallery {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.hero {
  background: #eee;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  position: relative;
}
.hero-content {
  max-width: 800px;
  text-align: center;
}

.hero-content h1 {
  font-size: 2.5rem;
  color: #333;
  margin-bottom: 20px;
}

.hero-button-wrapper {
  margin-top: 16px;
}

.hero-btn {
  padding: 12px 24px;
  font-size: 1rem;
  background: #f4b400;
  color: black;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

.category-section {
  padding: 32px 48px;
}

.hero-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 24px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
}

.category-card {
  background: #fff;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.05);
  text-align: center;
}

.category-card img {
  max-width: 100%;
  border-radius: 8px;
}

.category-title {
  margin-top: 12px;
  font-weight: bold;
}

.view-btn {
  margin-top: 12px;
  padding: 10px 20px;
  background: #c8a46b;
  color: white;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

footer {
  background: #f5ede4;
  padding: 36px 0 0;
  border-radius: 38px 38px 0 0;
  margin-top: 48px;
  box-shadow: 0 -2px 12px #ede4d2;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1100px;
  margin: auto;
  padding: 0 36px 28px;
  gap: 32px;
}

.footer-section {
  flex: 1 1 210px;
  min-width: 210px;
  margin-bottom: 18px;
}

.footer-section h3,
.footer-section h4 {
  font-size: 1.1rem;
  color: #9A8358;
  margin-bottom: 7px;
}

.footer-section p,
.footer-section a {
  font-size: 14px;
  color: #3a3120;
  line-height: 1.6;
  text-decoration: none;
}

.footer-section a:hover {
  color: #c8a46b;
}

.footer-section textarea {
  width: 95%;
  padding: 6px;
  border-radius: 6px;
  border: 1px solid #dbc39f;
}

.footer-section button {
  background: #c8a46b;
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 6px 20px;
  font-size: 1rem;
  cursor: pointer;
}

.footer-bottom {
  text-align: center;
  padding-top: 15px;
  border-top: 1px solid #ccc;
  font-size: 14px;
  color: #a89a7e;
  width: 100%;
  display: flex;
  justify-content: center;
}

.footer-section iframe {
  width: 100%;
  height: 180px;
  border: 0;
  border-radius: 8px;
}

.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  margin: 20px auto;
  padding-top: 10px;
}

.footer-social a {
  display: inline-block;
}

.footer-social img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  transition: transform 0.3s ease, filter 0.2s ease;
  filter: grayscale(0.5);
}

.footer-social a:hover img {
  transform: scale(1.2);
  filter: grayscale(0) brightness(1.1);
}

@media (max-width: 768px) {
  header {
    flex-direction: column;
    padding: 12px;
  }

  nav {
    flex-direction: column;
    gap: 10px;
    align-items: center;
  }

  .gallery-slider img {
    width: 90vw;
  }
}




/* Loader Container */
.logo-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000; /* Background during logo animation */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

/* Logo Animation */
.logo-animation {
  width: 150px;
  opacity: 0;
  animation: fadeZoom 2s ease-in-out forwards;
}

@keyframes fadeZoom {
  0% {
    opacity: 0;
    transform: scale(0.5);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Hide loader after animation */
body.loaded .logo-loader {
  display: none;
}







.logo-loader img {
  width: 120px;  /* adjust size as needed */
  max-width: 90%;
  height: auto;
  border-radius: 50%; /* optional if logo is round */
}





.logo-animation {
  width: 120px;
  opacity: 0;
  animation: fadeZoom 2s ease-in-out forwards;
}



.main-header {
  width: 100%;
  padding: 10px 20px;
  background: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #eee;
}

.nav-bar {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-left a {
  margin-right: 20px;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}

.nav-right .nav-logo {
  height: 40px;
  width: auto;
}








.footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 40px 30px;
  background-color: #fff;
  border-top: 1px solid #ddd;
  font-family: 'Segoe UI', sans-serif;
  font-size: 14px;
  color: #333;
}

.footer-column, .footer-section {
  flex: 1 1 250px;
  margin: 20px;
  min-width: 220px;
}

.footer-column h3,
.footer-section h4 {
  font-size: 16px;
  margin-bottom: 15px;
  font-weight: 600;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column ul li {
  margin-bottom: 10px;
}

.footer-column ul li a {
  text-decoration: none;
  color: #333;
}

.footer-column a:hover {
  text-decoration: underline;
}

.footer-section iframe {
  width: 100%;
  height: 180px;
  border: none;
  border-radius: 8px;
}

/* SOCIAL ICONS */
.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: 20px auto;
}

.footer-social a {
  display: inline-block;
  padding: 8px;
  background-color: #f3f3f3;
  border-radius: 8px;
  transition: transform 0.3s ease;
}

.footer-social a:hover {
  transform: scale(1.15);
}

.footer-social img {
  width: 28px;
  height: 28px;
}

/* BOTTOM COPYRIGHT */
.footer-bottom {
  text-align: center;
  padding: 15px;
  background-color: #f4f4f4;
  font-size: 13px;
  color: #666;
  border-top: 1px solid #ccc;
}

/* 📱 Mobile Responsive Fix */
@media (max-width: 768px) {
  .footer {
    flex-direction: column;
    padding: 30px 20px;
    text-align: center;
  }

  .footer-column, .footer-section {
    width: 100%;
    margin: 15px 0;
  }

  .footer-social {
    justify-content: center;
  }
}




































#popup-overlay {
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#popup-form-wrapper {
  background: #fff;
  padding: 30px;
  width: 90%;
  max-width: 400px;
  border-radius: 10px;
  text-align: center;
  font-family: 'Segoe UI', sans-serif;
  position: relative;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

#popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 20px;
  background: transparent;
  border: none;
  cursor: pointer;
}

#popup-form input {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  font-size: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.phone-input {
  display: flex;
  align-items: center;
}

.phone-input span {
  background: #f2f2f2;
  padding: 10px;
  border: 1px solid #ccc;
  border-right: none;
  border-radius: 6px 0 0 6px;
}

.phone-input input {
  border-radius: 0 6px 6px 0;
  border-left: none;
  flex: 1;
}

#popup-form button[type="submit"] {
  background: #000;
  color: white;
  border: none;
  padding: 12px;
  font-size: 16px;
  border-radius: 6px;
  cursor: pointer;
}

#popup-form button:hover {
  background: #333;
}

.no-thanks {
  margin-top: 10px;
  display: inline-block;
  font-size: 14px;
  color: #0073e6;
  cursor: pointer;
  text-decoration: underline;
}







.gallery-wrapper {
  overflow-x: auto; /* Horizontal scroll */
  -webkit-overflow-scrolling: touch; /* iOS smooth scroll */
  scroll-behavior: smooth;
  display: flex; /* यदि multiple items हैं */
  gap: 10px; /* Optional spacing between items */
  padding: 10px;
}