* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: 'Poppins', sans-serif;
}

/* HEADER */
.navbar {
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(6px);
  padding: 8px 0;
}

.navbar-brand img {
  height: 55px;
}

/* MENU */
.navbar-nav {
  gap: 25px;
}

.nav-link {
  color: #fff !important;
  font-weight: 400;
  position: relative;
}

.nav-link.active {
  color: #C9A14A !important;
}

/* HOVER LINE */
.nav-link::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  background: #C9A14A;
  left: 0;
  bottom: -5px;
  transition: 0.3s;
}

.nav-link:hover::after {
  width: 100%;
}

/* DROPDOWN */
.dropdown-menu {
  background: #000;
  border: none;
}

.dropdown-item {
  color: #fff;
}

.dropdown-item:hover {
  background: #C9A14A;
  color: #000;
}

/* CTA BUTTON */
.btn-outline-gold {
  border: 1px solid #C9A14A;
  color: #fff;
  padding: 8px 18px;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

/* PREMIUM HOVER */
.btn-outline-gold:hover {
  background: #C9A14A;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(201, 161, 74, 0.4);
}

/* TOGGLER */
.custom-toggler {
  border: none;
  background: transparent;
}

.toggler-icon {
  display: block;
  width: 26px;
  height: 2px;
  background: #C9A14A;
  margin: 6px auto;
  transition: 0.3s;
}

.btn-close {
  filter: invert(74%) sepia(28%) saturate(500%) hue-rotate(5deg) brightness(95%) contrast(90%);
}

.custom-toggler.active .top-bar {
  transform: rotate(45deg) translate(5px, 5px);
}

.custom-toggler.active .middle-bar {
  opacity: 0;
}

.custom-toggler.active .bottom-bar {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* DESKTOP HOVER */
@media (min-width: 992px) {
  .navbar .dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
  }

  .dropdown-menu {
    display: none;
    transition: all 0.3s ease;
  }
}

/* OFFCANVAS */
.offcanvas {
  width: 270px;
  background: #000;
}

.text-gold {
  color: #C9A14A;
}

/* ============================================home page start =========================================== */

/* ============hero section start ============ */
/* ================= HERO SECTION START ================= */

.hbhero-sec {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background: #000;
}

/* VIDEO WRAP */

.hbhero-video-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hbhero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;

  opacity: 0;
  visibility: hidden;

  transition: opacity 1s ease;

  z-index: 1;
}

.hbhero-video.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

/* OVERLAY */

.hbhero-overlay {
  position: absolute;
  inset: 0;

  background: rgba(0, 0, 0, .45);

  z-index: 2;
}

/* CONTENT */

.hbhero-content {
  position: relative;
  z-index: 5;

  height: 100vh;

  display: flex;
  flex-direction: column;
  justify-content: center;

  max-width: 650px;

  color: #fff;
}

/* SUBTITLE */

.hbhero-subtitle {
  font-size: 16px;
  letter-spacing: 1px;

  font-weight: 500;

  margin-bottom: 18px;
}

/* TITLE */

.hbhero-content h1 {
  font-size: 50px;
  line-height: 1.05;

  font-weight: 600;

  margin-bottom: 35px;
}

/* BUTTON */

.hbhero-btn {
  width: fit-content;

  padding: 15px 34px;

  background: #C9A14A;

  color: #000;

  text-decoration: none;

  border-radius: 6px;

  font-weight: 600;

  transition: .4s;
}

/* HOVER */

.hbhero-btn:hover {
  background: #C9A14A;
  color: #fff;

  transform: translateY(-3px);
}



/* ================= HERO SECTION END ================= */


/* ============hero section end ============ */


/* ============Services section start ============ */

.lux-services-sec {
  padding: 70px 20px;
  background: #f8f5f1;
  overflow: hidden;
}

.lux-services-sec .container {
  max-width: 1200px;
  margin: auto;
}

.lux-head {
  margin-bottom: 50px;
}

.lux-head .sub-title {
  font-size: 16px;
  letter-spacing: 1px;
  color: #b9924e;
  display: block;
  margin-bottom: 15px;
  font-weight: 600;
}

.lux-head h2 {
  font-size: 68px;
  line-height: 1.1;
  color: #111;
  margin-bottom: 20px;
  font-family: serif;
  font-weight: 500;
}

.lux-head p {
  max-width: 700px;
  margin: auto;
  color: #555;
  font-size: 20px;
  line-height: 1.7;
}

/* Slider */
.lux-slider-wrap {
  position: relative;
}

.lux-slider {
  display: flex;
  gap: 30px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.lux-slider::-webkit-scrollbar {
  display: none;
}

/* Card */
.lux-card {
  min-width: 300px;
  flex: 0 0 auto;
}

.lux-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.lux-card {
  min-width: 320px;
  max-width: 320px;
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid #e9dcc6;
  position: relative;
  flex-shrink: 0;
  transition: .4s;

  display: flex;
  flex-direction: column;
}

.lux-img {
  height: 300px;
  overflow: hidden;
  position: relative;
}

.lux-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.lux-card:hover img {
  transform: scale(1.08);
}

/* Icon */
.lux-icon {
  width: 88px;
  height: 88px;
  background: #0d0d12;
  border-radius: 50%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 255px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c59d5f;
  font-size: 30px;
  border: 6px solid #fff;
}

/* Content */
.lux-content {
  padding: 70px 30px 35px;
  text-align: center;
}

.lux-content h3 {
  font-size: 40px;
  margin-bottom: 18px;
  color: #111;
  font-family: serif;
  font-weight: 500;
  letter-spacing: 1px;
}

.lux-content p {
  color: #666;
  line-height: 1.9;
  font-size: 17px;
  min-height: 120px;
}

/* Button */
.lux-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 35px;
  border: 1px solid #c59d5f;
  border-radius: 8px;
  text-decoration: none;
  color: #b9924e;
  font-weight: 600;
  margin-top: 10px;
  transition: .4s;
}

.lux-btn:hover {
  background: #111;
  color: #fff;
  border-color: #111;
}

/* Navigation */
.lux-nav {
  width: 55px;
  height: 55px;
  border: none;
  border-radius: 50%;
  background: #111;
  color: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
  transition: .3s;
}

.lux-nav:hover {
  background: #b9924e;
}

.lux-prev {
  left: -10px;
}

.lux-next {
  right: -10px;
}

/* View All */
.view-all-wrap {
  text-align: center;
  margin-top: 50px;
}

.view-all-btn {
  background: #0d0d12;
  color: #d7b16c;
  text-decoration: none;
  padding: 18px 45px;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  gap: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  transition: .4s;
}

.view-all-btn:hover {
  transform: translateY(-3px);
}

/* ============Services section start ============ */


/* ============Bridal section end ============ */

/* ===== HERO SECTION ===== */

.luxhero-section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  overflow: hidden;
}

/* ===== BACKGROUND IMAGE ===== */

.luxhero-bg {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(rgba(0, 0, 0, .68), rgba(0, 0, 0, .68)),
    url('./image/bridal.png');

  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  z-index: 1;
}

/* ===== HERO CONTENT ===== */

.luxhero-content {
  position: relative;
  z-index: 5;

  min-height: 100vh;

  display: flex;
  align-items: center;
  justify-content: center;

  text-align: center;

  color: #fff;
}

/* ===== TOP LINE ===== */

.luxhero-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;

  margin-bottom: 22px;
}

.luxhero-line span {
  width: 85px;
  height: 1px;

  background: #C9A14A;
}

.luxhero-line i {
  color: #C9A14A;
  font-size: 14px;
}

/* ===== SUBTITLE ===== */

.luxhero-subtitle {
  color: #C9A14A;

  font-size: 20px;
  letter-spacing: 4px;
  font-weight: 400;

  margin-bottom: 25px;
}

/* ===== HEADING ===== */

.luxhero-title {
  font-size: 50px;
  line-height: 1.1;

  font-family: serif;
  font-weight: 400;

  margin-bottom: 28px;
}

.luxhero-title span {
  color: #C9A14A;
}

/* ===== TEXT ===== */

.luxhero-text {
  max-width: 760px;

  margin: auto auto 45px;

  font-size: 20px;
  line-height: 1.7;

  color: #f2f2f2;
}

/* ===== BUTTON WRAP ===== */

.luxhero-btns {
  display: flex;
  justify-content: center;
  gap: 22px;
  flex-wrap: wrap;
}

/* ===== BUTTON ===== */

.luxhero-btn {
  min-width: 250px;

  padding: 17px 34px;

  border-radius: 6px;

  text-decoration: none;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  font-size: 19px;
  font-weight: 500;

  transition: .4s;
}

/* GOLD BUTTON */

.luxhero-btn.gold-btn {
  background: #C9A14A;
  color: #fff;
}

/* BORDER BUTTON */

.luxhero-btn.border-btn {
  border: 1px solid #C9A14A;
  color: #fff;
}

/* HOVER */

.luxhero-btn:hover {
  transform: translateY(-4px);

  background: #C9A14A;
  color: #fff;
}

/* ============Bridal section start ============ */

/* ============About  section start ============ */
.aboutlux-sec {
  padding: 100px 0;

  overflow: hidden;
}

/* IMAGE */

.aboutlux-img {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
}

.aboutlux-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 18px;

  transition: .5s;
}

.aboutlux-img:hover img {
  transform: scale(1.05);
}

/* GOLD BORDER EFFECT */

.aboutlux-img::before {
  content: "";
  position: absolute;

  inset: 0;

  border: 1px solid rgba(201, 161, 74, .35);

  border-radius: 18px;

  z-index: 2;
}

/* CONTENT */

.aboutlux-content {
  padding-left: 40px;
  color: #fff;
}

/* SUBTITLE */

.aboutlux-subtitle {
  color: #C9A14A;

  letter-spacing: 4px;

  font-size: 15px;
  font-weight: 500;

  margin-bottom: 15px;

  display: block;
}

/* TITLE */

.aboutlux-content h2 {
  font-size: 50px;
  line-height: 1.2;

  margin-bottom: 30px;

  font-weight: 600;

  color: #000000;
}

.aboutlux-content h2 span {
  font-weight: 700;
  color: #C9A14A;
}

/* TEXT */

.aboutlux-content p {
  font-size: 18px;
  line-height: 1.9;

  color: grey;

  margin-bottom: 28px;
}

/* LIST */

.aboutlux-list {
  list-style: none;
  padding: 0;
  margin: 0 0 35px;
}

.aboutlux-list li {
  color: grey;
  font-size: 18px;

  margin-bottom: 16px;

  display: flex;
  align-items: center;
  gap: 14px;
}

/* ICON */

.aboutlux-list i {
  color: #C9A14A;
  font-size: 14px;
}

/* BUTTON */

.aboutlux-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;

  background: #C9A14A;
  color: #000;

  padding: 16px 34px;

  text-decoration: none;

  border-radius: 6px;

  font-weight: 600;

  transition: .4s;
}

/* HOVER */

.aboutlux-btn:hover {
  background: #000000;
  color: #ffffff;

  transform: translateY(-3px);
}

/* ============About  section end ============ */

/* ============Testimonial  section start ============ */

.lux-testimonial-sec {
  padding: 0 0 70px 0;
  overflow: hidden;
  position: relative;
}

/* GOLD GLOW */

.lux-testimonial-sec::before {
  content: "";
  position: absolute;

  width: 400px;
  height: 400px;



  filter: blur(120px);

  top: -100px;
  left: -100px;
}

/* HEADING */

.lux-testimonial-head {
  text-align: center;
  margin-bottom: 60px;
}

.lux-testimonial-head span {
  color: #C9A14A;

  letter-spacing: 4px;
  font-size: 14px;
  font-weight: 500;

  display: block;
  margin-bottom: 12px;
}

.lux-testimonial-head h2 {
  color: #000000;
  font-size: 50px;
  font-weight: 600;
}

.lux-testimonial-head h2 strong {
  color: #C9A14A;
}

/* SLIDER */

.lux-testimonial-slider {
  display: flex;
  gap: 30px;

  animation: luxSlide 25s linear infinite;

  width: max-content;
}

/* AUTO SLIDE */

@keyframes luxSlide {

  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }

}

/* CARD */

.lux-testimonial-card {
  width: 420px;

  background: #111;

  border: 1px solid rgba(201, 161, 74, .18);

  border-radius: 24px;

  padding: 40px 35px;

  position: relative;

  overflow: hidden;

  transition: .4s;
}

/* HOVER */

.lux-testimonial-card:hover {
  transform: translateY(-8px);

  border-color: #C9A14A;
}

/* QUOTE */

.lux-quote {
  width: 65px;
  height: 65px;

  border-radius: 50%;

  background: #C9A14A;

  display: flex;
  align-items: center;
  justify-content: center;

  color: #000;
  font-size: 24px;

  margin-bottom: 25px;
}

/* TEXT */

.lux-testimonial-card p {
  color: #d6d6d6;

  font-size: 17px;
  line-height: 1.9;

  margin-bottom: 30px;
}

/* USER */

.lux-user {
  display: flex;
  align-items: center;
  gap: 18px;
}

/* IMAGE */

.lux-user img {
  width: 70px;
  height: 70px;

  border-radius: 50%;

  object-fit: cover;

  border: 2px solid #C9A14A;
}

/* NAME */

.lux-user h4 {
  color: #fff;
  margin-bottom: 6px;

  font-size: 20px;
}

/* POSITION */

.lux-user span {
  color: #C9A14A;
  font-size: 14px;
}

/* STARS */

.lux-stars {
  margin-top: 10px;
}

.lux-stars i {
  color: #C9A14A;
  margin-right: 4px;
}

/* ============Testimonial  section end ============ */


/* ============FAQ section START ============ */
.luxfaq-sec {
  padding: 100px 0;

  position: relative;
  overflow: hidden;
}

/* GLOW EFFECT */

.luxfaq-sec::before {
  content: "";
  position: absolute;

  width: 450px;
  height: 450px;

  background: rgba(201, 161, 74, .07);

  filter: blur(120px);

  top: -120px;
  right: -120px;
}

/* HEADING */

.luxfaq-head {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  z-index: 2;
}

.luxfaq-head span {
  color: #C9A14A;

  letter-spacing: 1px;

  font-size: 20px;
  font-weight: 500;

  display: block;

  margin-bottom: 12px;
}

.luxfaq-head h2 {
  color: #000000;

  font-size: 50px;
  font-weight: 600;
}

.luxfaq-head h2 strong {
  color: #C9A14A;
}

/* ACCORDION */

.luxfaq-accordion {
  position: relative;
  z-index: 2;
}

/* ITEM */

.luxfaq-item {
  background: #111;

  border: 1px solid rgba(201, 161, 74, .18);

  border-radius: 18px;

  overflow: hidden;

  margin-bottom: 22px;

  transition: .4s;
}

/* ACTIVE */

.luxfaq-item.active {
  border-color: #C9A14A;
}

/* QUESTION */

.luxfaq-question {
  width: 100%;

  background: none;
  border: none;

  padding: 15px 30px;

  color: #fff;

  font-size: 18px;
  font-weight: 600;

  display: flex;
  align-items: center;
  justify-content: space-between;

  cursor: pointer;

  transition: .3s;
}

/* ICON */

.luxfaq-question i {
  color: #C9A14A;
  font-size: 18px;

  transition: .4s;
}

/* ROTATE */

.luxfaq-item.active .luxfaq-question i {
  transform: rotate(180deg);
}

/* ANSWER */

.luxfaq-answer {
  max-height: 0;
  overflow: hidden;

  transition: max-height .5s ease;

  padding: 0 30px;
}

/* ACTIVE ANSWER */

.luxfaq-item.active .luxfaq-answer {
  max-height: 400px;
  padding-bottom: 28px;
}

/* TEXT */

.luxfaq-answer p {
  color: #d6d6d6;

  font-size: 17px;
  line-height: 1.9;

  margin: 0;
}

/* HOVER */

.luxfaq-item:hover {
  transform: translateY(-3px);
}

/* ============FAQ section end ============ */

/* ============================================home page end =========================================== */





/* ============================================About Us page start =========================================== */
/* ======== hero section start =========== */


.hbstory-sec {
  padding: 110px 0;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

/* IMAGE */

.hbstory-img {
  position: relative;
}

.hbstory-img img {
  width: 100%;
  border-radius: 24px;
  object-fit: cover;
}

/* EXPERIENCE BOX */

.hbstory-exp {
  position: absolute;
  bottom: 30px;
  left: 30px;
  background: #C9A14A;
  padding: 22px 28px;
  border-radius: 16px;
  max-width: 220px;
}

.hbstory-exp h3 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #000;
}

.hbstory-exp p {
  margin: 0;
  color: #000;
  font-weight: 500;
  line-height: 1.4;
}

/* CONTENT */

.hbstory-content {
  padding-left: 30px;
}

/* SUBTITLE */

.hbstory-subtitle {
  color: #C9A14A;
  letter-spacing: 3px;
  font-size: 17px;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 18px;
}

/* HEADING */

.hbstory-content h2 {
  font-size: 38px;
  line-height: 1.15;
  font-weight: 700;
  color: #000;
  margin-bottom: 28px;
}

/* TEXT */

.hbstory-content p {
  color: #000;
  font-size: 16px;
  line-height: 1.9;
  margin-bottom: 20px;
}

/* FEATURES */

.hbstory-features {
  margin-top: 35px;
}

.hbstory-feature {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 28px;
}

.hbstory-feature i {
  width: 55px;
  height: 55px;
  background: rgba(201, 161, 74, .12);
  border: 1px solid rgba(201, 161, 74, .3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #C9A14A;
  font-size: 20px;
  flex-shrink: 0;
}

.hbstory-feature h5 {
  color: #000;
  font-size: 18px;
  margin-bottom: 6px;
}

.hbstory-feature p {
  margin: 0;
  color: #000;
  font-size: 14px;
}

/* BUTTON */

.hbstory-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 16px 34px;
  background: #C9A14A;
  color: #000;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  transition: .4s;
}

.hbstory-btn:hover {
  background: #000000;
  color: #ffffff;
  transform: translateY(-3px);
}

/* ======== hero section end =========== */


/* ======== founder section start =========== */

.hbfounder-sec {
  padding: 110px 0;
  background: #fff;
  overflow: hidden;
  font-family: 'Poppins', sans-serif;
}

/* CONTENT */

.hbfounder-content h2 {
  font-size: 48px;
  font-weight: 700;
  color: #000;
  margin-bottom: 10px;
}

.hbfounder-content h5 {
  font-size: 24px;
  font-weight: 500;
  color: #C9A14A;
  margin-bottom: 25px;
}

.hbfounder-content p {
  font-size: 17px;
  line-height: 1.9;
  color: #444;
  margin-bottom: 20px;
}

/* IMAGE */

.hbfounder-img-wrap {
  position: relative;
  width: fit-content;
  margin-left: auto;
}


.hbfounder-img {
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.hbfounder-img img {
  width: 100%;
  max-width: 420px;
  object-fit: cover;
  transition: .5s;
}

.hbfounder-img img:hover {
  transform: scale(1.05);
}

/* ======== founder section end =========== */

/* ============================================About Us page end =========================================== */




/* ========== footer section start ============ */
#hb-footer {
  background: #0a0a0a;
  color: #fff;
}

/* ── GOLD PALETTE ── */
.text-gold {
  color: #c9923a !important;
}

.border-gold {
  border-color: #c9923a44 !important;
}

.bg-gold {
  background-color: #c9923a !important;
}

.btn-gold-outline {
  border: 1px solid #c9923a;
  color: #c9923a;
  background: transparent;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  padding: 9px 22px;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}

.btn-gold-outline:hover {
  background: #c9923a;
  color: #fff;
}

/* ── DIVIDERS ── */
.divider-dark {
  border-color: #2a2a2a;
  opacity: 1;
}

.divider-gold {
  border-color: #c9923a44;
  opacity: 1;
}

/* ── TOP SECTION ── */
.hb-top {
  border-bottom: 1px solid #2a2a2a;
}

.hb-col {
  padding: 30px 22px;
}

.hb-col-border {
  border-right: 1px solid #2a2a2a;
}

.hb-col-border img {
  width: 100px;
}

/* BRAND */
.hb-brand-luxury {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 4px;
  color: #c9923a;
}

.hb-brand-name {
  font-size: 30px;
  font-weight: 700;
  color: #c9923a;
  line-height: 1;
}

.hb-brand-tag {
  font-size: 8.5px;
  letter-spacing: 3px;
  color: #777;
}

.hb-brand-line {
  height: 1px;
  background: #c9923a44;
  width: 80px;
  margin: 10px 0;
}

.hb-services {
  font-size: 15px;
  color: #c9923a;
}

.hb-slogan {
  font-style: italic;
  font-size: 15px;
  color: #c9923a;
}

.hb-desc {
  font-size: 15px;
  color: #888;
  line-height: 1.7;
}

/* BADGE */
.hb-badge-wrap {
  border-top: 1px solid #2a2a2a;
  padding-top: 14px;
}

.hb-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.hb-badge i {
  font-size: 18px;
  color: #c9923a;
}

.hb-badge-label {
  font-size: 15px;

  color: #777;
  text-align: center;

  text-transform: uppercase;
}

/* NAV ITEMS */
.hb-col-title {
  font-size: 15px;
  font-weight: 800;
  color: #c9923a;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.hb-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid #1a1a1a;
}

.hb-nav-item a {
  text-decoration: none;
}

.hb-nav-item:last-child {
  border-bottom: none;
}

.hb-nav-icon {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid #c9923a44;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hb-nav-icon i {
  font-size: 18px;
  color: #c9923a;
}

.hb-nav-text {
  font-size: 15px;
  color: #ccc;
}

/* SOCIAL */
.hb-social-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid #1a1a1a;
}

.hb-social-item:last-child {
  border-bottom: none;
}

.hb-social-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid #c9923a44;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hb-social-icon i {
  font-size: 14px;
  color: #c9923a;
}
.hb-social-item a {
  text-decoration: none;
}
.hb-social-text {
  font-size: 15px;
  color: #ccc;
}

.hb-tagline {
  border-top: 1px solid #2a2a2a;
  padding-top: 14px;
}

.hb-tagline i {
  font-size: 17px;
  color: #c9923a;
  vertical-align: -2px;
  margin-right: 4px;
}

.hb-tagline p {
  font-size: 15px;
  color: #888;
  line-height: 2;
  margin: 0;
}

/* LOGO SVG */
.hb-logo-svg {
  width: 70px;
  height: 70px;
  margin-bottom: 4px;
}

/* ── MIDDLE ROW ── */
.hb-mid-sep {
  width: 1px;
  background: #2a2a2a;
}

/* GOOGLE */
.hb-g-letter {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hb-g-letter svg {
  width: 28px;
  height: 28px;
}

.hb-g-score {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.hb-g-stars {
  color: #f5a623;
  font-size: 18px;
  letter-spacing: 5px;
}

.hb-g-reviews {
  font-size: 14px;
  color: #888;
}
.revi a{
  text-decoration: none;
}
/* NEWSLETTER */
.hb-stay-title {
  font-size: 15px;
  font-weight: 700;
  color: #c9923a;
  text-transform: uppercase;
}

.hb-stay-desc {
  font-size: 15px;
  color: #888;
  line-height: 1.7;
}

.hb-email-input {
  background: #1a1a1a;
  border: 1px solid #333;
  border-right: none;
  color: #ccc;
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  padding: 10px 14px;
  outline: none;
  border-radius: 0;
}

.hb-email-input::placeholder {
  color: #555;
}

.hb-email-input:focus {
  background: #1a1a1a;
  border-color: #c9923a;
  color: #ccc;
  box-shadow: none;
}

.hb-sub-btn {
  background: #c9923a;
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  border-radius: 0;
  white-space: nowrap;
}

.hb-sub-btn:hover {
  background: #b07e2e;
  color: #fff;
}

/* ── STORES ── */
.hb-stores-title-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.hb-stores-title-row::before,
.hb-stores-title-row::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #c9923a44;
}

.hb-stores-title {
  font-size: 15px;
  font-weight: 800;
  color: #c9923a;
  text-transform: uppercase;
  white-space: nowrap;
}

.hb-store-sep {
  border-right: 1px solid #2a2a2a;
}

.hb-store-pin {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  border: 1px solid #c9923a66;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hb-store-pin i {
  font-size: 17px;
  color: #c9923a;
}

.hb-store-city {
  font-size: 15px;
  font-weight: 600;
  color: #c9923a;
  text-transform: uppercase;
}

.hb-store-addr {
  font-size: 15px;
  color: #888;
  line-height: 1.7;
}

.hb-store-phone i {
  font-size: 17px;
  color: #c9923a;
}

.hb-store-phone span {
  font-size: 15px;
  color: #aaa;
}

/* ── BOTTOM BAR ── */
.hb-bottom {
  background: #080808;
  border-top: 1px solid #2a2a2a;
}

.hb-bottom-sep {
  width: 1px;
  height: 14px;
  background: #333;
}

.hb-bottom-link {
  font-size: 15px;
  color: #888;
  text-decoration: none;
}

.hb-bottom-link:hover {
  color: #c9923a;
}

.hb-bottom-copy {
  font-size: 15px;
  color: #888;
}

.hb-bottom-brand {
  font-size: 15px;
  color: #c9923a;
}

.hb-bottom-brand a {
  text-decoration: none;
  color: #c9923a;

}


/* ========== footer section end ============ */
/* MOBILE */
@media(max-width:768px) {
  .subscribe {
    flex-direction: column;
    gap: 12px;
    border-radius: 0;
  }

  .subscribe input,
  .subscribe button {
    width: 100%;
    border-radius: 10px;
  }

  /* ============================================home page start =========================================== */
  /* ============hero section start ============ */

  .hbhero-content h1 {
    font-size: 34px;
  }

  /* ============hero section end ============ */


  /* ============services section start ============ */
  .lux-services-sec {
    padding: 70px 15px;
  }

  .lux-head h2 {
    font-size: 30px;
  }

  .lux-head p {
    font-size: 15px;
    line-height: 1.7;
  }



  .lux-img {
    height: 260px;
  }

  .lux-icon {
    top: 215px;
    width: 75px;
    height: 75px;
    font-size: 24px;
  }

  .lux-content {
    padding: 60px 22px 30px;
  }

  .lux-content h3 {
    font-size: 32px;
  }

  /* ============services section end ============ */

  /* ============Bridal section start ============ */

  .luxhero-section {
    min-height: 100vh;
  }

  /* MOBILE IMAGE FULL SHOW */

  .luxhero-bg {

    background-size: cover;

    background-position: 72% center;

    background-repeat: no-repeat;
  }

  .luxhero-content {
    padding: 120px 15px 90px;
  }

  .luxhero-line span {
    width: 50px;
  }

  .luxhero-subtitle {
    font-size: 13px;
    letter-spacing: 2px;
  }

  .luxhero-title {
    font-size: 25px;
    line-height: 1.2;
  }

  .luxhero-text {
    font-size: 17px;
    line-height: 1.8;
  }

  .luxhero-btn {
    width: 100%;
    min-width: 100%;

    padding: 15px 20px;

    font-size: 16px;
  }

  /* ============Bridal section end ============ */


  /* ============About section start ============ */
  .aboutlux-sec {
    padding: 70px 0;
  }

  .aboutlux-content h2 {
    font-size: 25px;
  }

  .aboutlux-content p {
    font-size: 16px;
    line-height: 1.8;
  }

  .aboutlux-list li {
    font-size: 16px;
  }

  .aboutlux-btn {
    width: 100%;
    justify-content: center;
  }

  .aboutlux-sec {
    padding: 70px 0;
  }

  .aboutlux-content h2 {
    font-size: 30px;
  }

  .aboutlux-content p {
    font-size: 16px;
    line-height: 1.8;
  }

  .aboutlux-list li {
    font-size: 16px;
  }

  .aboutlux-btn {
    width: 100%;
    justify-content: center;
  }

  /* ============About section end ============ */


  /* ============Testimonial  section start ============ */

  .lux-testimonial-sec {
    padding: 0 0 0 0;
  }

  .lux-testimonial-head h2 {
    font-size: 30px;
  }

  .lux-testimonial-card {
    width: 320px;
    padding: 30px 25px;
  }

  .lux-testimonial-card p {
    font-size: 15px;
  }

  /* ============Testimonial  section end ============ */
  /* ============faq  section START ============ */

  .luxfaq-sec {
    padding: 70px 0;
  }

  .luxfaq-head h2 {
    font-size: 30px;
  }

  .luxfaq-question {
    font-size: 17px;
    padding: 20px;
  }

  .luxfaq-answer {
    padding: 0 20px;
  }

  .luxfaq-answer p {
    font-size: 15px;
  }

  /* ============faq  section end ============ */
  /* ============================================home page end =========================================== */

  /* ============================================ About us page start =========================================== */

  /* ==== hero section start ===== */
  .hbabout-banner {

    height: 280px;

    background-position: center;
  }

  .hbabout-content h1 {

    font-size: 48px;
  }

  .hbstory-content h2 {
    font-size: 30px;
  }

  /* ==== hero section end ===== */



  /* ==== about  section start ===== */
  .hbfounder-content h2 {
    font-size: 32px;
  }

  .hbfounder-content p {
    font-size: 15px;
  }



  /* ==== about  section end ===== */
  /* ============================================ About us page end =========================================== */

}














/* MOBILE */
@media (max-width: 991px) {

  .nav-link::after {
    display: none;
  }

  .offcanvas .navbar-nav {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    gap: 1px;
  }

  .offcanvas .nav-item {
    width: 100%;
  }

  .offcanvas .nav-link {
    width: 100%;
    padding: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .offcanvas .dropdown-menu {
    position: static;
    display: none;
    background: transparent;
    border: none;
    padding-left: 15px;
  }

  .offcanvas .dropdown-item {
    color: #ccc;
    padding: 8px 0;
  }

  /* ============================================home page start =========================================== */
  /* ============hero section start ============ */
  .hbhero-sec {
    height: 85vh;
  }

  .hbhero-video {
    object-position: center;
  }

  .hbhero-content {
    align-items: center;
    text-align: center;

    max-width: 100%;
  }

  .hbhero-content h1 {
    font-size: 30px;
    line-height: 1.15;
  }

  .hbhero-subtitle {
    font-size: 12px;
    letter-spacing: 2px;
  }

  .hbhero-btn {
    padding: 14px 24px;
    font-size: 14px;
  }

  /* ============hero section end ============ */


  /* ============services section start ============ */
  .lux-head h2 {
    font-size: 35px;
    font-weight: 600;
  }

  .lux-head p {
    font-size: 17px;
  }

  .lux-card {
    min-width: 300px;
    max-width: 300px;
  }

  /* ============services section end ============ */


  /* ============Bridal section start ============ */
  .luxhero-title {
    font-size: 40px;
  }

  .luxhero-text {
    font-size: 24px;
  }

  .luxhero-bg {
    background-position: 72% center;
  }

  /* ============Bridal section end ============ */


  /* ============About  section start ============ */

  .aboutlux-content {
    padding-left: 0;
    padding-top: 40px;
  }

  .aboutlux-content h2 {
    font-size: 42px;
  }

  /* ============About  section end ============ */
  /* ============================================home page end =========================================== */


  /* ============================================ About us page start =========================================== */
  .hbabout-banner {

    height: 240px;

    padding: 0 15px;
  }

  .hbabout-content h1 {

    font-size: 34px;
  }

  .hbabout-breadcrumb {

    gap: 8px;
  }


  /* ======= founder section start ======== */
  .hb-col-border {
    border-right: none;
    border-bottom: 1px solid #2a2a2a;
  }

  .hb-mid-sep {
    display: none;
  }

  .hb-store-sep {
    border-right: none;
    border-bottom: 1px solid #2a2a2a;
    padding-bottom: 16px;
    margin-bottom: 16px;
  }

  /* ======= founder section END ======== */
  /* ============================================ About us page end =========================================== */

}