

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@500;600;700;800;900&family=Inter:wght@400;500;600&display=swap');
:root {
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --gold-dark: #a07830;
  --cream: #fdf8f0;
  --dark: #1a1208;
  --dark2: #2e1f0a;
  --brown: #5c3d1e;
  --text-muted: #8a7560;
  --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {

 font-family: 'Inter', sans-serif;
  background: var(--cream);
  font-weight: 500;
  color: var(--dark);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
}
/* ── NAVBAR ── */
.navbar {
  background: white;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,168,76,0.25);
  padding: 0.75rem 0;
  position: sticky;
  top: 0;
  z-index: 999;
  transition: all 0.3s;
}
.navbar-brand {
  font-family:  "Poppins", sans-serif;
  font-size: 1.9rem;
  font-weight: 700;
  color: var(--gold) !important;
  letter-spacing: 1px;
}
.navbar-brand span { color: var(--white); font-weight: 300; }
.nav-link {
  color: black;
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0.5rem 1rem !important;
  transition: color 0.3s;
}
.nav-link:hover { color: var(--gold) !important; }
.navbar-toggler {border-color: var(--gold);color: black;}
.navbar-toggler-icon {/* filter: invert(1); */}
.btn-consult {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--dark) !important;
  border-radius: 2px;
  font-weight: 600;
  letter-spacing: 1.5px;
  font-size: 0.75rem;
  padding: 0.5rem 1.4rem !important;
  transition: all 0.3s;
}
.btn-consult:hover { background: linear-gradient(135deg, var(--gold-light), var(--gold)); transform: translateY(-1px); }
.hero {
  position: relative;
}

.hero-img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  color: #fff;
  max-width: 600px;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: bold;
}

.hero-content p {
  margin: 15px 0;
}

.swiper-button-next,
.swiper-button-prev {
  color: gold;
}

.swiper-pagination-bullet {
  background: gold;
}
/* ── HERO ── */
.hero {
  /* min-height: 100vh; */
  background: var(--dark);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-mandala {
  position: absolute;
  right: -100px;
  top: 50%;
  transform: translateY(-50%);
  width: 700px;
  height: 700px;
  opacity: 0.07;
  animation: rotateSlow 60s linear infinite;
}
@keyframes rotateSlow { to { transform: translateY(-50%) rotate(360deg); } }
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(201,168,76,0.08) 0%, transparent 60%),
                    radial-gradient(circle at 80% 20%, rgba(201,168,76,0.05) 0%, transparent 50%);
}
.hero-badge {
  display: inline-block;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.4);
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 0.4rem 1.2rem;
  margin-bottom: 1.5rem;
  animation: fadeInDown 0.8s ease both;
}
.hero h1 {
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  color: var(--white);
  line-height: 1.1;
  font-weight: 300;
  animation: fadeInUp 0.9s 0.2s ease both;
}
.hero h1 em { color: var(--gold); font-style: italic; }
.hero p {
  color: rgba(255,255,255,0.65);
  font-size: 1.05rem;
  line-height: 1.8;
  /* max-width: 520px; */
  margin: 1.5rem 0 2.5rem;
  animation: fadeInUp 0.9s 0.4s ease both;
  font-weight: 300;
}
.btn-gold {
  background: #8b5e34;
  color: white;
  padding: 0.9rem 2.5rem;
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  border-radius: 2px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}
.btn-gold:hover { background: var(--gold-light); color: var(--dark); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(201,168,76,0.4); }
.btn-outline-gold {
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.9rem 2.5rem;
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 2px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}
.btn-outline-gold:hover { background: var(--gold); color: var(--dark); }
.hero-stats {
  display: flex;
  gap: 2.5rem;
  margin-top: 3rem;
  animation: fadeInUp 0.9s 0.6s ease both;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Inter', sans-serif;
  font-size: 2.2rem;
  color: var(--gold);
  font-weight: 600;
  line-height: 1;
}
.stat-label { font-size: 0.72rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.5); margin-top: 0.3rem; }

/* ── TICKER ── */
.ticker-bar {
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  padding: 0.65rem 0;
  overflow: hidden;
}
.ticker-content {
  display: flex;
  gap: 3rem;
  animation: tickerScroll 30s linear infinite;
  white-space: nowrap;
}
@keyframes tickerScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
.ticker-item { font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase; color: var(--dark); font-weight: 600; }
.ticker-dot { color: var(--dark); opacity: 0.5; }

/* ── SECTION GENERIC ── */
.section-label {
  font-size: 0.72rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--dark);
}
.section-title.light { color: var(--white); }
.divider-gold {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 1.2rem 0;
}
.divider-gold.center { margin: 1.2rem auto; }

/* ── ABOUT ── */
.about-section { background: var(--cream); padding: 6rem 0; }
.about-img-wrap {
  position: relative;
}
.about-img-wrap::before {
  content: '';
  position: absolute;
  top: -20px; left: -20px;
  width: 100%; height: 100%;
  border: 2px solid var(--gold);
  opacity: 0.3;
  z-index: 0;
}
.about-img-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 2px;
}
.about-feature { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.5rem; }
.about-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  border-radius: 2px; font-size: 1.1rem; color: var(--dark);
}
.about-feature h6 {   font-family: 'Inter', sans-serif; font-size: 1.1rem; font-weight: 600; margin-bottom: 0.2rem; }
.about-feature p { font-size: 0.87rem; color: var(--text-muted); line-height: 1.6; margin: 0; }

/* ── SERVICES ── */
.services-section { background: var(--dark); padding: 6rem 0; }
.service-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.15);
  padding: 2.5rem 2rem;
  text-align: center;
  border-radius: 4px;
  transition: all 0.4s;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform: scaleX(0);
  transition: transform 0.4s;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
  background: rgba(201,168,76,0.07);
  transform: translateY(-5px);
  border-color: rgba(201,168,76,0.4);
}
.service-icon {
  width: 70px; height: 70px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.8rem;
  color: var(--gold);
  transition: all 0.3s;
}
.service-card:hover .service-icon { background: var(--gold); color: var(--dark); }
.service-card h4 { color: var(--white); font-size: 1.3rem; margin-bottom: 0.75rem; }
.service-card p { color: rgba(255,255,255,0.55); font-size: 0.87rem; line-height: 1.7; margin: 0; }

/* ── DIRECTIONS ── */
.directions-section { background: var(--cream); padding: 6rem 0; }
.dir-grid { display: grid; grid-template-columns: 1fr auto 1fr; grid-template-rows: 1fr auto 1fr; gap: 0; }
.dir-card {
  background: var(--white);
  border: 1px solid rgba(201,168,76,0.2);
  padding: 1.8rem 1.5rem;
  text-align: center;
  transition: all 0.3s;
}
.dir-card:hover { background: var(--dark); }
.dir-card:hover h5, .dir-card:hover p { color: var(--white); }
.dir-center {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex; align-items: center; justify-content: center;
  padding: 2rem;
  border-radius: 50%;
  width: 120px; height: 120px;
  margin: auto;
}
.dir-symbol { font-size: 3rem; }
.dir-card h5 {   font-family: 'Inter', sans-serif; font-size: 1.1rem; color: var(--gold); margin-bottom: 0.5rem; }
.dir-card p { font-size: 0.82rem; color: var(--text-muted); margin: 0; line-height: 1.6; }

/* ── PRODUCTS ── */
.products-section { background: var(--dark2); padding: 6rem 0; }
.product-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 4px;
  overflow: hidden;
  transition: all 0.4s;
}
.product-card:hover { transform: translateY(-6px); border-color: var(--gold); box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
.product-img {
  height: 220px;
  background: linear-gradient(135deg, rgba(201,168,76,0.1), rgba(201,168,76,0.05));
  display: flex; align-items: center; justify-content: center;
  font-size: 5rem;
  border-bottom: 1px solid rgba(201,168,76,0.15);
}
.product-body { padding: 1.5rem; }
.product-body h5 { color: var(--white);   font-family: 'Inter', sans-serif; font-size: 1.2rem; margin-bottom: 0.5rem; }
.product-body p { color: rgba(255,255,255,0.5); font-size: 0.82rem; margin-bottom: 1rem; }
.product-price { color: var(--gold);  font-family: 'Inter', sans-serif; font-size: 1.4rem; font-weight: 600; }
.btn-add {
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  border-radius: 2px;
  transition: all 0.3s;
  cursor: pointer;
}
.btn-add:hover { background: var(--gold); color: var(--dark); }

/* ── VASTU TIPS ── */
.tips-section { background: var(--cream); padding: 6rem 0; }
.tip-card {
  background: var(--white);
  border-left: 3px solid var(--gold);
  padding: 1.5rem;
  margin-bottom: 1rem;
  transition: all 0.3s;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.tip-card:hover { box-shadow: 0 6px 25px rgba(201,168,76,0.15); transform: translateX(4px); }
.tip-card h6 {   font-family: 'Inter', sans-serif; font-size: 1.05rem; color: var(--dark); margin-bottom: 0.4rem; font-weight: 600; }
.tip-card p { font-size: 0.84rem; color: var(--text-muted); margin: 0; line-height: 1.6; }

/* ── TESTIMONIALS ── */
.testimonials-section { background: var(--dark); padding: 6rem 0; }
.testi-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: 4px;
  padding: 2rem;
  height: 100%;
  position: relative;
}
.testi-quote {
  font-size: 4rem;
  color: var(--gold);
  opacity: 0.3;
  font-family: 'Inter', sans-serif;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.testi-card p { color: rgba(255,255,255,0.7); font-size: 0.9rem; line-height: 1.8; font-style: italic; margin-bottom: 1.5rem; }
.testi-author strong { color: var(--gold);   font-family: 'Inter', sans-serif; font-size: 1.05rem; }
.testi-author small { color: rgba(255,255,255,0.4); font-size: 0.75rem; display: block; margin-top: 0.2rem; }
.stars { color: var(--gold); font-size: 0.75rem; margin-bottom: 1rem; }

/* ── CTA ── */
.cta-section {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231a1208' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.cta-section h2 { font-size: clamp(2rem,4vw,3rem); color: var(--dark); font-weight: 600; }
.cta-section p { color: rgba(26,18,8,0.7); font-size: 1rem; }
.btn-dark-gold {
  background: var(--dark);
  color: var(--gold);
  padding: 0.9rem 2.5rem;
  font-size: 0.82rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  border-radius: 2px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}
.btn-dark-gold:hover { background: var(--dark2); color: var(--gold-light); transform: translateY(-2px); }

/* ── FOOTER ── */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(201,168,76,0.2);
  padding: 4rem 0 2rem;
}
.footer-brand {   font-family: 'Inter', sans-serif; font-size: 2rem; color: var(--gold); font-weight: 700; }
.footer-brand span { color: rgba(255,255,255,0.6); font-weight: 300; }
footer p { color: rgba(255,255,255,0.5); font-size: 0.85rem; line-height: 1.8; }
.footer-heading { color: var(--gold); font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 1.2rem; font-family: 'Jost', sans-serif; font-weight: 600; }
.footer-links { list-style: none; padding: 0; }
.footer-links li a { color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.85rem; transition: color 0.3s; display: block; padding: 0.2rem 0; }
.footer-links li a:hover { color: var(--gold); padding-left: 4px; }
.social-link {
  display: inline-flex; align-items: center; justify-content: center;
  width: 38px; height: 38px;
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 2px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: all 0.3s;
  font-size: 0.9rem;
  margin-right: 0.5rem;
}
.social-link:hover { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.07); margin-top: 3rem; padding-top: 1.5rem; }
.footer-bottom p { color: rgba(255,255,255,0.3); font-size: 0.78rem; margin: 0; }

/* ── FLOATING WHATSAPP ── */
.whatsapp-float {
  position: fixed;
  bottom: 2rem; right: 2rem;
  background: #25d366;
  color: white;
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  z-index: 1000;
  animation: pulse 2s infinite;
}
@keyframes pulse { 0%,100%{box-shadow:0 4px 20px rgba(37,211,102,0.5)} 50%{box-shadow:0 4px 35px rgba(37,211,102,0.8)} }

/* ── ANIMATIONS ── */
@keyframes fadeInDown { from{opacity:0;transform:translateY(-20px)} to{opacity:1;transform:translateY(0)} }
@keyframes fadeInUp   { from{opacity:0;transform:translateY(30px)}  to{opacity:1;transform:translateY(0)} }

.fade-in { opacity: 0; transform: translateY(30px); transition: all 0.7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ── */
@media(max-width:768px){
  .hero-stats { gap: 1.5rem; }
  .stat-num { font-size: 1.7rem; }
  .dir-center { width: 80px; height: 80px; }
  .dir-symbol { font-size: 2rem; }
  .dir-card { padding: 1rem; }
}
/* Base button style */
.swiper-button-next,
.swiper-button-prev {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
  border: 1px solid gold;
  color: gold;
  transition: all 0.3s ease;
}

/* Arrow size */
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 18px;
  font-weight: bold;
}

/* Hover effect */
.swiper-button-next:hover,
.swiper-button-prev:hover {
  background: gold;
  color: black;
  transform: scale(1.1);
  box-shadow: 0 0 15px gold, 0 0 30px rgba(255, 215, 0, 0.5);
}

/* Position tweak */
.swiper-button-next {
  right: 20px;
}

.swiper-button-prev {
  left: 20px;
}
.hero {
  width: 100%;
  height: 100vh;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero {
  width: 100%;
  height: 100vh;
}

.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Button styling */
.swiper-button-next,
.swiper-button-prev {
  color: #fff;
}.hero {
  position: relative;
  height: 100vh;
}

.swiper,
.swiper-slide {
  height: 100%;
  position: relative;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Dark overlay */
.swiper-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

/* Center content */
.slide-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  max-width: 700px;
  width: 90%;
  z-index: 2;
}

/* Heading */
.slide-content h1 {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
}

/* Paragraph */
.slide-content p {
  margin: 20px 0;
  font-size: 1.1rem;
  color: #fff;
}

/* Button spacing */
.slide-content a {
  margin-top: 10px;
  display: inline-block;
}
/* Section background */
.about-section {
  background: #e9dfc8;
  padding: 80px 0;
}

/* Mandala circle background */
.mandala-bg {
  position: absolute;
  width: 380px;
  height: 380px;
  background: url('images/Asset-1.png') no-repeat center;
  background-size: contain;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.8;
}

/* Image styling */
.about-img {
  position: relative;
  width: 260px;
  z-index: 2;
}

/* Optional: make image look premium */
.about-img {
  filter: grayscale(100%);
}

/* Improve heading style */
.section-title {
  font-size: 40px;
  font-weight: 500;
}

/* Button tweak (optional like screenshot) */
.btn-gold {
  padding: 12px 30px;
  clip-path: polygon(10% 0%, 90% 0%, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
}/* Remove padding gap */
.about-section {
  background: #e9dfc8;
}

/* Full image container */
.about-img-full {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 500px;
}

/* Image full cover */
.about-img-full img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Mandala overlay (optional premium) */
.mandala-overlay {
  position: absolute;
  inset: 0;
  background: url('images/mandala.png') center no-repeat;
  background-size: 60%;
  opacity: 0.3;
}

/* Right content spacing */
.section-title {
  font-size: 40px;
}/* Section background */
.services-section {
  background: #e9dfc8;
  padding: 80px 0;
}

/* Title */
.service-title {
  font-size: 50px;
  color: #a07830;
  font-weight: 500;
}

/* Card */
.service-card-new {
  background: #5a4632;
  padding: 40px 25px;
  border-radius: 15px;
  color: white;
  transition: 0.3s;
}

/* Hover */
.service-card-new:hover {
  transform: translateY(-10px);
}

/* Icon */
.service-icon-new {
  font-size: 50px;
  color: #e0b75f;
  margin-bottom: 20px;
}

/* Title inside card */
.service-card-new h5 {
  font-size: 16px;
  margin-bottom: 15px;
}

/* Text */
.service-card-new p {
  font-size: 14px;
  color: white;
}

/* Button (hexagon style 🔥) */
.btn-enquire {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 30px;
  background: #8b5e34;
  color: #fff;
  text-decoration: none;
  font-weight: 600;

  clip-path: polygon(10% 0%, 90% 0%, 100% 50%, 90% 100%, 10% 100%, 0% 50%);
  transition: 0.3s;
}

.btn-enquire:hover {
  background: #a07830;
}/* Default desktop same rahega */

/* Tablet & Mobile */
@media (max-width: 991px) {

  /* Stack layout */
  .about-section .row {
    flex-direction: column;
  }

  /* Image full width on top */
  .about-img-full {
    min-height: 300px;
  }

  .about-img-full img {
    height: 300px;
  }

  /* Remove side padding gap */
  .col-lg-6 {
    padding: 20px !important;
  }

  /* Center text */
  .section-label,
  .section-title,
  .divider-gold,
  .about-section p {
    text-align: center;
  }

  /* Button center */
  .btn-gold {
    display: block;
    margin: 20px auto 0;
  }
}

/* Small mobile */
@media (max-width: 576px) {

  .about-img-full {
    min-height: 250px;
  }

  .about-img-full img {
    height: 250px;
  }

  .section-title {
    font-size: 26px;
  }

  .about-section p {
    font-size: 14px;
  }
}/* Background */
.yantra-section {
  background: radial-gradient(circle, #6b4a2b, #3b2a1a);
  padding: 80px 0;
  color: #d4b06a;
}

/* Title */
.yantra-title {
  font-size: 40px;
  margin-bottom: 60px;
  color: white;
}

/* Text */
.yantra-text h5 {
  color: white;
  font-size: 18px;
  margin-bottom: 10px;
}

.yantra-text p {
  font-size: 14px;
  line-height: 1.7;
  color: white;
}

/* Image */
.yantra-img {
  width: 280px;
  max-width: 100%;
  filter: drop-shadow(0 0 20px rgba(224,183,95,0.5));
}/* Section */
.why-section {
  background: #f5efe3;
  padding: 80px 0;
}

/* Title */
.why-title {
  font-size: 42px;
  color: #a07830;
  margin-bottom: 10px;
}

.why-sub {
  color: #7a6a4f;
  font-size: 15px;
}

/* Card */
.why-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  transition: 0.3s;
  border: 1px solid #eee;
}

/* Hover */
.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 30px rgba(160,120,48,0.2);
}

/* Icon */
.why-icon {
  font-size: 35px;
  color: #c9a84c;
  margin-bottom: 15px;
}

/* Heading */
.why-card h5 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #333;
}

/* Text */
.why-card p {
  font-size: 14px;
  color: #666;
}/* Section */
.process-section {
  background: #e9dfc8;
  padding: 80px 0;
}

/* Title */
.process-title {
  font-size: 42px;
  color: #a07830;
  margin-bottom: 10px;
}

.process-sub {
  font-size: 18px;
  color: #7a6a4f;
}

.process-desc {
  font-size: 14px;
  color: #8a7a5f;
  max-width: 600px;
  margin: 10px auto 0;
}

/* Card */
.process-card {
  background: #fff;
  padding: 30px 20px;
  border-radius: 12px;
  transition: 0.3s;
  border: 1px solid #eee;
}

/* Hover */
.process-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(160,120,48,0.15);
}

/* Step Number */
.step-number {
  width: 50px;
  height: 50px;
  margin: 0 auto 15px;
  background: #c9a84c;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Heading */
.process-card h5 {
  font-size: 16px;
  margin-bottom: 10px;
  color: #333;
}

/* Text */
.process-card p {
  font-size: 14px;
  color: #666;
}.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.1);
  padding: 15px 0;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #6b4a2b;
  cursor: pointer;
  transition: 0.3s;
}

.faq-question span {
  font-size: 20px;
  transition: 0.3s;
}

.faq-question:hover {
  color: var(--gold);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer p {
  font-size: 14px;
  color: #7a6a4f;
  margin-top: 10px;
  line-height: 1.6;
}

/* Active state */
.faq-item.active .faq-answer {
  max-height: 200px;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg); /* turns + into x */
}.faq-item {
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding: 18px 0;
}

.faq-question {
  width: 100%;
  background: transparent;
  border: none;
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #4a3725;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question span {
  font-size: 22px;
  font-weight: 400;
  transition: 0.3s;
}

.faq-question:hover {
  color: var(--gold);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease;
}

.faq-answer p {
  font-size: 14.5px;
  color: #6d5a45;
  margin-top: 12px;
  line-height: 1.8;
}

/* Active */
.faq-item.active .faq-answer {
  max-height: 300px;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}/* Section */
.testimonials-section {
  background: #e9dfc8;
  padding: 80px 0;
}

/* Title */
.testi-title {
  font-size: 42px;
  letter-spacing: 2px;
  color: #8b5e34;
  font-weight: 500;
}

/* Card */
.testi-card-new {
  background: #f1f1f1;
  padding: 30px 25px;
  border-radius: 15px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  height: 100%;
  transition: 0.3s;
}

/* Hover */
.testi-card-new:hover {
  transform: translateY(-8px);
}

/* Stars */
.stars {
  color: #f5a623;
  font-size: 14px;
  margin-bottom: 15px;
}

/* Text */
.testi-card-new p {
  font-size: 13.5px;
  line-height: 1.8;
  color: #444;
  margin-bottom: 25px;
}

/* Author */
.testi-author strong {
  display: block;
  font-size: 14px;
  color: #333;
  margin-bottom: 3px;
}

.testi-author span {
  font-size: 12px;
  color: #777;
}.text-gold {
  color: #c6a55c;
}

.custom-input {
  border-radius: 6px;
  border: 1px solid #ddd;
  font-size: 0.9rem;
  padding: 10px;
}

.custom-input:focus {
  border-color: #c6a55c;
  box-shadow: 0 0 5px rgba(198,165,92,0.5);
}

.btn-dark {
  background: #1a1208;
  border: none;
}

.btn-dark:hover {
  background: #000;
}.contact-pro {
  background: #f9f7f2;
}

/* INFO BOX */
.info-box {
  background: #fff;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
}

.info-item {
  display: flex;
  gap: 15px;
  margin-bottom: 20px;
}

.info-item i {
  background: #c6a55c;
  color: #000;
  padding: 10px;
  border-radius: 50%;
}

.info-item p {
  margin: 0;
  font-size: 13px;
}

/* FORM */
.form-box {
  background: #6d0026;
  color: #fff;
  padding: 30px;
  border-radius: 12px;
}

.form-box input,
.form-box select,
.form-box textarea {
  width: 100%;
  padding: 10px;
  border: none;
  border-radius: 6px;
}

/* BUTTON */
.btn-send {
  background: #c6a55c;
  border: none;
  padding: 10px;
  width: 100%;
  border-radius: 6px;
  font-weight: bold;
}

/* MAP */
.map-section iframe {
  width: 100%;
  height: 350px;
  border-radius: 12px;
  border: none;
}.info-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

/* ICON BOX */
.icon-box {
  width: 40px;
  height: 40px;
  background: #c6a55c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ICON */
.icon-box i {
  color: #000;
  font-size: 16px;
}

/* REMOVE THIS IF YOU HAVE */
.info-item i {
  background: none !important;
  padding: 0 !important;
}.icon-box {
  box-shadow: 0 5px 15px rgba(198,165,92,0.4);
  transition: 0.3s;
}

.icon-box:hover {
  transform: scale(1.1);
}.footer-vastu {
  background: #4b3827; /* dark brown */
  color: #d4af37; /* gold */
  padding: 50px 0 20px;
  font-size: 13px;
}

/* LOGO */
.footer-logo {
  width: 140px;
}

/* HEADINGS */
.footer-heading {
  color: #d4af37;
  font-weight: 600;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

/* TEXT */
.footer-text {
  color: #e0cfa0;
  font-size: 12px;
  line-height: 1.6;
}

/* LINKS */
.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 6px;
}

.footer-links a {
  color: #e0cfa0;
  text-decoration: none;
  font-size: 12px;
}

.footer-links a:hover {
  color: #fff;
}

/* BRANCH LIST */
.footer-col ul li {
  margin-bottom: 10px;
  list-style: none;
}

.footer-col ul li span {
  font-size: 11px;
  color: #cbb27a;
}

/* BORDER LINE */
.border-start {
  border-left: 1px solid rgba(255,255,255,0.2);
  padding-left: 20px;
}

/* SOCIAL */
.footer-social a {
  display: inline-block;
  margin-right: 8px;
  width: 30px;
  height: 30px;
  background: #d4af37;
  color: #000;
  text-align: center;
  line-height: 30px;
  border-radius: 4px;
}

/* BOTTOM */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.2);
  margin-top: 30px;
  padding-top: 10px;
  font-size: 12px;
  color: #cbb27a;
}.copyright-bar {
  background: white; /* landing page maroon */
  color: black;
  font-size: 13px;
  padding: 10px 0px;
}

/* GOLD STAR */
.gold {
  color: #c6a55c;
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .copyright-bar {
    text-align: center;
  }

  .copyright-bar .container {
    flex-direction: column;
    gap: 5px;
  }
}/* MOBILE */
@media (max-width: 768px) {

 
.hero {
    position: relative;
    height: 70vh !important;
}.swiper-slide img {
    width: 100%;
    height: 90vh;
}
  .slide-content {
    left: 55%;
    top: 55%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 0 15px;
    max-width: 100%;
  }

  .slide-content h1 {
    font-size: 40px;
    line-height: 1.3;
  }

  .slide-content p {
    font-size: 15px;
  }

  .btn-gold {
    /* padding: 8px 16px; */
    font-size: 13px;
  }

  /* HIDE ARROWS ON MOBILE */
  .swiper-button-next,
  .swiper-button-prev {
    display: none;
  }
}.vastu-contact-section {
  background: #c6a55c;
  position: relative;
}

/* IMAGE */
.image-box {
  border: 8px solid #000;
  border-radius: 10px;
  overflow: hidden;
}

.image-box img {
  width: 100%;
  display: block;
}

/* CONTENT */
.content-box {
  padding-left: 20px;
}

.main-title {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.3;
  /* font-family: 'Inter'; */
}

.description {
  color: white;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 15px;
}

/* CALL BUTTON */
.call-btn {
  display: inline-block;
  background: linear-gradient(45deg, #ff4b5c, #ff7a7a);
  color: #fff;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 10px;
  transition: 0.3s;
}

.call-btn i {
  margin-right: 8px;
}

.call-btn:hover {
  background: linear-gradient(45deg, #e63b4c, #ff5c5c);
  color: #fff;
}

/* QUICK ENQUIRY SIDE BUTTON */
.quick-enquiry {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  background: #000;
  color: #fff;
  padding: 10px 20px;
  font-weight: 600;
  border-radius: 5px 5px 0 0;
  cursor: pointer;
}/* IMAGE BOX HOVER EFFECT */
.image-box {
  border: 8px solid #000;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  transition: 0.4s ease;
}

/* IMAGE */
.image-box img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

/* OVERLAY */
.image-box::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(214, 130, 42, 0.2); /* orange overlay */
  opacity: 0;
  transition: 0.4s;
}

/* HOVER EFFECT */
.image-box:hover img {
  transform: scale(1.08);
}

.image-box:hover {
  box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.image-box:hover::after {
  opacity: 1;
}/* SECTION BACKGROUND */
.process-section {
  background: linear-gradient(135deg, #f5eee6, #e6d3b3);
  padding: 80px 0;
  background: linear-gradient(135deg, #2b1f1a, #4a3428);
}

/* HEADING */
.process-title {
  font-size: 38px;
  font-weight: 700;
  color: white; /* dark brown */
}

.process-sub {
  font-size: 18px;
  font-weight: 600;
  color: white;
}

.process-desc {
  color: white;
  max-width: 600px;
  margin: auto;
}

/* CONNECTING LINE */
.process-row::before {
  content: "";
  position: absolute;
  top: 40px;
  left: 10%;
  width: 80%;
  height: 3px;
  background: linear-gradient(to right, #6b3e26, #a9744f);
  z-index: 0;
}

/* CARD */
.process-card {
  background: white;
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px 20px;
  position: relative;
  z-index: 1;
  transition: 0.4s ease;
  border: 1px solid rgba(255,255,255,0.3);
}

/* HOVER EFFECT */
.process-card:hover {
  transform: translateY(-12px) scale(1.03);
  box-shadow: 0 20px 40px rgba(107, 62, 38, 0.25);
}

/* STEP NUMBER */
.step-number {
  width: 60px;
  height: 60px;
  line-height: 60px;
  margin: 0 auto 15px;
  border-radius: 50%;
  background: linear-gradient(45deg, #6b3e26, #a9744f);
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  box-shadow: 0 5px 15px rgba(107,62,38,0.4);
  position: relative;
}

/* PULSE ANIMATION */
.step-number::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #a9744f;

}@keyframes pulse {
  0% { transform: scale(1); opacity: 0.7; }
  70% { transform: scale(1.2); opacity: 1; }
  100% { opacity: 1; }
}

/* TEXT */
.process-card h5 {
  font-weight: 600;
  margin-bottom: 10px;
  color: #3e2a1f;
}

.process-card p {
  font-size: 14px;
  color: #6d5a4a;
}

/* MOBILE FIX */
@media(max-width: 768px){
  .process-row::before {
    display: none;
  }
  .main-title{
    font-size: 20px !important;
  }
  .services-section{
    padding: 30px 0px;
  }.about-section{
    padding: 30px 0px;
  }
}
 @media only screen and (max-width:480px){
  html,body{
   
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }
 }/* FORM BOX */
.form-box {
  background: #ffffff;
  padding: 35px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  border-top: 4px solid #6b3e26; /* brown accent */
}

/* HEADING */
.form-box h4 {
  color: #6b3e26;
  font-weight: 700;
}

/* INPUTS + SELECT + TEXTAREA */
.form-box input,
.form-box select,
.form-box textarea {
  width: 100%;
  padding: 12px 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  outline: none;
  font-size: 14px;
  background: #fff;
  transition: 0.3s ease;
}

/* FOCUS EFFECT */
.form-box input:focus,
.form-box select:focus,
.form-box textarea:focus {
  border-color: #6b3e26;
  box-shadow: 0 0 6px rgba(107, 62, 38, 0.2);
}

/* PLACEHOLDER */
.form-box input::placeholder,
.form-box textarea::placeholder {
  color: #999;
}

/* BUTTON */
.btn-send {
  background: linear-gradient(45deg, #6b3e26, #a9744f);
  color: #fff;
  padding: 12px;
  width: 100%;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  transition: 0.3s;
}

/* BUTTON HOVER */
.btn-send:hover {
  background: linear-gradient(45deg, #5a321d, #8a5e3c);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(107, 62, 38, 0.25);
}/* COMMON */
.float-btn {
  position: fixed;
  right: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  text-align: center;
  line-height: 50px;
  color: #fff;
  font-size: 20px;
  z-index: 999;
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transition: 0.3s;
}

/* WHATSAPP */
.whatsapp {
  bottom: 90px;
  background: #25D366;
}

/* CALL */
.call {
  bottom: 20px;
  background: #6d0026;
}

/* HOVER */
.float-btn:hover {
  transform: scale(1.1);
}.whatsapp {
  animation: pulse 1.5s infinite;
}

@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.6); }
  70% { box-shadow: 0 0 0 10px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}.slide-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}