* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}
body {
    background: black;
    color: #EDEDED;
}
.header {
background-color: black;

 /* original border */
  position: fixed;                   /* 👈 fixed for scroll */
  top: 0;                             /* stick to top */
  left: 0;                            /* full width from left */
  width: 100%;                        /* full width */
  z-index: 1000;                      /* stay on top */
  
  /* STRONG & VISIBLE SHADOW */
  box-shadow: 0 0px 55px rgb(131, 122, 122); /* original shadow */
}



.nav-container {
  max-width: 1500px;
  margin: auto;
  padding: 15px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo img {
  height: 45px;
}

/* ================= NAV DESKTOP ================= */
.nav {
  display: flex;
  align-items: center;
   
  gap: 35px;
}

/* LINK BASE */
.nav a {
  position: relative;
  color: #FFFDD0;
  text-decoration: none;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

/* UNDERLINE (hidden by default) */
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0%;
  height: 2px;
  background-color: #FFF1E6; /* dark brown */
  transition: width 0.35s ease;
}

/* HOVER EFFECT */
.nav a:hover {
  color: #FFFDD0;
}

.nav a:hover::after {
  width: 100%;
}

.nav a::after {
  left: 50%;
  transform: translateX(-50%);
}


/* ================= NAV BUTTON ================= */
.nav .btn_nav {
  padding: 10px 18px;
  background: #6b5c45; /* normal brown background */
  color: #fff;          /* normal text white */
  border-radius: 2px;
  border: 2px solid transparent; /* default border invisible */
  transition: all 0.3s ease;     /* smooth hover */
}

/* BUTTON HOVER */
.nav .btn_nav:hover {
  background: transparent;    /* transparent bg on hover */
    color: #FFFDD0;            /* dark brown text */
  border: 2px solid #FFFDD0; /* brown border appears */
  transform: translateY(-1px); /* optional subtle lift */
}


/* ================= HAMBURGER (DESKTOP HIDE) ================= */
.menu-icon,
.close-icon {
  display: none;   /* IMPORTANT */
  font-size: 28px;
  cursor: pointer;
  color: #FFFDD0;
}


/* ================= MOBILE & TABLET ================= */

/* ===== FIX FOR 1084px TO 768px ONLY ===== */

@media (max-width: 1084px) and (min-width: 769px) {
  
  .nav-container {
    padding: 12px 18px;   /* spacing adjust */
  }

  .nav {
    gap: 20px;            /* gap reduce */
  }

  .nav a {
    font-size: 13px;      /* text small */
    letter-spacing: 0.8px;
  }

  .logo img {
    height: 40px;         /* logo adjust */
  }

  .nav .btn_nav {
    padding: 8px 14px;    /* button adjust */
    font-size: 12px;
  }
}





@media screen and (max-width: 950px) and (min-width: 769px) {
  .nav {
    gap: 20px;              /* reduce gap to fit mid screens */
    flex-wrap: wrap;         /* allow wrapping if needed */
    justify-content: center; /* optional: center links */
  }

  .nav a {
    font-size: 13px;         /* slightly smaller font */
  }

  .nav .btn_nav {
    padding: 8px 14px;       /* smaller button for mid screens */
    font-size: 13px;
  }
}





@media (max-width: 768px) {

  /* hide desktop nav */
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 75%;
    height: 100vh;
   background: black;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 65px;
    transition: right 0.3s ease;
    justify-content: flex-start; /* center ki jagah upar se start */
    padding-top: 120px;          /* jitna upar lana ho utna adjust */
    gap: 40px;   
  }

  .nav.active {
    right: 0;
  }

  /* show hamburger */
  .menu-icon {
    display: block;
  }

  /* close icon */
  .close-icon {
    position: fixed;
    top: 20px;
    right: 25px;
    display: none;
    z-index: 1001;
  }

  .hero {
    height: 60vh;
  }
}

/* FORCE HIDE HAMBURGER ON DESKTOP */
@media (min-width: 769px) {
  .menu-icon,
  .close-icon {
    display: none !important;
  }

  .nav {
    position: static;
    height: auto;
    flex-direction: row;
    right: 0;
  }
}

/* ================= SMALL DEVICES ================= */
@media (max-width: 480px) {
  .logo img {
    height: 38px;
  }

  .hero {
    height: 55vh;
  }
}






/* ================= HERO ================= */

.hero {
  background: 
    linear-gradient(
      rgba(0,0,0,0.55),
      rgba(0,0,0,0.75)
    ),
    url('../images/project-bedroom.jpg')
    center/cover no-repeat;

  height: 80vh;
  min-height: 520px;

  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  padding: 0 6%;
}

/* HEADING */
.hero h1 {
  font-size: clamp(28px, 4.5vw, 52px);
  margin-bottom: 22px;
  color: #FFFDD0;
  letter-spacing: 1px;
}

/* TEXT */
.hero p {
  font-size: clamp(14px, 1.6vw, 18px);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.7;
  color: #cfcfcf;
}

/* ======================
   TABLET
====================== */
@media (max-width: 1024px) {
  .hero {
    height: 70vh;
    min-height: 460px;
  }
}

/* ======================
   MOBILE
====================== */
@media (max-width: 600px) {
  .hero {
    height: 65vh;
    min-height: 420px;
    padding: 0 18px;
  }

  .hero h1 {
    margin-bottom: 18px;
  }
}


.btn {
  background: #c9a24d;
  color: #000;
  padding: clamp(10px, 1.2vw, 14px) clamp(18px, 3vw, 28px);
  text-decoration: none;
  margin-top: 10px;
  font-weight: 600;
  font-size: clamp(13px, 1.2vw, 15px);
  border-radius: 6px;
  border: 1px solid transparent;
  display: inline-block;
  transition: all 0.35s ease;
  letter-spacing: 0.5px;
}

/* HOVER (desktop) */
.btn:hover {
  background: transparent;
  color: #FFFDD0;
  border-color: #FFFDD0;
}

/* ACTIVE (mobile tap feel) */
.btn:active {
  transform: scale(0.97);
}

/* ======================
   MOBILE IMPROVEMENTS
====================== */
@media (max-width: 600px) {
  .btn {
    font-size: 14px;
    padding: 12px 26px;
  }
}

/* ================= SECTIONS ================= */

.section {
    padding: 60px 10%;
    background: black;
}
/* HEADING */
.section h2 {
  font-size: clamp(22px, 4vw, 34px);
  text-align: center;
  line-height: 1.4;
  padding: 10px 0;
  margin-bottom: clamp(15px, 3vw, 25px);
  color: #FFFDD0;
  letter-spacing: 0.8px;
}


.section p,
.section ul,
.section li {
    font-size: 16px;
    line-height: 1.7;
    text-align: justify;
    color: #CFCFCF;
}
.section-flex {
  display: flex;
  justify-content: center;   /* 🔥 MAIN FIX */
  align-items: center;
  flex-wrap: wrap;
}
.section-img {
  display: block;          /* 🔥 important */
  max-width: 100%;
  width: 480px;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  margin: 0 auto;          /* 🔥 center fix */
}

/* MOBILE */
@media (max-width: 600px) {
  .section-img {
    width: 100%;
    max-width: 320px;
  }
}
/* REMOVE LIGHT BG – DARK THEME */
.light {
    background: black;
}

/* ================= FEATURES ================= */

.features {
    display: flex;
    gap: 20px;
    padding: 40px 10%;
    flex-wrap: wrap;
    background: black;
}

.feature-box {
    flex: 1;
    min-width: 200px;
    background: #111;
    color: #FFFDD0;
    padding: 25px;
    text-align: center;
    border-radius: 8px;
    border: 1px solid #2a2a2a;
}

/* ================= GALLERY ================= */
.gallery {
  padding: 60px 8%;
  text-align: center;
  background: #000;
}

.gallery h2 {
  color: #FFFDD0;
  font-size: 28px;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

/* GRID */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 35px;
}

/* IMAGE BOX */
.img-box {
  height: 220px;
  background: #141414;
  color: #999;
  display: flex;
  align-items: center;
  border-radius: 40px;
  justify-content: center;
  cursor: pointer;
  /* border: 1px dashed #333; */
  font-size: 14px;
  transition: all 0.35s ease;
}

/* HOVER (premium touch) */
.img-box:hover {
  border-color: #c9a227;
  color: #c9a227;
  transform: translateY(-4px);
}

/* =========================
   TABLET
========================= */
@media (max-width: 1024px) {
  .gallery {
    padding: 50px 6%;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .img-box {
    height: 200px;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 600px) {
  .gallery {
    padding: 40px 5%;
  }

  .gallery h2 {
    font-size: 22px;
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .img-box {
    height: 180px;
    font-size: 13px;
  }
}

/* ================= CTA ================= */

.cta {
    /* background: black; */
    color: #EDEDED;
padding: 20px;
    line-height: 1.6;
    text-align: center;
    /* padding: 50px 10%; */
}

.cta h2 {
    color: #FFFDD0;
    padding: 10px;
}

.cta p {
    color: #CFCFCF;
}

.vedam-bottom {
  max-width: 1450px;
  margin: 0 auto;

  padding: 0 40px;   /* 👈 LEFT + RIGHT SPACE */

  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 30px;
}
.vedam-footer {
  min-height: 70vh;
  padding: 50px 40px 180px;
  font-family: 'Poppins', sans-serif;
  color: #FFFDD0;
  position: relative;
}

/* CENTER CONTENT */
.vedam-center {
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

.vedam-center h2 {
  font-size: 30px;
  letter-spacing: 4px;
  font-weight: 500;
  margin-bottom: 35px;
}

.vedam-center p {
  font-size: 16px;              /* thoda control */
  line-height: 1.6;
  text-align: justify;
  letter-spacing: 2px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

/* BOTTOM AREA */
.vedam-bottom {
 
  bottom: 35px;
  left: 70px;
  right: 70px;

  max-width: 1450px;;
  margin: 0 auto;

  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.vedam-left {
  font-size: 12px;
  line-height: 1.8;
}

/* SOCIAL */
.vedam-social-wrap {
  text-align: right;
}

.vedam-social {
  display: flex;
  gap: 20px;
 
  justify-content: flex-end;
}

.vedam-social a  {
  font-size: 26px;
  cursor: pointer;
   color: #FFFDD0;
  animation: dance 2.8s infinite ease-in-out;
}

/* Dancing delay */
.vedam-social i:nth-child(2) { animation-delay: .3s; }
.vedam-social i:nth-child(3) { animation-delay: .6s; }
.vedam-social i:nth-child(4) { animation-delay: .9s; }

/* Hover */
.vedam-social i:hover {
  transform: scale(1.15);
  transition: 0.3s;
}

/* COPYRIGHT */
.vedam-copy {
  margin-top: 10px;
  font-size: 11px;
  letter-spacing: 1px;
  line-height: 1.6;
  opacity: 0.8;
}

/* ANIMATION */
@keyframes dance {
  0%   { transform: translateY(0) rotate(0deg); }
  25%  { transform: translateY(-6px) rotate(-5deg); }
  50%  { transform: translateY(0) rotate(5deg); }
  75%  { transform: translateY(6px) rotate(-3deg); }
  100% { transform: translateY(0) rotate(0deg); }
}

/* ===================== */
/* RESPONSIVE */
/* ===================== */

@media (max-width: 1024px) {
  .vedam-center p {
    font-size: 17px;
    letter-spacing: 2px;
  }
}

@media (max-width: 768px) {
  .vedam-footer {
    padding: 60px 20px 40px;
  }

  .vedam-bottom {
    position: static;
    margin-top: 80px;
    flex-direction: column;
    gap: 25px;
    align-items: center;
    text-align: center;
  }

  .vedam-social-wrap {
    text-align: center;
  }

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

  .vedam-center h2 {
    font-size: 20px;
    letter-spacing: 2px;
  }

  .vedam-center p {
    font-size: 15px;
    line-height: 2;
    letter-spacing: 1.5px;
  }

  .vedam-social i {
    font-size: 22px;
  }
}

@media (max-width: 480px) {
  .vedam-center p {
    font-size: 14px;
    line-height: 2;
  }

  .vedam-left {
    font-size: 11px;
  }
}
.vedam-bottom {
  margin-bottom: 20px;  /* 👈 niche ka gap */
}

.seo-keywords {
  display: flex;
  /* margin-top: 10px; */
  max-width: 1200px;
  margin: auto;
  padding: 40px 30px;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: nowrap;
  /* border-top: 1px solid rgba(255,255,255,0.08); */
}

/* EACH COLUMN */
.seo-col {
  flex: 1;
  min-width: 180px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* LINKS */
.seo-col a {
  font-size: 13px;
  font-weight: 400;
  color: #bdbdbd;
  text-decoration: none;
  line-height: 1.6;
  transition: all 0.25s ease;
  position: relative;
  padding-left: 14px;
  white-space: normal;
}

/* DOT BEFORE LINK */
.seo-col a::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #c9a45c;
  font-size: 14px;
}

/* HOVER EFFECT */
.seo-col a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

/* HOVER DOT */
.seo-col a:hover::before {
  color: #ffffff;
}

/* ================= RESPONSIVE ================= */

/* LAPTOP / SMALL DESKTOP */
@media (max-width: 1200px) {
  .seo-keywords {
    gap: 25px;
  }
}

/* TABLET */
@media (max-width: 992px) {
  .seo-keywords {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .seo-col {
    width: 33.333%;
  }
}

/* LARGE MOBILE */
@media (max-width: 768px) {
  .seo-col {
    width: 50%;
  }
}

/* SMALL MOBILE */
@media (max-width: 480px) {
  .seo-keywords {
    padding: 30px 15px;
  }

  .seo-col {
    width: 100%;
  }

  .seo-col a {
    font-size: 14px;
  }
}


.footer-wrap {
  display: flex;
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 40px;
  gap: 90px;
  color: #fff;
  flex-wrap: wrap;
}

/* =========================
   LEFT MENU / TABS
========================= */
.footer-left {
  width: 280px;
  flex-shrink: 0;
}

.footer-nav {
  list-style: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-nav li {
  padding: 15px 18px;
  cursor: pointer;
  font-size: 14px;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.35s ease;
}

.footer-nav li:last-child {
  border-bottom: none;
}

.footer-nav li:hover {
  background: rgba(201, 162, 39, 0.15);
  color: #c9a227;
}

.footer-nav li.active {
  background: linear-gradient(90deg, #c9a227, #e2c15c);
  color: #000;
  font-weight: 600;
}

/* =========================
   RIGHT CONTENT
========================= */
.footer-right {
  flex: 1;
  gap: 20px;

}

.footer-right h3 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 30px;
  line-height: 1.5;
  color: #f1f1f1;
}

/* =========================
   LINK COLUMNS
========================= */
.columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0px;
}

.columns ul {
  list-style: none;
  padding: 0;
}

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

.columns ul li a {
  color: #cfcfcf;
  font-size: 14px;
  line-height: 1.7;
  text-decoration: none;
  position: relative;
  padding-bottom: 2px;
  transition: all 0.3s ease;
}

.columns ul li a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 1px;
  background: #c9a227;
  transition: width 0.3s ease;
}

.columns ul li a:hover {
  color: #c9a227;
}

.columns ul li a:hover::after {
  width: 100%;
}

/* =========================
   TAB ANIMATION
========================= */
.tab-box {
  display: none;
  animation: fadeUp 0.6s ease;
}

.tab-box.active {
  display: block;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   MEDIA QUERIES (RESPONSIVE)
========================= */

/* Large Tablets / Small Laptops */
@media (max-width: 1024px) {
  .footer-wrap {
    flex-direction: column;
    padding: 50px 30px;
    gap: 35px;
  }

  .footer-left {
    width: 100%;
  }

  .columns {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .footer-right h3 {
    font-size: 18px;
    margin-bottom: 25px;
  }

  .columns ul li a {
    font-size: 13px;
  }
}


/* Tablets */
@media (max-width: 768px) {
  .footer-wrap {
    padding: 40px 20px;
    gap: 25px;
  }

  .footer-left {
    width: 100%;
  }

  .footer-nav {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    background: none;
    border: none;
  }

  .footer-nav li {
    text-align: center;
    border-radius: 6px;
    background: #141414;
    border: 1px solid #2a2a2a;
    padding: 12px;
    font-size: 13px;
  }

  .footer-right h3 {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .columns {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .columns ul li a {
    font-size: 13px;
  }
}

/* Small Mobiles */
@media (max-width: 480px) {
  .footer-wrap {
    padding: 30px 15px;
    gap: 20px;
  }

  .footer-left {
    width: 100%;
  }

  .footer-nav li {
    padding: 10px;
    font-size: 12px;
  }

  .footer-right h3 {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .columns ul li a {
    font-size: 12px;
  }
}

/* Very Small Devices (320px) */
@media (max-width: 360px) {
  .footer-wrap {
    padding: 20px 10px;
    gap: 15px;
  }

  .footer-nav li {
    padding: 8px;
    font-size: 11px;
  }

  .footer-right h3 {
    font-size: 13px;
    margin-bottom: 12px;
  }

  .columns ul li a {
    font-size: 11px;
  }
}


/* =========================
   FAQ SECTION
========================= */
.faq-section {
  background: #000;
  padding: 60px 8%;
  max-width: 1100px;
  margin: 0 auto;
}

/* HEADING */
.faq-section h2 {
  text-align: center;
  color: #FFFDD0;
  font-size: clamp(22px, 4vw, 30px);
  margin-bottom: 35px;
  letter-spacing: 0.8px;
}

/* EACH FAQ ITEM */
.faq-item {
  border-bottom: 1px solid #222;
}

/* QUESTION BUTTON */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 0;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* PLUS ICON */
.faq-question span {
  color: #c9a227;
  font-size: 22px;
  transition: transform 0.3s ease;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  color: #cfcfcf;
  font-size: 15px;
  line-height: 1.7;
  transition: max-height 0.4s ease;
}

/* ACTIVE STATE */
.faq-item.active .faq-answer {
  max-height: 200px;
  margin-bottom: 15px;
}

.faq-item.active .faq-question span {
  transform: rotate(45deg);
}

/* MOBILE */
@media (max-width: 600px) {
  .faq-question {
    font-size: 15px;
  }
}

.float-buttons{
  position: fixed;
  right: 25px;
  bottom: 125px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  z-index: 9999;
}

/* Common Circle Style */
.float-btn{
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
}

/* WhatsApp */
.whatsapp{
  background: #25D366;

  color: #fff;
}

.whatsapp:hover{
  transform: translateY(-4px);
  box-shadow: 0 12px 25px rgba(0,0,0,0.35);
}
#phone{
  height: 20px;

}
/* Call */
.call{
  background: #1f4037;
  color: #fff;
}

.call:hover{
  transform: translateY(-4px);
  background: #16352d;
}

/* Scroll Button */
.scroll-top{
  background: #333;
  color: #fff;
  font-size: 22px;
}

.scroll-top:hover{
  transform: translateY(-4px);
  background: #000;
}

@media (max-width: 576px){
  .float-buttons{
    right: 15px;
    bottom: 25px;
    gap: 12px;
  }

  .float-btn{
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .float-btn i{
    font-size: 16px;
  }
}


.legal-links{
margin-top:10px;
}

.legal-links a{
color:#c9a45c;
text-decoration:none;
font-size:11px;
}

.legal-links a:hover{
text-decoration:underline;
color: #ffd47d;
}