* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
    /* background: #FFF9F0; */
    /* background: black; */
      caret-color: transparent;
}


/*  */
body {
  background: black;
  font-family: "Poppins", sans-serif;
}


/* ================= HEADER ================= */
.header {
  background: black;               /* original background */
 /* 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;
  }
}








/* ===== POPUP OVERLAY ===== */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.55);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px; /* small devices safety */
}

/* ===== POPUP BOX ===== */
.popup-box {
  background:black;
  width: 100%;
  max-width: 1100px;
  max-height: 90vh;              /* 👈 IMPORTANT */
  display: flex;
  position: relative;
  overflow: hidden;              /* 👈 CUT ISSUE FIX */
  border-radius: 12px;
}

/* CLOSE */
.popup-close {
  position: absolute;
  top: 16px;
  left: 16px;
  color: red;
  font-size: 20px;
  cursor: pointer;
  z-index: 10;
}

/* ===== LEFT ===== */
.popup-left {
  width: 50%;
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  overflow-y: auto;              /* 👈 TEXT NEVER CUT */
}

/* SMALL TITLE */
.popup-small {
  letter-spacing: 3px;
  color:#FFF8DC;
  font-size: 20px;
  font-weight: 600;
  font-family: 'Cinzel', serif;
  margin-bottom: 30px;
  text-align: center;
}

/* CONTENT CARD */
.popup-content {
  border: 2px solid #bfae95;
  border-radius: 10px;
  background-color: #FFFCF8;
  padding: 40px;
  box-shadow:
    0 10px 25px rgba(0, 0, 0, 0.18),
    0 4px 8px rgba(0, 0, 0, 0.12);
}

/* HEADING */
.popup-content h2 {
  text-align: center;
  letter-spacing: 3px;
  font-size: 21px;
  line-height: 1.6;
  font-family: 'Cinzel', serif;
  color: #6b5c45;
    background-color: #FFFCF8;
}

/* ===== RIGHT IMAGE ===== */
.popup-right {
  width: 50%;
  min-height: 100%;
}

.popup-right img {
  width: 100%;
  height: 100%;
  object-fit: contain;           /* 👈 FULL IMAGE ALWAYS */
  background: #f5efe6;
}

/* ===================== */
/* TABLET */
/* ===================== */
@media (max-width: 1024px) {

  .popup-box {
    flex-direction: column;
    max-height: 95vh;
  }

  .popup-left,
  .popup-right {
    width: 100%;
  }

  .popup-left {
    padding: 40px;
  }

  .popup-right {
    height: 300px;
  }

  .popup-content h2 {
    font-size: 18px;
    letter-spacing: 2px;
  }
}

/* ===================== */
/* MOBILE */
/* ===================== */
@media (max-width: 767px) {

  .popup-box {
    max-height: 95vh;
  }

  .popup-left {
    padding: 25px;
  }

  .popup-small {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .popup-content {
    padding: 25px;
  }

  .popup-content h2 {
    font-size: 15px;
    letter-spacing: 1.5px;
  }

  .popup-right {
    height: 220px;
  }
}






/* ================= HERO VIDEO ================= */
.hero {
  width: 100%;
  height: calc(100vh - 80px); /* same as before */
  
  /* GAP */
  margin-top: 90px;  /* 👈 add space for fixed header */
  padding: 15px;
}

.hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}





/* next section slider part ---------------------------------------------------------- */

/* ================= SLIDER SECTION ================= */
.slider-section {
  text-align: center;
  padding: 40px 20px;
}

.slider-section h1 {
  font-size: 28px;
  padding: 10px;
  letter-spacing: 2px;
  margin-bottom: 10px;
  color: #FFFDD0;
  font-weight: 600;
  line-height: 1.3;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
  .slider-section h1 {
    font-size: 24px;
    letter-spacing: 1.5px;
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .slider-section h1 {
    font-size: 20px;
    padding: 8px;
    letter-spacing: 1px;
    text-align: center;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .slider-section h1 {
    font-size: 24px;
    padding: 6px;
  }
}

.slider-section p {
  max-width: 1200px;
  margin: 0 auto 20px;
  text-align: left;
  font-size: 16px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  line-height: 1.8;
  color: #FFFDD0;
   
   margin-bottom: 80px;
  letter-spacing: 2px;
}




/* ================= SLIDER ================= */
.slider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  max-width: 1400px;
  margin: 0 auto;
  padding: 40px 0;
}

.slides {
  display: flex;
  transition: transform 0.7s ease-in-out;
}

.slide {
  flex: 0 0 320px;        /* default card width */
  height: 280px;          /* default card height */
  margin: 0 15px;
  transition: transform 0.7s ease, filter 0.7s ease, opacity 0.7s ease, box-shadow 0.7s ease;
  opacity: 0.6;
  filter: blur(1.5px);
  border-radius: 25px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  background-color: #fff;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 25px;
  transition: transform 0.7s ease;
}

/* Active Slide */
.slide.active {
  transform: scale(1.3) rotateY(0deg);
  opacity: 1;
  filter: blur(0);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  z-index: 2;
}

.slide:hover {
  transform: scale(1.15);
  opacity: 0.95;
  filter: blur(0);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

/* ================= DOTS ================= */
.dots {
  text-align: center;
  margin-top: 20px;
}

.dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background-color: #ccc;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.dot.active {
  background-color: #5a4a3f;
}

/* ================= ARROWS ================= */
.arrow {
  font-size: 30px;
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  color: #5a4a3f;
  user-select: none;
  background: rgba(255, 255, 255, 0.7);
  padding: 5px 10px;
  border-radius: 50%;
}

.left-arrow {
  left: 10px;
}

.right-arrow {
  right: 10px;
}

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


/* ================= TABLET (768px - 950px) ================= */
@media screen and (max-width: 950px) and (min-width: 768px) {
  .slider-section {
    padding: 35px 15px;
  }

  .slider-section h2 {
    font-size: 24px;
    padding: 8px;
    margin-bottom: 8px;
    letter-spacing: 1.5px;
  }

  .slider-section p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 25px;
  }
}

/* ================= MOBILE (480px - 767px) ================= */
@media screen and (max-width: 767px) and (min-width: 481px) {
  .slider-section {
    padding: 30px 12px;
  }

  .slider-section h2 {
    font-size: 20px;
    padding: 5px;
    margin-bottom: 5px;
     line-height: 2;
    letter-spacing: 0.5px;
  }

  .slider-section p {
    font-size: 14px;
    line-height: 2;
    letter-spacing: 0.5px;
    word-spacing: normal;
    text-align: justify; /* extra gaps removed */
    margin: 0;
    padding: 0;
  }
}

/* ================= SMALL DEVICES / PHONES (max 480px) ================= */
@media screen and (max-width: 480px) {
  .slider-section {
    padding: 25px 10px;
  }

  .slider-section h2 {
    font-size: 20px;
    padding: 5px;
    margin-bottom: 5px;
     line-height: 2;
    letter-spacing: 0.5px;
  }

  .slider-section p {
    font-size: 14px;
    line-height: 2;
    letter-spacing: 0.5px;
    word-spacing: normal;
    text-align: justify; /* extra gaps removed */
    margin: 0;
    padding: 0;
  }
}

/* ===== Desktop ≤1024px ===== */
@media screen and (max-width: 1024px) {

  .slider {
    overflow: hidden;
    padding: 30px 0;
  }

  .slides {
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.6s ease-in-out;
  }

  .slide {
    flex: 0 0 70%;          /* 👈 card width for tablet */
    max-width: 70%;
    height: 260px;
    margin: 0 auto;
    opacity: 0.5;
    filter: blur(1.2px);
    transform: scale(0.95);
    border-radius: 22px;
    transition: all 0.6s ease;
  }

  .slide.active {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
    box-shadow: 0 14px 30px rgba(0,0,0,0.35);
    z-index: 2;
  }

  .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 22px;
  }

  .slider-section h2 {
    font-size: 24px;
  }

  .slider-section p {
    font-size: 18px;
  }
}


/* ===== Tablet / Mobile ≤768px ===== */
/* ===== Mobile & Tablet ===== */
@media screen and (max-width: 768px) {

  .slider {
    overflow: hidden;
    padding: 20px 0;
  }

  .slides {
    display: flex;
    align-items: center;
    gap: 15px;
    transition: transform 0.5s ease-in-out;
  }

  .slide {
    flex: 0 0 85%;            /* 👈 CARD WIDTH */
    max-width: 85%;
    height: 220px;
    margin: 0 auto;
    opacity: 0.4;
    filter: blur(1.5px);
    transform: scale(0.92);
    border-radius: 20px;
    transition: all 0.5s ease;
  }

  .slide.active {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
    box-shadow: 0 12px 25px rgba(0,0,0,0.3);
    z-index: 2;
  }

  .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;       /* 👈 FULL CARD IMAGE */
    border-radius: 20px;
  }

  .arrow {
    font-size: 22px;
    padding: 4px 8px;
  }

  .dots {
    margin-top: 15px;
  }
}


/* ===== Small Mobile ≤480px ===== */
@media screen and (max-width: 480px) {

  .slider {
    padding: 15px 0;
  }

  .slide {
    flex: 0 0 92%;
    max-width: 92%;
    height: auto;                 
    aspect-ratio: 16 / 9;         
    margin: 0 auto;
    opacity: 0.45;
    filter: blur(1px);
    transform: scale(0.94);
    border-radius: 18px;
    transition: all 0.45s ease;
  }

  .slide.active {
    opacity: 1;
    filter: blur(0);
    transform: scale(1);
    box-shadow: 0 10px 22px rgba(0,0,0,0.28);
  }

  .slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;         /* 👈 CHANGED FROM 'contain' TO 'cover' */
    background: #f5efe6;      
    border-radius: 18px;
  }

  .arrow {
    font-size: 20px;
    padding: 3px 6px;
  }

  .dot {
    width: 10px;
    height: 10px;
  }
}





/* next third part  */




/* ================= NEXT SECTION THIRD ================= */
.projects {
  padding: 80px 8%;
}

.projects-container {
  display: flex;
  align-items: center;
  gap: 70px;
  flex-wrap: wrap;
}

/* ================= IMAGE BOX ================= */
.image-box {
  position: relative;
  flex: 1;
  cursor: pointer;
}

.image-box img {
  width: 100%;
  max-height: 400px;
  border-radius: 12px;
  display: block;
}

.preview-text {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(0,0,0,0.65);
  color: #fff;
  padding: 6px 14px;
  font-size: 12px;
  letter-spacing: 1px; /* reduce spacing */
  border-radius: 20px;
}

/* ================= CONTENT BOX ================= */
.content-box {
  flex: 1;
}

.content-box h4 {
  font-size: 25px;
  letter-spacing: 3px;
  color: #FFFDD0;
  margin-bottom: 20px;
}

.content-box p {
  font-size: 18px;
  line-height: 2.2;  /* reduced from 2.4 */
  color: #FFFDD0;
  max-width: 550px;
  text-align: justify;
  letter-spacing: 0.5px; /* extra spacing removed */
  word-spacing: normal;
  margin: 0;
}

/* ================= BUTTON ================= */
.btn {
  margin-top: 30px;
  padding: 12px 30px;
  background: #a57c1b;
  color: #fff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  letter-spacing: 1px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn:hover {
  background: #8f6312;
  transform: scale(1.05);
}

/* ================= MODAL ================= */
.image-modal {
  position: fixed;
  inset: 0;  /* top:0; bottom:0; left:0; right:0 */
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;      /* higher than header z-index */
  flex-direction: column;
}

.image-modal img {
   max-width: 90%;
  max-height: 85%;
  border-radius: 12px;
}

.close-arrow {
 position: fixed;         /* 👈 fixed relative to viewport */
  top: 20px;               /* distance from top */
  right: 25px;             /* distance from right */
  font-size: 34px;
  color: red;
  cursor: pointer;
  background: rgba(255,255,255,0.85); /* visible on any image */
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease;
  z-index: 2100;           
}

.close-arrow:hover {
  transform: scale(1.1);
  background: rgba(255,0,0,0.15);
}

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

/* ===== Tablet ≤1024px ===== */
@media (max-width: 1024px) {
  .content-box p {
    font-size: 16px;
    line-height: 2;
  }

  .btn {
    padding: 10px 25px;
  }
}

/* ===== Small tablet / large mobile ≤900px ===== */
@media (max-width: 900px) {
  .projects-container {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .content-box p {
    font-size: 14px;
    line-height: 1.8;
    max-width: 100%;
  }
}

/* ===== Mobile ≤768px: text first, image second ===== */
@media (max-width: 768px) {
  .projects-container {
    flex-direction: column;
  }

  .content-box {
    order: 1; /* text first */
    margin-bottom: 10px;
  }

  .image-box {
    order: 2; /* image second */
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .image-box img {
    max-width: 90%;
    height: auto;
    border-radius: 12px;
  }

  .content-box h4 {
    font-size: 22px;
  }

  .content-box p {
    font-size: 15px;
    line-height: 2;
    letter-spacing: 0.5px;
    word-spacing: normal;
    text-align: justify; /* extra gaps removed */
    margin: 0;
    padding: 0;
  }

  .btn {
    margin: 20px 0;
  }

  .preview-text {
    font-size: 11px; /* smaller on mobile */
    padding: 5px 10px;
  }
}


/* nextpart area image left to right text  1sr raw part & 3rd  */
 

/* ================= PROJECTS SECTION ================= */
.projects-alt {
  padding: 30px 8%;
}

.projects-container-alt {
  display: flex;
  align-items: center;
  gap: 70px;
  flex-wrap: wrap;
}

/* ================= IMAGE BOX ================= */
.image-box-alt {
  position: relative;
  flex: 1;
  cursor: pointer;
}

.image-box-alt img {
  width: 100%;
  border-radius: 12px;
  display: block;
   max-height: 400px;
}

.preview-text-alt {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(0,0,0,0.65);
  color: #fff;
  padding: 6px 14px;
  font-size: 12px;
  letter-spacing: 1px; /* reduce letter spacing */
  border-radius: 20px;
}

/* ================= CONTENT BOX ================= */
.content-box-alt {
  flex: 1;
}

.content-box-alt h4 {
  font-size: 25px;
  letter-spacing: 3px;
  color: #FFFDD0;
  margin-bottom: 20px;
}

.content-box-alt p {
  font-size: 18px;
  line-height: 2.2;  /* slightly reduced */
  color: #FFFDD0;
  max-width: 550px;
  text-align: justify;
  letter-spacing: 0.5px; /* space between words normalized */
  word-spacing: normal;
  margin: 0;
}

/* ================= BUTTON ================= */
.btn-alt {
  margin-top: 30px;
  padding: 12px 30px;
  background: #a57c1b;
  color: #fff;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  letter-spacing: 1px;
  transition: background 0.3s ease, transform 0.3s ease;
}

.btn-alt:hover {
  background: #8f6312;
  transform: scale(1.05);
}

/* ================= MODAL ================= */
.image-modal-alt {
  position: fixed;
  inset: 0;  /* top:0; bottom:0; left:0; right:0 */
  background: rgba(0,0,0,0.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;      /* higher than header z-index */
  flex-direction: column;
}

.modal-img-alt {
  max-width: 90%;
  max-height: 85%;
  border-radius: 12px;
}

/* CLOSE ARROW FIXED TO VIEWPORT */
.close-arrow-alt {
  position: fixed;         /* 👈 fixed relative to viewport */
  top: 20px;               /* distance from top */
  right: 25px;             /* distance from right */
  font-size: 34px;
  color: red;
  cursor: pointer;
  background: rgba(255,255,255,0.85); /* visible on any image */
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease, background 0.3s ease;
  z-index: 2100;           /* above modal and header */
}

.close-arrow-alt:hover {
  transform: scale(1.1);
  background: rgba(255,0,0,0.15);
}


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

/* ===== Tablet ≤1024px ===== */
@media (max-width: 1024px) {
  .content-box-alt p {
    font-size: 16px;
    line-height: 2;
  }
  .btn-alt {
    padding: 10px 25px;
  }
}

/* ===== Small tablet / large mobile ≤900px ===== */
@media (max-width: 900px) {
  .projects-container-alt {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .content-box-alt p {
    font-size: 14px;
    line-height: 1.8;
    max-width: 100%;
  }
}

/* ===== Mobile ≤768px: text first, image second ===== */
@media (max-width: 768px) {
  .projects-container-alt {
    flex-direction: column;
  }

  .content-box-alt {
    order: 1; /* text comes first */
    margin-bottom: 10px;
  }

  .image-box-alt {
    order: 2; /* image comes second */
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .image-box-alt img {
    max-width: 90%;
    height: auto;
    border-radius: 12px;
    
  }

  .content-box-alt h4 {
    font-size: 22px;
  }

  .content-box-alt p {
    font-size: 15px;
    line-height: 2;
    letter-spacing: 0.5px;
    word-spacing: normal;
    text-align: justify; /* extra gaps removed */
    margin: 0;
    padding: 0;
  }

  .btn-alt {
    margin: 20px 0;
  }

  .preview-text-alt {
    font-size: 11px; /* smaller on mobile */
    padding: 5px 10px;
  }
}


.vedam-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.vedam-bottom {
  position: absolute;
  bottom: 35px;
  left: 70px;
  right: 70px;
  max-width: 1450px;
  margin: 0 auto;

  display: flex;
  align-items: flex-end;
  gap: 30px;
}


/* footer part //////////////////////////////////////////*/

.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;
  letter-spacing: 2px;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
}

/* BOTTOM AREA */
.vedam-bottom {
  position: absolute;
  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;
  }
}



/* SEO KEYWORDS WRAPPER */
/* SEO KEYWORDS MAIN WRAPPER */
.seo-keywords {
  display: flex;
  /* margin-top: 10px; */
  max-width: 1200px;
  margin: auto;
  padding: 40px 20px;
  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
========================= */
/* =========================
   FOOTER WRAPPER
========================= */
.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;
  }
}

.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: 55px;
    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;
}


.faq-section {
  background: #000;
  padding: 60px 8%;
  max-width: 1400px;
  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;
  }
}