/* Default CSS */

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: var(--body-font);
}

body {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  font-family: var(--body-font);
  background-color: #ffffff;
  color: #00091f;
  margin: 0 auto;
  letter-spacing: 0.08em;
}

img {
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: var(--heading-font);
}

p {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  outline: none;
  border: none;
  font-weight: 500;
  -webkit-transition: color 350ms ease-in-out;
  transition: color 350ms ease-in-out;
}

a:focus,
a:hover {
  text-decoration: none;
  outline: none;
}

title {
  text-transform: capitalize;
}

:root {
  --heading-font: 'Neue Montreal';
  --body-font: 'Neue Montreal';
  --primary-color: #367bf5;
  --secondary-color: #f3aa18;
  --black-color: #000;
  --lightblack: #222222;
  --white-color: #fff;
  --darkgrey: #868686;
  --lightgrey: #636363;
  --green: #069697;
  --red: #ea3d2f;
  --gold: #928202;
}

.green {
  color: var(--green) !important;
}

.lightblack {
  color: var(--lightblack) !important;
}

.blue {
  color: var(--primary-color) !important;
}

.red {
  color: var(--red) !important;
}

.px-100 {
  padding-left: 100px !important;
  padding-right: 100px !important;
}

.btn-theme {
  background-color: #000000;
  color: #ffffff;
  border: none;
  padding: 18px 40px;
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  border-radius: 12px;
  display: inline-block;
  transition: background-color 0.3s ease, transform 0.3s ease;
  letter-spacing: 1px;
}

.btn-theme:hover {
  background: #8b7635;
  color: #ffffff;
  transform: translateY(-2px);
}

.sec-title {
  font-weight: 400;
  font-size: 2rem;
  color: #928202;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 16px;
}

@media (max-width: 1024px) {
  .btn-theme {
    padding: 16px 40px;
    font-size: 16px;
  }

  .sec-title {
    font-size: 1.6rem;
    line-height: 1.4;
  }
}

@media (max-width: 576px) {
  .btn-theme {
    padding: 14px 20px;
  }

  .sec-title {
    font-size: 1.4rem;
  }
}


/* Custom CSS Start */

.header-section {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 111;
}

.header-section .navbar .navbar-brand {
  margin: 0px;
  padding: 0px;
}

.header-section .navbar .container-fluid {
  align-items: flex-start;
}

.header-section .navbar {
  padding-top: 40px;
}

.header-section .navbar .nav-link {
  font-size: 20px;
  line-height: 24px;
  text-transform: uppercase;
  color: #000000;
  font-weight: 400;
  padding-left: 0px;
  padding-right: 0px;
  margin-left: 20px;
  margin-right: 20px;
  position: relative;
}

.header-section .navbar .nav-link::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -6px;
  width: 0;
  height: 0;
  border-bottom: 1.6px solid #000;
  transition: width 0.3s ease;
}

/* Hover state */
.header-section .navbar .nav-item .nav-link:hover::before,
.header-section .navbar .nav-item.active .nav-link::before,
.header-section .navbar .nav-link.active::before {
  width: calc(100% - 30px);
  margin: 0 auto;
}

.header-section .navbar .dropdown-menu {
  background-color: #ffffff;
  border: none;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.08);
  padding: 8px 0;
  min-width: 240px;
  margin-top: 0.5rem;
  z-index: 1111;
  position: relative;

}

.header-section .navbar .dropdown-item {
  color: #000000;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  font-weight: 400;
  padding: 12px 24px;
  transition: background-color 0.2s ease, color 0.2s ease;
}


.header-section .navbar .dropdown-item.active {
  background-color: transparent !important;
}

.header-section .navbar .dropdown-item:hover,
.header-section .navbar .dropdown-item:focus {
  background-color: transparent;
  color: #a19426;
}

.header-section .navbar .dropdown-toggle::after {
  display: inline-block;
  margin-left: 6px;
  vertical-align: middle;
  content: "\f078";
  font-family: "Font Awesome 7 Free";
  font-weight: 600;
  border: none;
  font-size: 18px;
  line-height: 18px;
  margin-top: -4px;
  transition: transform 0.3s ease;
}

.header-section .navbar .dropdown-toggle.show::after {
  transform: rotate(180deg);
}


/* Sticky header styles */
.header-section.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 111;
  background: #e5e5e4;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
  transition: all 0.25s ease;
}

.header-section.sticky .navbar {
  padding-top: 15px;
  padding-bottom: 15px;
}

.header-section .navbar .navbar-brand img {
  max-height: 140px;
  transition: max-height 0.25s ease;
}

.header-section.sticky .navbar .navbar-brand img {
  max-height: 100px;
}

body.header-offset {
  transition: padding-top 0.2s ease;
}

.header-section.sticky .navbar .container-fluid {
  align-items: center;
}

.banner-section .banner-content {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  padding: 0px 120px;
  z-index: 11;
}

.banner-section .banner-content h1 {
  color: #ffffff;
  font-size: 54px;
  line-height: 64px;
  font-weight: 500;
  margin-bottom: 40px;
  text-transform: capitalize;
  font-family: 'Helvetica World';
  letter-spacing: 2px;
}

.banner-section .banner-content .btn {
  background-color: #000000;
  color: #ffffff;
  border: none;
  padding: 18px 40px;
  font-size: 20px;
  font-weight: 400;
  text-transform: uppercase;
  border-radius: 12px;
  display: inline-block;
  transition: background-color 0.3s ease, transform 0.3s ease;
  letter-spacing: 1px;
}

.banner-section .banner-content .btn svg {
  width: 24px;
  height: 24px;
  margin-left: 10px;
  object-fit: contain;
  fill: #ffffff;
}


.banner-section .banner-content .btn:hover {
  background: #8b7635;
  color: #ffffff;
  transform: translateY(-2px);
}

.banner-section .banner-image {
  position: relative;
  width: 100%;
}

.banner-section .banner-image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.05) 0%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 1;
}

.banner-section .banner-image .bg-images {
  height: 100vh;
  width: 100%;
  object-fit: cover;
  object-position: center;
}

/* ── Cards ── */
.feature-banner-card {
  padding-top: 50px;
}

.feature-banner-card .feature-card {
  background: rgba(255, 255, 255, 0.13);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 34px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  color: #f0f0f0;
  transition: all 0.3s ease;
  min-width: 0;
}

.feature-banner-card .feature-card:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.32);
  transform: translateY(-3px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
}

/* Middle card — highlighted/active state */
.feature-banner-card .feature-card.active {
  background: rgba(240, 240, 240, 0.85);
  border-color: rgba(255, 255, 255, 0.55);
  color: #1a1a1a;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.28);
}

.feature-banner-card .feature-card.active:hover {
  background: rgba(255, 255, 255, 0.92);
  transform: translateY(-1px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.35);
}

/* Icon wrapper */
.feature-banner-card .card-icon {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: inherit;
  transition: var(--transition);
}

.feature-banner-card .feature-card.active .card-icon {
  border-color: rgba(0, 0, 0, 0.25);
}

/* Text block */
.feature-banner-card .card-body-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
  text-align: left;
}

.feature-banner-card .card-title {
  font-weight: 400;
  font-size: 24px;
  line-height: 32px;
  margin: 0;
}

/* Stars */
.feature-banner-card .star-row {
  display: flex;
  gap: 3px;
  margin-top: 2px;
}

.feature-banner-card .star-row i {
  font-size: 1.2rem;
  color: #d4d4d4;
}

/* Coin / pricing icon with arrows */
.feature-banner-card .icon-coin-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.feature-banner-card .icon-coin-wrapper i.arrow-down {
  font-size: 0.65rem;
  opacity: 0.75;
}


/* ── Section wrapper ── */
.wholesale-section {
  padding: 80px 0px;
  max-width: 100%;
  margin: 0 auto;
  text-align: left;
}

.wholesale-section.bg-gray {
  background-color: #e5e5e4;
}

/* .wholesale-section .container {
  max-width: 800px;
  margin: 0 auto;
} */

/* ── Heading ── */

.wholesale-section .sub-title {
  font-weight: 400;
  font-size: 1.25rem;
  color: #928202;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.3;
  margin-bottom: 22px;
}

.wholesale-inner-sec .ideal-for-list {
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
}

.wholesale-inner-sec .sec-title2 {
  font-weight: 400;
  font-size: 2rem;
  color: #000000;
  text-transform: uppercase;
  text-align: center;
  line-height: 2;
  margin-bottom: 16px;
}

.wholesale-inner-sec .ideal-for-list .ideal-list {
  list-style: none;
  padding: 0;
}

.wholesale-inner-sec .ideal-for-list .ideal-list li {
  position: relative;
  padding: 10px;
  margin-bottom: 14px;
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.75;
  background: #000000;
  color: #ffffff;
  text-align: center;
  border-radius: 40px;
}

/* ── Decorative divider ── */
.divider-line {
  display: block;
  width: 180px;
  height: 1.5px;
  background-color: #c9b96c;
  margin: 0 auto 48px;
}

/* ── Body copy ── */
.wholesale-section p {
  font-weight: 400;
  font-size: 16px;
  text-transform: uppercase;
  line-height: 1.85;
  color: #000000;
  text-align: justify;
  margin-bottom: 28px;
}

.wholesale-section p:last-of-type {
  margin-bottom: 28px;
}

/* ── CTA Buttons ── */
.btn-wholesale {
  display: block;
  width: 100%;
  max-width: 440px;
  margin: 0 auto 18px;
  padding: 20px 24px;
  background-color: #000000;
  color: #ffffff;
  font-weight: 400;
  font-size: 1rem;
  text-transform: uppercase;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  text-align: center;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.btn-wholesale:hover {
  background: #8b7635;
  color: #ffffff;
  transform: translateY(-2px);
}

.btn-wholesale:last-child {
  margin-bottom: 0;
}


/* ─── SECTION WRAPPER ─── */
.why-section {
  padding: 80px 40px;
  background: #e5e5e4
}

.why-heading {
  font-size: 2.4rem;
  font-weight: 400;
  color: #8b7635;
  text-transform: uppercase;
  line-height: 1.15;
  margin-bottom: 28px;
  font-family: 'Versailles';
}

.why-desc {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.75;
  color: #111111;
  text-align: justify;
  text-justify: inter-word;
  margin-bottom: 36px;
  max-width: 320px;
}

.btn-view {
  display: inline-block;
  background: #111111;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  padding: 15px 52px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.25s;
  transition: all 0.3s ease;
}

.btn-view:hover {
  background: #8b7635;
  color: #ffffff;
  transform: translateY(-2px);
}

.card-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

/* ─── INDIVIDUAL CARD ─── */
.feat-card {
  background: #ffffff;
  padding: 20px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.09),
    0 1px 4px rgba(0, 0, 0, 0.05);
  border: none;
  position: relative;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.feat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

/* Icon + Title row */
.card-header-row {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 20px;
}

.card-icon-wrap {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon-wrap svg {
  width: 100%;
  height: 100%;
}

/* Three-dot icon (Custom Color card) */
.dots-icon {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 6px;
  width: 46px;
  height: 46px;
  flex-shrink: 0;
}

.dots-icon span {
  display: block;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #111111;
}

.card-title-text {
  font-size: 1.4rem;
  font-weight: 400;
  text-transform: uppercase;
  line-height: 1.45;
  color: #111111;
  padding-top: 2px;
}

.card-desc-text {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.95;
  text-transform: uppercase;
  text-align: justify;
  text-justify: inter-word;
  color: #444444;
}

/* ───── Section wrapper ───── */
.why-section2 {
  padding: 80px 0px 0px;
  background-color: #ffffff;
}

/* ───── Heading ───── */
.why-title2 {
  font-family: 'Versailles';
  font-size: 2.4rem;
  font-weight: 400;
  text-transform: uppercase;
  color: #111111;
  text-align: center;
  margin-bottom: 20px;
}

.why-subtitle2 {
  font-size: 1rem;
  font-weight: 400;
  color: #333333;
  text-align: center;
  max-width: 660px;
  margin: 0 auto 52px;
  line-height: 1.65;
}

/* ───── Card ───── */
.feat-card2 {
  background-color: #e5e5e4;
  border: 0px;
  border-radius: 0px;
  padding: 20px;
  height: 100%;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.06);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.feat-card2:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

/* ───── Card top row: icon + title ───── */
.card-top2 {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 0px;
}

/* Icon box – outlined square */
.icon-box2 {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* .icon-box2 img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
} */

/* Title text */
.card-heading2 {
  font-size: 1.2rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #111111;
  line-height: 1.45;
  padding-bottom: 5px;
}

/* ───── Description ───── */
.card-desc2 {
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  color: #444444;
  line-height: 1.8;
  text-align: justify;
}

.card-desc2 ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.card-desc2 ul li::before {
  content: '• ';
  color: #111111;
}

/* Custom dots icon for Color Options */
.dots-icon2 {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.dot-circle2 {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background-color: #111111;
}

/* =========================================================
   CABINET PRODUCT SECTION
========================================================= */
.cabinet-product-section {
  width: 100%;
  padding: 80px 0px 50px;
}

/* =========================================================
   SECTION TITLE
========================================================= */

.cabinet-product-section .section-title {
  font-size: clamp(1.3rem, 2.8vw, 2rem);
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 14px;
  text-align: center;
}

.cabinet-product-section .divider {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 24px;
}

.cabinet-product-section .section-subtitle {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.13em;
  color: #000000;
  text-transform: uppercase;
  line-height: 1.85;
  margin: 0 auto 52px;
  text-align: center;
}

.cabinet-product-section .center-slider {
  position: relative;
}

/* Default slide */
.cabinet-product-section .center-slider .slick-slide {
  color: #FFF;
  height: 420px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(1);
  transition: all 0.4s ease-in-out;
}

.cabinet-product-section .center-slider .slick-slide.slick-current {
  transform: scale(1.02);
}

.cabinet-product-section .center-slider .slick-slide img,
.cabinet-product-section .center-slider .slick-slide[aria-hidden="true"]:not(.slick-cloned)~.slick-cloned[aria-hidden="true"] {
  transform: scale(1);
  transition: all 0.4s ease-in-out;
}

.cabinet-product-section .center-slider .slick-current.slick-active img {
  transform: scale(1.1);
  height: 300px;
}

.cabinet-product-section .center-slider .slick-slide img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  object-position: center;
}

/* =========================================================
   KNOB
========================================================= */
.cabinet-product-section .knob {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(185, 165, 115, 0.88);
  left: 50%;
  transform: translateX(-50%);
  bottom: 10px;
  transition: width 0.4s, height 0.4s, bottom 0.4s;
}

.cabinet-product-section .slick-center .knob {
  width: 11px;
  height: 11px;
  bottom: 14px;
}

/* =========================================================
   GRAIN
========================================================= */
.cabinet-product-section .grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)' opacity='0.045'/%3E%3C/svg%3E");
}

/* =========================================================
   LABEL
========================================================= */
.cabinet-product-section .label {
  margin-top: 6px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #181818;
  white-space: nowrap;
  transition: font-size 0.4s, color 0.3s, letter-spacing 0.3s;
  text-align: center;
}

.cabinet-product-section .center-slider .slick-slide.slick-current .label {
  margin-top: 18px;
}

.cabinet-product-section .slick-center .label {
  font-size: 1rem;
  color: #111;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-align: center;
}

/* =========================================================
   CUSTOM SLICK ARROWS
========================================================= */

.cabinet-product-section .slick-prev,
.cabinet-product-section .slick-next {
  width: 45px;
  height: 45px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: border-color 0.2s, box-shadow 0.2s;
  top: 50%;
  transform: translateY(-50%);
}

.cabinet-product-section .slick-prev {
  left: 45.5%;
  transform: translate(-108%, -50%);
}

.cabinet-product-section .slick-next {
  right: 45.5%;
  transform: translate(108%, -50%);
}

.cabinet-product-section .slick-prev::before,
.cabinet-product-section .slick-next::before {
  content: "";
  display: block;
  width: 28px;
  height: 28px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 1;
}

/* Previous Arrow */
.cabinet-product-section .slick-prev::before {
  /* background-image: url("../img/home/prev-arrow.png"); */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpolygon fill='%233f3f3f' points='10,0 0,12 10,24 10,16 24,16 24,8 10,8'/%3E%3C/svg%3E");
}

/* Next Arrow */
.cabinet-product-section .slick-next::before {
  /* background-image: url("../img/home/next-arrow.png"); */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpolygon fill='%233f3f3f' points='14,0 24,12 14,24 14,16 0,16 0,8 14,8'/%3E%3C/svg%3E");
}

.cabinet-product-section .slick-prev:hover::before,
.cabinet-product-section .slick-next:hover::before {
  color: var(--gold);
}

/* =========================================================
   SLICK DOTS
========================================================= */
.cabinet-product-section .slick-dots {
  bottom: -36px;
}

.cabinet-product-section .slick-dots li button::before {
  font-size: 8px;
  color: #ccc;
  opacity: 1;
}

.cabinet-product-section .slick-dots li.slick-active button::before {
  color: var(--gold);
  opacity: 1;
}

/* =========================================================
   SLIDER BOTTOM SPACING
========================================================= */
.cabinet-product-section .slider-wrap {
  padding: 0 60px;
  padding-bottom: 50px;
}

.about-heritage-section {
  position: relative;
  padding-bottom: 80px;
}

.about-heritage-section .about-heritage-desc {
  padding: 40px;
}

.about-heritage-section .about-heritage-desc h3 {
  font-size: 20px;
  line-height: 28px;
  text-transform: uppercase;
  padding-bottom: 40px;
}

.about-heritage-section .about-heritage-desc p {
  font-size: 15px;
  line-height: 24px;
  text-transform: uppercase;
  padding-bottom: 40px;
}

.about-heritage-section .about-heritage-desc .btn-theme {
  border-radius: 40px;
  font-size: 16px;
}

/* FCL Program Section */
.fcl-program-section {
  width: 100%;
  background-color: #e5e5e4;
  padding: 80px 0;
  text-align: center;
}

/* Grid */
.fcl-program-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 52px;
}

/* Card */
.fcl-program-section__card {
  background-color: #000000;
  color: #ffffff;
  border: none;
  padding: 44px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 190px;
  position: relative;
  overflow: hidden;
  cursor: default;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.22);
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.6s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.fcl-program-section__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
}

.fcl-program-section__card-text {
  font-weight: 400;
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 28px;
  text-align: center;
  position: relative;
  z-index: 1;
  margin-top: 10px;
}

/* Tagline */
.fcl-program-section .tagline {
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #000000;
  margin-top: 40px;
}

.wholesale-section .tagline2 {
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #000000;
  margin-top: 30px;
  text-align: center;
}


.industries-section .fcl-program-section__card {
  background-color: #ededec;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.01);
  flex-direction: column;
}

.industries-section .fcl-program-section__card img {
  height: 80px;
  object-fit: contain;
}

.industries-section .fcl-program-section__card-text {
  color: #000000;
}


/* === Responsive CSS Start === */


@media (max-width: 1600px) {

  .cabinet-product-section .slick-prev {
    left: 44%;
  }

  .cabinet-product-section .slick-next {
    right: 44%;
  }

  .header-section.px-100 {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }

  .header-section .navbar .nav-link {
    font-size: 18px;
    line-height: 24px;
  }

  .cabinet-product-section .center-slider .slick-slide {
    padding: 0px;
  }

  .cabinet-product-section .center-slider .slick-current.slick-active img {
    transform: scale(1.1);
    height: 280px;
  }

}

@media (max-width: 1440px) {
  .cabinet-product-section .section-subtitle {
    margin: 0 auto 24px;
  }

  .about-heritage-section .about-heritage-desc {
    padding: 24px;
  }

  .about-heritage-section .about-heritage-desc p {
    padding-bottom: 30px;
  }

  .about-heritage-section .about-heritage-desc h3 {
    padding-bottom: 20px;
  }

  .why-section2 {
    padding: 60px 0px 0px;
  }

  .about-heritage-section {
    padding-bottom: 60px;
  }

  .why-section {
    padding: 60px 20px;
  }

  .fcl-program-section,
  .wholesale-section {
    padding: 60px 0px;
  }

  /* 
  .industries-section .divider-line,
  .fcl-program-section .divider-line {
    margin: 0 auto 24px;
  } */

  .banner-section .banner-content h1 {
    font-size: 42px;
    line-height: 54px;
  }

  .feature-banner-card .feature-card {
    padding: 10px 10px;
    gap: 10px;
  }

  .feature-banner-card .card-icon img {
    height: 64px;
    object-fit: contain;
  }

  .fcl-program-section__grid {
    gap: 30px;
    margin-bottom: 0px;
  }

  .industries-section .fcl-program-section__card img {
    height: 80px;
    object-fit: contain;
  }

  .cabinet-product-section .center-slider .slick-slide {
    height: 360px;
  }

  .header-section .navbar .navbar-brand img {
    max-height: 110px;
  }

  .header-section.sticky .navbar .navbar-brand img {
    max-height: 90px;
  }

  .header-section.px-100 {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }

  .header-section .navbar .nav-link {
    font-size: 17px;
    line-height: 24px;
  }

  .header-section .navbar {
    padding-top: 30px;
  }

  .cabinet-product-section {
    padding: 60px 0px 40px;
  }
}


@media (max-width: 1400px) {

  .cabinet-product-section .center-slider .slick-current.slick-active img {
    transform: scale(1.1);
    height: 260px;
  }

}


@media (max-width: 1280px) {
  .header-section .navbar .nav-link {
    font-size: 16px;
    line-height: 24px;
    margin-left: 12px;
    margin-right: 12px;
  }
}

@media (max-width: 1200px) {
  .why-desc {
    max-width: 600px;
  }

  .why-section .btn-view {
    margin-bottom: 40px;

  }

  .feat-card,
  .feat-card2 {
    padding: 15px;
  }
}

@media (max-width: 1024px) {
  .fcl-program-section__card {
    padding: 32px 28px;
  }

  .industries-section .fcl-program-section__card img {
    height: 60px;
    object-fit: contain;
  }

  .about-heritage-section .about-heritage-desc .btn-theme {
    font-size: 16px;
  }

  .about-heritage-section .about-heritage-desc p {
    font-size: 14px;
    line-height: 24px;
    padding-bottom: 30px;
  }

  .about-heritage-section .about-heritage-desc h3 {
    padding-bottom: 10px;
    font-size: 18px;
  }

  .btn-wholesale {
    padding: 18px 24px;
  }

  .cabinet-product-section .slick-prev {
    left: 43%;
  }

  .cabinet-product-section .slick-next {
    right: 43%;
  }

  .banner-section .banner-content {
    padding: 0px 40px;
  }

  .header-section .navbar .navbar-brand img {
    max-height: 100px;
  }

  .header-section.sticky .navbar .navbar-brand img {
    max-height: 80px;
  }

  .header-section .navbar .nav-link {
    margin-left: 10px;
    margin-right: 10px;
  }

  .header-section .navbar .dropdown-item {
    font-size: 15px;
    line-height: 22px;
    padding: 8px 20px;
  }

  .header-section.px-100 {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .cabinet-product-section .center-slider .slick-current.slick-active img {
    transform: scale(1);
    height: 260px;
  }

  .about-heritage-section .about-heritage-desc {
    padding: 10px;
  }
}

@media (min-width: 992px) {
  .header-section .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
    right: 0;
    left: auto;
  }
}

@media (max-width: 991.98px) {
  .about-heritage-section .about-heritage-desc {
    padding: 40px 0 0;
  }

  .fcl-program-section__grid {
    gap: 15px;
  }

  .fcl-program-section__card {
    padding: 20px 20px;
    min-height: 160px;
  }

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

  .header-section .navbar-toggler {
    background-color: #fff;
    padding: 0.6rem 0.9rem;
  }

  .header-section .navbar .navbar-collapse {
    padding-top: 20px;
  }

  .header-section .navbar,
  .header-section.sticky .navbar {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }

  .wholesale-section p {
    margin-bottom: 20px;
  }

  .divider-line {
    margin: 0 auto 28px;
  }

  .header-section .navbar .nav-item .nav-link:hover::before,
  .header-section .navbar .nav-item.active .nav-link::before,
  .header-section .navbar .nav-link.active::before {
    width: 40px;
    margin: inherit;
    left: -10px;
    bottom: 0px;
    transform: inherit;
  }

  .header-section .navbar-toggler:focus {
    box-shadow: none;
  }

  .header-section.px-100 {
    padding-left: 5px !important;
    padding-right: 5px !important;
  }

  .header-section {
    background: #e5e5e4;
  }

  .header-section .navbar .container-fluid {
    align-items: center;
  }

  .why-section {
    padding: 48px 24px;
    flex-direction: column;
  }

  .left-panel {
    padding-right: 0;
    margin-bottom: 40px;
  }

  .why-desc {
    max-width: 100%;
  }
}

@media (max-width: 768px) {

  .feature-banner-card .feature-card {
    padding: 8px 8px;
    gap: 6px;
  }

  .banner-section .banner-content .btn {
    padding: 16px 40px;
    font-size: 18px;
  }

  .feature-banner-card {
    padding-top: 30px;
  }

  .feature-banner-card .card-title {
    font-size: 18px;
    line-height: 24px;
  }

  .feature-banner-card .card-icon img {
    height: 54px;
    object-fit: contain;
  }

  .feature-banner-card .card-body-text {
    gap: 0px;
  }

  .feature-banner-card .card-icon {
    width: 60px;
    height: 60px;
  }

  .card-title-text {
    font-size: 1.2rem;
  }

  .card-grid {
    gap: 15px;
  }

  .why-section2 {
    padding: 40px 0px 0px;
  }

  .about-heritage-section {
    padding-bottom: 40px;
  }

  .why-section {
    padding: 40px 20px;
  }

  .fcl-program-section,
  .wholesale-section {
    padding: 40px 0px;
  }

  .cabinet-product-section .center-slider .slick-dots li {
    width: 16px;
    height: 16px;
    margin: 0px;
  }

}

@media (max-width: 640px) {
  .wholesale-section .sec-title {
    padding: 0 10px;
  }

  .wholesale-section .tagline2 {
    font-size: 0.9rem;
    text-align: center;
    margin-top: 20px;
  }

  .fcl-program-section .tagline {
    font-size: 0.9rem;
    margin-top: 20px;
  }

  .feature-banner-card .card-title br {
    display: none;
  }

  .why-heading,
  .why-title2 {
    font-size: 1.8rem;
  }

  .card-grid,
  .fcl-program-section__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {

  .header-section .navbar-toggler {
    padding: 0.5rem 0.8rem;
  }

  .header-section.sticky .navbar .navbar-brand img {
    max-height: 70px;
  }

  .header-section .navbar .navbar-brand img {
    max-height: 80PX;
  }

  .btn-view {
    padding: 12px 40px;
    font-size: 14px;
  }

  .btn-wholesale {
    padding: 16px 24px;
    font-size: 16px;
  }

  .cta-button-row.mt-5 {
    margin-top: 2rem !important;
  }

  .wholesale-section p:last-of-type {
    margin-bottom: 10px;
  }

  .wholesale-section p {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .card-grid {
    grid-template-columns: 1fr;
  }

  .cabinet-product-section .center-slider .slick-slide img {
    height: 160px;
  }

  .cabinet-product-section .center-slider .slick-current.slick-active img {
    transform: scale(1);
    height: 200px;
  }

  .cabinet-product-section .center-slider .slick-slide {
    margin: 0px 16px;
  }

  .cabinet-product-section .label {
    font-size: 10px;
  }

  .cabinet-product-section .center-slider .slick-slide.slick-current .label {
    margin-top: 10px;
    font-size: 12px;
  }

  .cabinet-product-section .center-slider .slick-slide {
    height: 260px;
  }

}

@media (max-width: 480px) {

  .why-subtitle2 {
    margin: 0 auto 28px;
  }

  .wholesale-inner-sec .ideal-for-list .ideal-list li {
    font-size: 0.8rem;
  }

  .wholesale-inner-sec .sec-title2 {
    font-size: 1.2rem;
  }

  .icon-box2,
  .card-icon-wrap {
    width: 48px;
    height: 48px;
  }

  .wholesale-section .sub-title,
  .card-title-text,
  .card-heading2 {
    font-size: 1rem;

  }

  .card-desc2,
  .card-desc-text {
    font-size: 14px;
  }

  .cabinet-product-section .section-subtitle {
    font-size: 0.8rem;
    margin: 0 auto 24px;
  }

  .feature-banner-card .feature-card {
    padding: 14px 16px;
    border-radius: 20px;
  }

  .why-heading,
  .why-title2 {
    font-size: 1.6rem;
    margin-bottom: 16px;
  }
}



/* Start About Us Section */

.about-page-section {
  padding-top: 240px;
}

.about-title-wrapper {
  text-align: center;
  margin-bottom: 24px;
}

.about-title-box {
  display: inline-block;
  padding: 12px 0px;
}

.about-title {
  font-family: var(--heading-font);
  font-size: 60px;
  font-weight: 400;
  color: var(--gold);
  margin: 0;
  letter-spacing: 0.05em;
  line-height: 1.2;
  text-transform: uppercase;
  position: relative;
}

.about-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%);
  width: 180px;
  height: 1px;
  background-color: var(--gold);
  border-radius: 10px;
}

.about-content-row {
  margin-top: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.about-content-row>[class*="col-"] {
  padding-left: 0;
  padding-right: 0;
}

.about-image-wrapper {
  overflow: hidden;
  display: flex;
  height: 100%;
}

.about-img {
  object-fit: cover;
  display: block;
  width: 100%;
  height: 100%;
  object-position: 15% 100%;
}

.about-text-box {
  background-color: #efefef;
  padding: 40px 60px;
  color: #222222;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-paragraph {
  font-family: var(--body-font);
  font-size: 18px;
  line-height: 1.9;
  letter-spacing: 0.04em;
  text-align: justify;
  text-justify: inter-word;
  text-transform: uppercase;
}

.about-p-first {
  margin-bottom: 24px;
}

.about-paragraph strong {
  font-weight: 700;
  color: #000000;
}



@media (max-width: 1440px) {
  .about-page-section {
    padding-top: 160px;
  }
}

@media (max-width: 1199.98px) {
  .about-text-box {
    padding: 40px 50px;
  }

  .about-paragraph {
    font-size: 16px;
    line-height: 1.8;
  }
}

@media (max-width: 991.98px) {
  .about-title-box {
    padding: 12px 0px;
  }

  .about-page-section {
    padding-top: 180px;
    padding-bottom: 80px;
  }

  .about-title {
    font-size: 40px;
    padding: 10px 35px;
  }

  .about-text-box {
    padding: 30px 40px;
  }

  .about-paragraph {
    font-size: 15px;
  }
}

@media (max-width: 767.98px) {
  .about-page-section {
    padding-top: 150px;
    padding-bottom: 60px;
  }

  .about-title {
    font-size: 32px;
    padding: 8px 30px;
  }

  .about-img {
    height: 350px !important;
    width: 100%;
  }

  .about-text-box {
    padding: 35px 30px;
  }

  .about-paragraph {
    font-size: 15px;
  }
}

/* End About Us Section */

/* Start About Us Section 2 */
.about-two-section {
  padding-top: 40px;
}

.about-two-row {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.about-two-row:last-child {
  margin-bottom: 0;
}

.about-two-heading {
  font-family: var(--heading-font);
  font-size: 40px;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  width: 100%;
}

.about-two-text-block {
  background-color: #efefef;
  padding: 35px 50px;
  border-radius: 0px;
}

.about-two-paragraph {
  font-family: var(--body-font);
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.03em;
  color: #222222;
  text-transform: uppercase;
  text-align: left;
}

.about-two-p-first {
  margin-bottom: 24px;
}

.about-feature-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 30px;
  margin-left: -12px;
  margin-right: -12px;
}

.about-feature-grid>[class*="col-"] {
  padding-left: 12px;
  padding-right: 12px;
  padding-bottom: 24px;
}

.about-feature-card {
  background-color: #444444;
  color: #ffffff;
  padding: 40px 40px;
  min-height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-radius: 0px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

.about-feature-text {
  font-family: var(--body-font);
  font-size: 25px;
  font-weight: 400;
  line-height: 1.4;
  color: #ffffff;
  text-align: center;
}

/* End About Us Section 2 */

/* Start About Us Section 3 */
.about-three-section {
  padding-top: 20px;
}

/* End About Us Section 3 */

/* Start About Us Section 4 */
.about-four-section {
  padding-top: 40px;
  padding-bottom: 0px;
}

.about-four-heading {
  font-family: var(--heading-font);
  font-size: 40px;
  font-weight: 400;
  color: var(--gold);
  margin-bottom: 24px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
}

.about-four-subheading {
  font-family: var(--body-font);
  font-size: 18px;
  font-weight: 400;
  color: #222222;
  margin-bottom: 40px;
  text-align: left;
  text-transform: uppercase;
  text-align: center;
}

.about-four-row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
  margin-bottom: 40px;
}

.about-four-row>[class*="col-"] {
  padding-left: 15px;
  padding-right: 15px;
  display: flex;
}

.about-four-card {
  background-color: #444444;
  color: #ffffff;
  padding: 40px 30px;
  border-radius: 0px;
  width: 100%;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.about-four-card-title {
  font-family: var(--heading-font);
  font-size: 24px;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  line-height: 1.3;
}

.about-four-card-body {
  font-family: var(--body-font);
  font-size: 20px;
  line-height: 1.6;
  color: #ffffff;
  text-align: left;
}

.about-four-footer-note {
  font-family: var(--body-font);
  font-size: 18px;
  font-style: italic;
  color: var(--red);
  text-transform: uppercase;
  text-align: center;
  margin-top: 40px;
  display: block;
}

.bottom-text-about-four {
  text-align: center;
  color: var(--red);
}

.bottom-text-about-four p a {
  font-size: 16px;
  color: var(--red);
}

/* End About Us Section 4 */




/* Contact Page Css Start */

.contact-section {
  position: relative;
}

.contact-section:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.6);
}

.contact-section img {
  width: 100%;
}

.contact-section img {
  width: 100%;
  height: 800px;
  object-fit: cover;
}

.contact-content {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  z-index: 1;
  display: inline-flex;
  flex-direction: column;
}

.contact-content img {
  height: 360px;
  object-fit: cover;
}

.contact-us {
  border-radius: 30px;
  font-size: 22px;
  font-weight: 400;
}

.contact-form {
  padding: 50px 0;
}

/* .contact-form .divider-line {
  margin: 0 auto 20px;
} */

.contact-section__title {
  font-weight: 400;
  font-size: 2rem;
  color: #928202;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 30px;
}

/* Form grid */
.contact-section__form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-section__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}

.contact-section__input,
.contact-section__textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1.5px solid #00000057;
  background: #fff;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: #000;
  outline: none;
  transition: border-color 0.22s ease;
  border-radius: 0;
}

.contact-section__input::placeholder,
.contact-section__textarea::placeholder {
  color: #b6b6b6;
  font-size: 14px;
  font-weight: 400;
  opacity: 1;
}

/* Optional Browser Support */
.contact-section__input::-webkit-input-placeholder,
.contact-section__textarea::-webkit-input-placeholder {
  color: #b6b6b6;
}

.contact-section__input::-moz-placeholder,
.contact-section__textarea::-moz-placeholder {
  color: #b6b6b6;
}

.contact-section__input:-ms-input-placeholder,
.contact-section__textarea:-ms-input-placeholder {
  color: #b6b6b6;
}

.contact-section__label {
  font-size: 15px;
  color: #000;
  font-weight: 500;
  margin-bottom: 4px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.contact-section__input::placeholder,
.contact-section__textarea::placeholder {
  color: #000;
}

.contact-section__input:focus,
.contact-section__textarea:focus {
  box-shadow: none;
}

.contact-section__textarea {
  resize: vertical;
  min-height: 120px;
}

/* Full-width textarea row */
.contact-section__row--full {
  grid-template-columns: 1fr;
}

/* Submit button */
.contact-section__submit-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-top: 6px;

}

.contact-section__submit {
  margin-bottom: 15px;
  padding: 10px 60px;
  background: #000;
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

/* reCAPTCHA note */
.contact-section__recaptcha {
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  color: #000;
  text-align: center;
  text-transform: uppercase;
  font-weight: 400;
  padding-bottom: 10px;
}

.contact-section__recaptcha a {
  text-decoration: underline;
  color: #000;
  font-weight: 400;
}


.subscribe-section {
  width: 100%;
  margin: 0 auto;
  padding: 80px 20px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.subscribe-section__label {
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #000;
  white-space: nowrap;
}

.subscribe-section__input {
  flex: 1;
  min-width: 500px;
  max-width: 360px;
  padding: 12px 18px;
  border: 1.5px solid #000;
  background: #fff;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: #000;
  outline: none;
  transition: border-color 0.22s ease;
  border-radius: 0;
}

.subscribe-section__input::placeholder {
  color: var(--color-placeholder);
}

.subscribe-section__input:focus {
  border-color: var(--gold);
}

.subscribe-section__btn {
  padding: 12px 32px;
  background: #000;
  color: #fff;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  border-radius: 50px;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

/* ── RESPONSIVE ── */
@media (max-width: 1440px) {
  .contact-section img {
    width: 100%;
    height: 580px;
  }
}

@media (max-width: 768px) {
  .contact-section img {
    width: 100%;
    height: 540px;
  }
}

@media (max-width: 600px) {
  .subscribe-section__input {
    min-width: 100%;
  }

  .contact-section__row {
    grid-template-columns: 1fr;
  }

  .contact-section img {
    width: 100%;
    height: 500px;
  }

  .footer-info-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .divider-line {
    width: 120px;
  }

  .contact-section img {
    width: 100%;
    height: 480px;
  }
}

/* Contact Page Css End */



/* Footer Section Css Start */
.our-partners {
  padding: 60px 0px 50px;
}

h2.our-partners-title {
  font-weight: 400;
  font-size: 36px;
  color: #000;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 40px;
}

.our-partners-box {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 40px;
}

.our-partners-item {
  text-align: center;
}

.our-partners-item img {
  margin: 0 auto;
  object-fit: cover;
}

.footer-menu {
  border-top: 1px solid #000;
  padding: 50px 190px 60px;
}

.footer-menu ul {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 24px 60px;
  justify-content: center;
}

.footer-menu ul li {
  list-style: none;
}

.footer-menu ul li a {
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #000000
}

.footer-info-section {
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-info-section__item {
  display: flex;
  align-items: center;
  gap: 10px;
}

/* Icon circles */
.footer-info-section__icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer-info-section__icon svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

.footer-info-section__text {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #000;
}

.footer-info-section__text a {
  color: #000;
  text-decoration: none;
  font-weight: 400;
  font-size: 16px;
}

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

.footer-social-media {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 60px 0 20px;
  position: relative;
}

.footer-social-media:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  min-width: 140px;
  height: 1px;
  background: #000;
}

.footer-social-media img {
  height: 50px;
  width: 50px;
  object-fit: contain;
}

.footer-copyright {
  text-align: center;
}

.footer-copyright p {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #000;
  text-transform: uppercase;
}

.footer-copyright {
  padding: 20px 0 40px;
}

@media (max-width: 1540px) {
  h2.our-partners-title {
    font-size: 32px;
  }

  .footer-menu {
    border-top: 1px solid #000;
    padding: 40px 160px 40px;
  }

  .footer-social-media {
    padding: 40px 0 20px;
    gap: 16px;
  }
}

@media (max-width: 1024px) {
  .footer-menu {
    padding: 40px 20px 40px;
  }

  h2.our-partners-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .footer-menu ul {
    gap: 16px 40px;
  }
}

@media (max-width: 767px) {
  .our-partners-item img {
    max-height: 60px;
  }

  .footer-menu ul {
    display: flex;
    flex-wrap: unset;
    flex-direction: column;
    gap: 24px 60px;
    justify-content: center;
    align-items: center;
  }

  .our-partners {
    padding: 50px 0 40px;
  }

  .footer-info-section {
    display: inline-grid;
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .footer-info-section {
    padding: 0px;
  }

  .footer-menu {
    padding: 30px 10px 30px;
  }

  .footer-social-media {
    padding: 30px 0 20px;
  }

  .our-partners {
    padding: 20px 0 30px;
  }

  .footer-social-media img,
  .footer-info-section__icon {
    width: 30px;
    height: 30px;
  }

  .footer-info-section__icon svg {
    width: 20px;
    height: 20px;
  }

  .footer-menu ul {
    gap: 16px 32px;
  }

  .footer-copyright p,
  .footer-info-section__text,
  .footer-menu ul li a {
    font-size: 14px;
  }

  /* .industries-section .divider-line,
  .fcl-program-section .divider-line {
    margin: 0 auto 10px;
  } */

  .footer-info-section__item {
    gap: 10px;
  }

  h2.our-partners-title {
    font-size: 22px;
    margin-bottom: 24px;
  }

  .our-partners-box {
    gap: 10px;
  }

  .our-partners-item img {
    max-height: 45px;
  }
}


/* Footer Section Css End */

/* Galllery Page CSS Start */

.product-detail-hero .banner-content h1 {
  text-transform: uppercase;
  font-size: 84px;
  line-height: 108px;
  font-weight: 300;
  font-family: 'Versailles';
  letter-spacing: 4px;
}

.product-detail-hero .banner-content p {
  text-transform: uppercase;
  font-size: 24px;
  line-height: 36px;
  font-weight: 300;
  font-family: 'Versailles';
  color: #ffffff;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 40px;
  letter-spacing: 4px;
}

.product-detail-hero .banner-content .btn {
  font-size: 20px;
  letter-spacing: 2px;
}

/* 
.product-detail-hero .banner-content {
  top: 50%;
} */

.photo-gallery-section {
  position: relative;
  padding-bottom: 0px;
}

.photo-gallery-section .container {
  max-width: 1100px;
}

.banner-section.product-detail-hero .banner-image img {
  height: 800px;
  width: 100%;
}

@media (max-width: 1600px) {

  .product-detail-hero .banner-content .btn {
    font-size: 18px;
  }

  /* .product-detail-hero .banner-content {
    top: 40%;
  } */

  .product-detail-hero .banner-content h1 {
    font-size: 66px;
    line-height: 78px;
  }

  .banner-section.product-detail-hero .banner-image img {
    height: 680px;
    width: 100%;
  }

  .contact-content img {
    height: 280px;
  }
}

@media (max-width: 1440px) {
  .contact-us {
    border-radius: 30px;
    font-size: 18px;
  }

  .contact-content img {
    height: 240px;
  }

  .product-detail-hero .banner-content p {
    font-size: 18px;
    line-height: 28px;
  }

  .banner-section.product-detail-hero .banner-image img {
    height: 580px;
    width: 100%;
  }

  .product-detail-hero .banner-content h1 {
    font-size: 54px;
    line-height: 66px;
  }

  .subscribe-section__label {
    font-size: 1.25rem;
  }

  .contact-form {
    padding: 40px 0px 20px;
  }
}

@media (max-width: 1024px) {
  .product-detail-hero .banner-content h1 {
    font-size: 42px;
    line-height: 60px;
  }
}

@media (max-width: 768px) {
  /* .product-detail-hero .banner-content {
    top: 35%;
  } */

  .banner-section.product-detail-hero .banner-image img {
    height: 540px;
    width: 100%;
  }

  .contact-content img {
    height: 180px;
  }

  .photo-gallery-section {
    padding-bottom: 20px;
  }

  .product-detail-hero .banner-content p {
    font-size: 16px;
    line-height: 24px;
    padding-bottom: 20px;
  }

  .subscribe-section__input,
  .contact-section__input,
  .contact-section__textarea {
    padding: 12px 18px;
  }
}

@media (max-width: 576px) {
  .banner-section.product-detail-hero .banner-image img {
    height: 480px;
  }
}

/* ── Main Slider ── */
.main-slider-wrap {
  position: relative;
  overflow: hidden;
}

.main-slider .slide-item {
  position: relative;
  outline: none;
}

.main-slider .slide-item img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  display: block;
}

/* subtle overlay gradient */
.main-slider .slide-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      transparent 55%,
      rgba(42, 37, 32, 0.35) 100%);
  pointer-events: none;
}

/* Slick arrows */
.main-slider .slick-prev,
.main-slider .slick-next {
  z-index: 10;
  width: 44px;
  height: 44px;
}

/* 
.main-slider .slick-prev {
  left: 18px;
}

.main-slider .slick-next {
  right: 18px;
}

.main-slider .slick-prev::before,
.main-slider .slick-next::before {
  font-size: 28px;
  color: rgba(255, 255, 255, 0.85);
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
} */
.main-slider button.slick-prev {
  left: 0;
  background-color: rgba(22, 22, 22, 0.5);
  height: 44px;
  width: 40px;
  z-index: 1;
}

.main-slider button.slick-next {
  right: 0;
  background-color: rgba(22, 22, 22, 0.5);
  height: 44px;
  width: 40px;
  z-index: 1;
}

.main-slider button.slick-prev:before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath fill='%23ffffff' d='M34.52 239.03L228.87 44.68c9.37-9.37 24.57-9.37 33.94 0l22.67 22.67c9.36 9.37 9.36 24.57 0 33.94L131.49 256l154 154.71c9.36 9.37 9.36 24.57 0 33.94l-22.67 22.67c-9.37 9.37-24.57 9.37-33.94 0L34.52 272.97c-9.37-9.37-9.37-24.57 0-33.94z'/%3E%3C/svg%3E");
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.main-slider button.slick-next:before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-color: #fff;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath d='M285.5 272.97L91.1 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.7-22.7c-9.4-9.4-9.4-24.6 0-33.9L188.5 256 34.5 102.1c-9.4-9.4-9.4-24.6 0-33.9L57.2 45.5c9.4-9.4 24.6-9.4 33.9 0l194.3 194.3c9.4 9.4 9.4 24.6.1 34.1z'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath d='M285.5 272.97L91.1 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.7-22.7c-9.4-9.4-9.4-24.6 0-33.9L188.5 256 34.5 102.1c-9.4-9.4-9.4-24.6 0-33.9L57.2 45.5c9.4-9.4 24.6-9.4 33.9 0l194.3 194.3c9.4 9.4 9.4 24.6.1 34.1z'/%3E%3C/svg%3E") center/contain no-repeat;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}


/* Slick dots */
.main-slider .slick-dots {
  bottom: 16px;
}

.main-slider .slick-dots li button::before {
  color: rgba(255, 255, 255, 0.7);
  font-size: 8px;
}

.main-slider .slick-dots li.slick-active button::before {
  color: #fff;
}

.main-slider .slick-dots li {
  margin: 0px;
}

/* ── Thumbnail Slider ── */
.thumb-slider-wrap {
  margin-top: 12px;
  padding: 0 82px;
}

.thumb-slider .thumb-item {
  padding: 0 5px;
  outline: none;
  cursor: pointer;
}

.thumb-slider .thumb-item img {
  width: 100%;
  height: 70px;
  object-fit: cover;
  border-radius: 0px;
  display: block;
  border: 2px solid transparent;
  transition: border-color 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
  opacity: 0.62;
}

.wholesale-section .thumb-slider .thumb-item img {
  width: 100%;
  height: 120px;
}

.thumb-slider .thumb-item:hover img {
  opacity: 0.88;
}

.thumb-slider .slick-current .thumb-item img {
  border-color: var(--gold);
  opacity: 1;
}

/* hide arrows on thumbs */
.thumb-slider .slick-prev,
.thumb-slider .slick-next {
  display: none !important;
}

@media (max-width: 1440px) {
  .main-slider .slide-item img {
    width: 100%;
    height: 480px;
  }
}

@media (max-width: 600px) {
  .cabinet-product-section {
    padding: 40px 0px 40px;
  }

  .main-slider-wrap .slick-dotted.slick-slider {
    margin-bottom: 10px;
  }

  .thumb-slider-wrap {
    margin-top: 8px;
    padding: 0 2px;
  }

  .main-slider .slide-item img {
    height: 260px;
  }

  .thumb-slider .thumb-item img {
    height: 52px;
  }

  .wholesale-section .thumb-slider .thumb-item img {
    width: 100%;
    height: 100px;
  }
}

@media (max-width: 425px) {

  .wholesale-section .thumb-slider .thumb-item img {
    width: 100%;
    height: 70px;
  }
}

/* Become a Dealer Page CSS Start */

.banner-section.become-banner-hero .banner-content {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 15px;
  top: 50%;
}

.banner-section.become-banner-hero .banner-content h1 {
  text-transform: uppercase;
  font-size: 60px;
  line-height: 84px;
  font-weight: 300;
  font-family: 'Versailles';
  letter-spacing: 6px;
  color: #000000;
}

.banner-section.become-banner-hero .banner-image::before {
  background: #e5e5e4;
}

.banner-section.become-banner-hero .banner-image img {
  height: 800px;
  width: 100%;
}


.contact-section__row--full-check-box {
  font-size: 16px;
  line-height: 24px;
}

.contact-section__row--full-login-wrap {
  text-align: center;
}

.contact-section__row--full-login-wrap p {
  font-size: 18px;
}

.contact-link-brown {
  color: #8b7635;
  text-decoration: none;
}

.contact-link-brown:hover {
  text-decoration: underline;
  color: #8b7635;
}

@media (max-width: 1540px) {
  .banner-section.become-banner-hero .banner-content h1 {
    font-size: 48px;
    line-height: 64px;
  }

  .banner-section.become-banner-hero .banner-image img {
    height: 680px;
    width: 100%;
  }

}

@media (max-width: 1440px) {

  .contact-section__row--full-check-box {
    font-size: 14px;
    line-height: 20px;
  }

  .banner-section.become-banner-hero .banner-content h1 {
    font-size: 36px;
    line-height: 44px;
  }

  .banner-section.become-banner-hero .banner-image img {
    height: 540px;
    width: 100%;
  }
}


@media (max-width: 767px) {
  .contact-section__row--full-check-box {
    font-size: 16px;
    line-height: 22px;
  }

  .contact-section__row--full-check-box .contact-section__input {
    margin-top: 6px;
  }

  .contact-section__row--full-check-box {
    margin-bottom: 10px;
    align-items: flex-start !important;
  }
}



/* Warehouse Page CSS Start */

.banner-section.warehouse-banner .banner-content h1 {
  text-transform: uppercase;
  font-size: 84px;
  line-height: 108px;
  font-weight: 300;
  font-family: 'Versailles';
  letter-spacing: 10px;
}

.banner-section.warehouse-banner .banner-content {
  max-width: 1200px;
  margin: 0 auto;
  top: 50%;
  padding: 0 15px;
}

.banner-section.warehouse-banner .banner-image img {
  height: 800px;
  width: 100%;
}

.about-page-section.warehouse-about-section {
  padding-top: 80px;
}

.about-page-section.warehouse-about-section .about-title {
  text-transform: uppercase;
  font-size: 36px;
  line-height: 48px;
  font-weight: 300;
  font-family: 'Versailles';
  letter-spacing: 6px;
}

.about-page-section.warehouse-about-section .about-title-wrapper {
  margin-bottom: 0px;
}

.about-page-section.warehouse-about-section .about-text-box .btn-theme.about-btn {
  width: max-content !important;
  font-size: 18px;
}

.warehouse-photo-section {
  position: relative;
  padding: 80px 0 0;
}

.warehouse-photo-section .sec-title {
  text-transform: uppercase;
  font-size: 36px;
  line-height: 48px;
  font-weight: 300;
  font-family: 'Versailles';
  letter-spacing: 6px;
  padding-bottom: 20px;
}

.warehouse-photo-wrapper h2 {
  font-size: 36px;
  line-height: 48px;
  text-align: center;
}

@media (max-width: 1600px) {
  .banner-section.warehouse-banner .banner-content h1 {
    font-size: 72px;
    line-height: 96px;
  }
}

@media (max-width: 1440px) {
  .about-page-section.warehouse-about-section {
    padding-top: 60px;
  }


  .warehouse-photo-wrapper h2,
  .warehouse-photo-section .sec-title,
  .about-page-section.warehouse-about-section .about-title {
    font-size: 32px;
    line-height: 48px;
  }

  .banner-section.warehouse-banner .banner-image img {
    height: 680px;
    width: 100%;
  }

  .banner-section.warehouse-banner .banner-content h1 {
    font-size: 60px;
    line-height: 74px;
  }
}

@media (max-width: 1024px) {

  .about-page-section.warehouse-about-section {
    padding-bottom: 0px;
  }
}

@media (max-width: 768px) {
  .about-page-section.warehouse-about-section {
    padding-top: 40px;
  }

  .warehouse-photo-section {
    padding: 40px 0px 20px;
  }

  .warehouse-photo-section .sec-title {
    padding-bottom: 0px;
  }

  .warehouse-about-section .about-title-box {
    padding: 0px;
  }

  .warehouse-photo-section .sec-title,
  .about-page-section.warehouse-about-section .about-title {
    font-size: 24px;
    line-height: 36px;
    letter-spacing: 2.4px;
  }

  .warehouse-photo-wrapper h2 {
    font-size: 20px;
    line-height: 32px;
  }
}

/* start more page Section 1 */
.banner-content.product-details-banner h1 {
  font-size: 120px;
  font-family: 'Versailles';
  letter-spacing: 20px;
  line-height: 180px;
  font-weight: 300;
}

.product-details-button {
  font-family: 'Versailles';
}

/* Responsive padding for banner container */
@media screen and (max-width: 991px) {
  .banner-section .banner-content {
    padding: 0 40px;
  }
}

@media screen and (max-width: 575px) {
  .banner-section .banner-content {
    padding: 0 10px;
  }
}

/* Responsive typography for Homepage Banner */
@media screen and (max-width: 991px) {
  .banner-section .banner-content h1 {
    font-size: 40px;
    line-height: 50px;
    margin-bottom: 25px;
  }
}

@media screen and (max-width: 767px) {
  /* .banner-section .banner-content h1 {
    font-size: 32px;
    line-height: 42px;
    margin-bottom: 20px;
  } */

  .banner-section .banner-content .btn {
    padding: 14px 28px;
    font-size: 18px;
  }

  .subscribe-section {
    padding: 40px 20px 30px;
  }
}

@media screen and (max-width: 575px) {
  .subscribe-section__label {
    font-size: 1.2rem;
  }

  .contact-us {
    font-size: 16px;
  }

  .banner-section .banner-content h1 {
    font-size: 36px;
    line-height: 42px;
  }

  .banner-section .banner-content .btn {
    padding: 14px 24px;
    font-size: 15px;
  }

  .about-heritage-section .about-heritage-desc .btn-theme {
    font-size: 14px;
  }
}

@media screen and (max-width: 480px) {
  .about-heritage-section .about-heritage-desc {
    padding: 20px 0 0;
  }

  .banner-section .banner-content h1 {
    font-size: 30px;
    line-height: 38px;
    letter-spacing: 4px;
    margin-bottom: 20px;
  }
}

/* Responsive typography for Product Details Banner */

@media screen and (max-width: 1440px) {
  .banner-content.product-details-banner h1 {
    font-size: 100px;
    letter-spacing: 25px;
    line-height: 145px;
  }
}

@media screen and (max-width: 1300px) {
  .banner-content.product-details-banner h1 {
    font-size: 90px;
    letter-spacing: 20px;
    line-height: 110px;
  }
}

@media screen and (max-width: 1140px) {
  .banner-content.product-details-banner h1 {
    font-size: 65px;
    letter-spacing: 12px;
    line-height: 85px;
  }
}

@media screen and (max-width: 767px) {
  .banner-content.product-details-banner h1 {
    font-size: 48px;
    letter-spacing: 8px;
    line-height: 60px;
  }
}

@media screen and (max-width: 575px) {
  .help-action .btn-theme {
    padding: 16px 16px;
    font-size: 15px;
  }

  .banner-content.product-details-banner h1 {
    font-size: 40px;
    letter-spacing: 4px;
    line-height: 42px;
  }
}


/* End more page Section 1 */

/* Start more page Section 2 */
.product-details-section-2 {
  padding: 80px 0;
  background-color: #ffffff;
}

.product-details-section-2-img-wrap {
  position: relative;
  z-index: 1;
}

.product-details-section-2-img {
  width: 100%;
  display: block;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.product-details-section-2-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.product-details-section-2-title {
  font-family: 'Versailles', serif;
  font-size: 36px;
  color: #b5a25d;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 40px;
  font-weight: normal;
}

.product-details-section-2-card {
  background-color: #a38c75;
  padding: 50px 50px 40px 50px;
  color: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.30) 15px 15px 40px;
  margin-left: -120px;
  position: relative;
  z-index: 2;
}

.product-details-section-2-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 30px;
}

.product-details-section-2-list li {
  position: relative;
  padding-left: 25px;
  font-family: 'Neue Montreal', sans-serif;
  font-size: 19px;
  line-height: 1.5;
  color: #ffffff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.product-details-section-2-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #ffffff;
}

.product-details-section-2-btn-wrap {
  text-align: center;
}

.product-details-section-2-btn {
  font-family: 'Versailles';
  font-size: 16px;
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 12px 36px;
  text-transform: uppercase;
  display: inline-block;
  transition: all 0.3s ease;
  letter-spacing: 0.05em;
  border: none;
}

.product-details-section-2-btn:hover {
  background-color: #000000;
  color: #ffffff;
  text-decoration: none;
}

/* End more page Section 2 */



/* Start more page Section 3 */
.product-details-section-3 {
  padding-top: 0;
  padding-bottom: 40px;
  background-color: #ffffff;
}

.product-details-section-3-title {
  font-family: 'Versailles', serif;
  font-size: 36px;
  color: #b5a25d;
  text-transform: uppercase;
  letter-spacing: 4px;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 40px;
  font-weight: normal;
}

.product-details-section-3-group {
  margin-bottom: 70px;
}

.product-details-section-3-group:last-child {
  margin-bottom: 0;
}

.product-details-section-3-subtitle {
  font-family: 'Versailles';
  font-size: 22px;
  color: #1a1a1a;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  text-align: center;
  margin-bottom: 30px;
  font-weight: 600;
}

.product-details-section-3-box {
  background-color: #8c8c8e;
  color: #ffffff;
  padding: 30px 20px;
  text-align: center;
  font-family: 'Versailles';
  font-size: 25px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  box-shadow: rgba(0, 0, 0, 0.1) 15px 15px 40px;
  transition: all 0.3s ease;
  height: 100%;
}

.product-details-section-3-box:hover {
  background-color: #7c7c7e;
  transform: translateY(-2px);
  box-shadow: rgba(0, 0, 0, 0.45) 15px 15px 45px;
}

/* End more page Section 3 */


/* shipping-zones page section 2 start */

.shipping-zones-section-2 {
  padding: 80px 0;
  background: #fff;
}

.shipping-zones-section-2-head {
  text-align: center;
  margin-bottom: 60px;
}

.shipping-zones-section-2-head h2 {
  font-family: 'Versailles', serif;
  font-size: 40px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .25em;
  line-height: 1.4;
  font-weight: 400;
  margin-bottom: 16px;
}

.shipping-zones-section-2-center {
  margin: 40px 0;
}

.shipping-zones-section-2-banner {
  background: #000;
  padding: 20px 15px;
  text-align: center;
  width: 100%;
}

.shipping-zones-section-2-title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  color: #fff;
  font-size: 42px;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.shipping-zones-section-2-title-img {
  width: 60px;
  height: 50px;
  object-fit: contain;
}

.shipping-zones-section-2-subtitle {
  color: #cfcfcf;
  font-size: 16px;
  letter-spacing: 2px;
  font-style: italic;
  line-height: 1.5;
  text-transform: uppercase;
}


/* shipping-zones page section 2 end */

/* shipping-zones page section 3 start */
.shipping-zones-section-3 {
  padding-bottom: 40px;
  background-color: #ffffff;
}

.shipping-zones-section-3-card {
  background-color: #1c1c1c;
  padding: 40px 24px;
  border-radius: 0;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.shipping-zones-section-3-card-title {
  color: #ffffff;
  font-family: 'Neue Montreal', sans-serif;
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 12px;
  line-height: 1.2;
}

.shipping-zones-section-3-card-subtitle {
  color: #b5b5b5;
  font-family: 'Neue Montreal', sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 25px;
  line-height: 1.4;
  font-weight: 400;
}

.shipping-zones-section-3-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  width: 100%;
}

.shipping-zones-section-3-list li {
  color: #ffffff;
  font-family: 'Neue Montreal', sans-serif;
  font-size: 16px;
  margin-bottom: 12px;
  text-align: left;
  letter-spacing: 2px;
  font-weight: 400;
}

/* Flexbox columns configurations */
.shipping-zones-section-3-list.cols-1 {
  max-width: 80px;
}

.shipping-zones-section-3-list.cols-1 li {
  width: 100%;
}

.shipping-zones-section-3-list.cols-2 {
  max-width: 170px;
}

.shipping-zones-section-3-list.cols-2 li {
  width: 50%;
}

.shipping-zones-section-3-list.cols-3 {
  max-width: 250px;
}

.shipping-zones-section-3-list.cols-3 li {
  width: 33.33%;
}

.shipping-zones-section-3-list.cols-4 {
  max-width: 300px;
}

.shipping-zones-section-3-list.cols-4 li {
  width: 25%;
}

.shipping-zones-section-3-list.cols-5 {
  max-width: 325px;
}

.shipping-zones-section-3-list.cols-5 li {
  width: 20%;
}

/* shipping-zones page section 3 end */

@media(max-width:1440px) {

  .product-details-section-3-title,
  .product-details-section-2-title {
    font-size: 32px;
    line-height: 42px;
  }

  .banner-section.product-details-main .banner-image img {
    height: 680px;
  }

  .product-details-section-2,
  .shipping-zones-section-2 {
    padding: 60px 0;
  }

  .product-details-section-3 {
    padding-bottom: 20px;
  }

  .shipping-zones-section-3 {
    padding-bottom: 60px;
  }

  .banner-section.product-details-main .banner-content {
    top: 50%;
  }
}

@media (max-width:1100px) {

  /* <!-- More page Banner section start --> */
  h2.product-details-section-2-title {
    font-size: 30px;
  }

  .product-details-section-2-card {
    margin-left: -100px;
    padding: 40px 40px 40px 40px;
  }

  /* <!-- More page Banner section end --> */

  /* <-- More page section 2 start --> */
  .product-details-section-3-title {
    font-size: 30px;
  }

  .product-details-section-3-box {
    font-size: 24px;
    word-break: break-all;
  }

  /* <-- More page section 2 end --> */

}


@media (max-width:1024px) {

  /* <!-- More page Banner section start --> */
  .product-details-section-2-card {
    margin-left: 0px;
    padding: 20px 30px 20px 30px;
  }

  h2.product-details-section-2-title {
    margin-bottom: 15px;
  }

  /* <!-- More page Banner section end --> */

  .shipping-zones-section-2-head h2 {
    letter-spacing: 0.15em;
  }

}


@media (max-width:991px) {

  /* <-- More page section 2 start --> */
  .product-details-section-2-right {
    margin-top: 20px;
  }

  .product-details-section-3-box br {
    display: none;
  }

  /* <-- More page section 2 end --> */
  .shipping-zones-section-2 {
    padding: 40px 0;
  }

  .shipping-zones-section-2-head h2 {
    letter-spacing: 0.10em;
    font-size: 34px;
  }

  .shipping-zones-section-2-title {
    font-size: 34px;
    letter-spacing: 2px;
  }

  .shipping-zones-section-2-subtitle {
    font-size: 18px;
    letter-spacing: 2px;
  }

  .shipping-zones-section-3-card {
    padding: 30px 20px;
  }

  .shipping-zones-section-3-card-title {
    font-size: 22px;
    letter-spacing: 2px;
  }

  .shipping-zones-section-3-card-subtitle {
    letter-spacing: 1px;
  }

  .shipping-zones-section-3-list.cols-5 li {
    width: 25%;
  }

  .shipping-zones-section-3 {
    padding-bottom: 40px;
  }

  .shipping-zones-section-2-head {
    margin-bottom: 40px;
  }
}

@media (max-width:767px) {
  .product-details-section-2 .product-details-section-2-row {
    flex-direction: column-reverse;
  }

  .product-details-section-2-content,
  .product-details-section-3-title {
    margin-bottom: 20px;
  }

  .product-details-section-2-right {
    margin-top: 0;
  }

  .product-details-section-2,
  .shipping-zones-section-2 {
    padding: 40px 0;
  }

  .product-details-section-3-title,
  h2.product-details-section-2-title {
    font-size: 22px;
    line-height: 1.3;
  }

  .product-details-section-2-list li {
    position: relative;
    padding-left: 25px;
    font-size: 16px;
  }

  .shipping-zones-section-2-head h2 {
    font-size: 32px;
  }

  .shipping-zones-section-2-center {
    margin: 30px 0;
  }

  .shipping-zones-section-2-title {
    font-size: 28px;
    letter-spacing: 1px;
    flex-direction: column;
    gap: 10px;
  }

  .shipping-zones-section-2-subtitle {
    font-size: 16px;
    letter-spacing: 1px;
  }

  .shipping-zones-section-3-card {
    padding: 20px 20px;
  }

  .shipping-zones-section-3-card-title {
    font-size: 20px;
  }

  .shipping-zones-section-3-list li {
    font-size: 16px;
  }

  .product-details-section-3 {
    padding-bottom: 20px;
  }

  .product-details-section-3-group {
    margin-bottom: 40px;
  }

  .shipping-zones-section-3 {
    padding-bottom: 40px;
  }
}

@media (max-width:576px) {
  .product-details-section-3 .row.g-4 {
    gap: 0rem;
  }

  .product-details-section-3-subtitle {
    font-size: 18px;
  }

  .shipping-zones-section-3 {
    padding-bottom: 20px;
  }

  .product-details-section-3-box {
    font-size: 18px;
    min-height: 120px;
  }

  .shipping-zones-section-2-head h2 {
    font-size: 24px;
    line-height: 1.3;
  }

  .shipping-zones-section-2-center {
    margin: 20px 0;
  }

  .shipping-zones-section-2-title {
    font-size: 22px;
    letter-spacing: 0.5px;
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .shipping-zones-section-2-subtitle {
    font-size: 14px;
    letter-spacing: 0.5px;
    line-height: 1.5;
    text-align: center;
  }

  .shipping-zones-section-3-card {
    padding: 16px;
  }

  .shipping-zones-section-3-card-title {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .shipping-zones-section-3-list li {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 8px;
  }
}

/* Product Detail Page Css Start */

.spec-detail-section {
  padding: 80px 0 0;
}

.spec-table {
  margin: 40px 0 0;
}

.table-header {
  background-image: linear-gradient(to right, #391110, #e9886b);
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.spec-table table {
  width: 100%;
  border-collapse: collapse;
  font-size: 10.5px;
}

.spec-table th,
.spec-table td {
  border: 1px solid #c9b96c;
  padding: 15px 15px;
  vertical-align: middle;
  text-align: center;
}

.spec-table td.row-label {
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-align: center;
  width: 80px;
}

.spec-table tr.group-header th {
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 15px 15px;
}

.spec-table tr.code-header th {
  font-weight: 500;
  font-size: 18px;
  background: #fff;
  padding: 15px 15px;
}

.spec-table td.data {
  font-size: 16px;
  line-height: 1.5;
  text-transform: uppercase;
  font-weight: 400;
}

.spec-table td.span-data {
  font-size: 16px;
  line-height: 1.6;
  text-transform: uppercase;
  font-weight: 400;
  text-align: center;
}

.spec-table th.corner {
  background: #fff;
}

.notice-bar {
  font-size: 16px;
  line-height: 1.6;
  text-transform: uppercase;
  font-weight: 400;
  text-align: center;
  font-style: italic;
  color: #FF0000;
  padding: 40px 0 0;
}

.specification-action {
  text-align: center;
}

.specification-image {
  text-align: center;
  margin: 40px 0;
}

.construction-features h2.sec-title {
  text-align: left;
}

.construction-specification {
  padding-top: 120px;
}

.construction-features ul {
  padding: 0;
  margin: 0;
}

.construction-features ul li {
  list-style: none;
  font-size: 18px;
  line-height: 1.6;
  text-transform: uppercase;
  font-weight: 400;
}

.builder-inspiration-bar {
  text-align: center;
  padding: 60px 0 0;
}

.builder-inspiration-action {
  margin: 0 0 50px;
}

.colors-factory {
  padding: 80px 0px 20px;
}

.colors-factory .divider-line {
  min-width: 650px;
}

.colors-factory-image {
  text-align: center;
  margin: 0 0 30px;
}

.colors-factory-content {
  background: #000;
  padding: 30px 30px 10px;
}

.colors-factory-content p {
  font-size: 16px;
  line-height: 1.6;
  color: #fff;
  text-transform: uppercase;
  font-weight: 400;
  margin: 0 0 20px;
}

.help-action {
  text-align: center;
  padding: 40px 0;
}

.help-action p {
  font-size: 16px;
  line-height: 1.6;
  text-transform: uppercase;
  font-weight: 400;
  margin: 30px 0 0;
}

/* 
.offer-specifications .row .col-md-4 {
  margin: 0;
  padding: 0 20px;
}

.offer-specifications .row {
  margin: 0 -20px;
} */

.offer-card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 2px;
}

.offer-card img {
  height: 500px;
  width: 100%;
  object-fit: cover;
}

.offer-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.05) 0%,
      rgba(0, 0, 0, 0.35) 60%,
      rgba(0, 0, 0, 0.55) 100%);
  transition: background 0.4s ease;
  z-index: 1;
}

.offer-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: #fff;
  text-align: center;
  font-size: clamp(1.25rem, 3vw, 3rem);
  font-weight: 400;
  line-height: 1.25;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.4);
}

.offer-card:hover::after {
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.08) 0%,
      rgba(0, 0, 0, 0.42) 60%,
      rgba(0, 0, 0, 0.62) 100%);
}

@media (max-width: 1600px) {
  .px-100 {
    padding-left: 60px !important;
    padding-right: 60px !important;
  }
}

@media (max-width: 1440px) {
  .table-header {
    font-size: 1.2rem;
  }

  .px-100 {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }

  .spec-detail-section {
    padding: 60px 0 0;
  }
}

@media (max-width: 1200px) {
  .offer-card img {
    height: 400px;
  }
}

@media (max-width: 991px) {
  .construction-specification {
    padding-top: 40px;
  }

  .spec-table table tr {
    display: flex;
    flex-direction: column;
  }

  .spec-table td.row-label {
    width: 100%;
    background-image: linear-gradient(to right, #391110, #e9886b);
    color: #fff;
    text-align: left;
  }

  .spec-table th,
  .spec-table td {
    text-align: left;
  }

  .table-header {
    text-align: left;
  }

  .spec-table td.span-data {
    text-align: left;
  }

  .spec-table .corner {
    display: none;
  }

  .notice-bar {
    padding: 30px 0 0;
  }

  .spec-detail-section {
    padding: 40px 0 0;
  }

  .specification-image {
    margin: 30px 0;
  }

  .builder-inspiration-bar {
    padding: 40px 0 0;
  }

  .builder-inspiration-action {
    margin: 0 0 30px;
  }

  .colors-factory {
    padding: 50px 0px 20px;
  }

  .help-action {
    padding: 30px 0;
  }

  .help-action p {
    margin: 20px 0 0;
  }

  .offer-card img {
    height: 300px;
  }

  .px-100 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  }
}

@media (max-width: 768px) {
  .cat-label {
    font-size: 1.1rem;
    bottom: 18px;
    left: 16px;
  }
}

@media (max-width: 767px) {
  .table-header {
    font-size: 1rem;
  }

  .spec-table tr.group-header th {
    font-size: 14px;
    padding: 10px 15px;
  }

  .spec-table tr.code-header th {
    font-size: 14px;
    padding: 10px 15px;
  }

  .spec-table td.row-label {
    font-size: 16px;
  }

  .spec-table th,
  .spec-table td {
    padding: 10px 15px;
  }

  .spec-table td.data,
  .spec-table td.span-data {
    font-size: 14px;
    line-height: 1.4;
  }

  .spec-table {
    margin: 30px 0 0;
  }

  .notice-bar {
    padding: 20px 0 0;
  }

  .construction-features ul li {
    font-size: 16px;
  }

  .specification-image {
    margin: 20px 0;
  }

  .builder-inspiration-bar {
    padding: 30px 0 0;
  }

  .builder-inspiration-action {
    margin: 0 0 20px;
  }

  .colors-factory-image {
    margin: 0 0 20px;
  }

  .colors-factory-content {
    padding: 20px 20px 10px;
  }

  .help-action {
    padding: 20px 0;
  }

  .help-action p {
    margin: 15px 0 0;
  }

  .offer-label {
    font-size: clamp(1.55rem, 3vw, 3rem);
  }

  .colors-factory-content p {
    margin: 0 0 15px;
  }

  .colors-factory .divider-line {
    min-width: 180px;
  }
}

@media (max-width: 576px) {

  /* .px-100 {
    padding-left: 15px !important;
    padding-right: 15px !important;
  } */
  .offer-card img {
    height: 380px;
  }
}

/* Product Detail Page Css End */

/* Cabinet Catalog Page Css Start */

.cabinet-catalog-section {
  padding: 80px 0 0;
}

.cabinet-catalog-section .container {
  padding-bottom: 60px;
  max-width: 1100px;
}

.cabinet-catalog-section .container:last-child {
  padding-bottom: 0;
}

.cabinet-catalog-section .catalog-image img {
  padding: 4px;
  border: 1px solid #ddd;
}

/* ── CAROUSEL WRAPPER ── */
.carousel-outer {
  width: 100%;
  position: relative;
  margin: 24px 0 0;
}

/* ── SLIDE IMAGES ── */
.carousel-outer .slick-slide img {
  width: 100%;
  height: auto;
  display: block;
}

/* ── FADE ── */
.carousel-outer .slick-slide {
  padding: 4px;
  border: 1px solid #ddd;
  opacity: 0 !important;
  transition: opacity .65s ease !important;
}

.carousel-outer .slick-active {
  opacity: 1 !important;
}

/* ── ARROWS — hidden, nav handled below ── */
.carousel-outer .slick-prev,
.carousel-outer .slick-next {
  display: none !important;
}

.carousel-outer .slick-dots {
  display: none !important;
}

/* ── BOTTOM NAV BAR ── */
.carousel-outer .nav-bar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 14px 0px 0px;
  border-top: 0.5px solid rgba(255, 255, 255, .1);
}

.carousel-outer .nav-btn {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gold);
  font-size: 15px;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 0px;
  transition: color .2s;
  user-select: none;
}

.carousel-outer .nav-btn svg {
  width: 8px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.carousel-outer .nav-sep {
  color: rgba(255, 255, 255, .2);
  font-size: 14px;
  padding: 0 6px;
  user-select: none;
}

.carousel-outer .nav-counter {
  font-size: 16px;
  color: var(--gold);
  letter-spacing: 1px;
  min-width: 48px;
  text-align: center;
  user-select: none;
}

.carousel-outer .nav-counter .cur {
  color: var(--gold);
  margin-right: 2px;
}

.carousel-outer .nav-counter #tot {
  margin-left: 2px;
}

/* Responsive CSS Start */

@media (max-width: 1440px) {
  .cabinet-catalog-section {
    padding: 60px 0 0;
  }
}

@media (max-width: 768px) {
  .cabinet-catalog-section .container {
    padding-bottom: 40px;
  }

  .cabinet-catalog-section {
    padding: 40px 0 0;
  }
}

/* Cabinet Catalog Page Css End */


/* Meet The Team Page Css Start */

.team-hero-section .banner-image:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.2);
}

.banner-section.team-hero-section .banner-image::before {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.our-team-section {
  padding: 80px 0 0;
}

.our-team-section .sec-title {
  font-family: 'Versailles';
  font-size: 3rem;
  letter-spacing: 4px;
}

.team-item {
  text-align: center;
  margin-left: 5px;
}

.team-item img {
  height: 600px;
  object-fit: cover;
}

.team-item h4 {
  margin: 20px 0px 10px;
  font-size: 20px;
  font-weight: 400;
  letter-spacing: 1px;
  color: #000000;
  line-height: 24px;
  text-transform: uppercase;
}

.team-item p {
  font-size: 16px;
  font-weight: 400;
  color: #000000;
  line-height: 24px;
  letter-spacing: 1px;
  width: 500px;
  margin: 0 auto;
}

.team-text {
  display: none;
}

.slick-center .team-text {
  display: block;
}

.our-team-box {
  margin: 40px 0 0;
}

.team-item.slick-slide {
  opacity: 0.3;
}

.team-item.slick-slide.slick-center {
  opacity: 1;
}

.our-team-box button.slick-arrow {
  top: calc(0% + 300px);
  opacity: 0;
  transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.our-team-box:hover button.slick-arrow {
  opacity: 1;
}

.our-team-box button.slick-prev {
  left: 0;
  background-color: rgba(22, 22, 22, 0.5);
  height: 44px;
  width: 40px;
  z-index: 1;
}

.our-team-box button.slick-prev:before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath fill='%23ffffff' d='M34.52 239.03L228.87 44.68c9.37-9.37 24.57-9.37 33.94 0l22.67 22.67c9.36 9.37 9.36 24.57 0 33.94L131.49 256l154 154.71c9.36 9.37 9.36 24.57 0 33.94l-22.67 22.67c-9.37 9.37-24.57 9.37-33.94 0L34.52 272.97c-9.37-9.37-9.37-24.57 0-33.94z'/%3E%3C/svg%3E");
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.our-team-box button.slick-next {
  right: 0;
  background-color: rgba(22, 22, 22, 0.5);
  height: 44px;
  width: 40px;
  z-index: 1;
}

.our-team-box button.slick-next:before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-color: #fff;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath d='M285.5 272.97L91.1 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.7-22.7c-9.4-9.4-9.4-24.6 0-33.9L188.5 256 34.5 102.1c-9.4-9.4-9.4-24.6 0-33.9L57.2 45.5c9.4-9.4 24.6-9.4 33.9 0l194.3 194.3c9.4 9.4 9.4 24.6.1 34.1z'/%3E%3C/svg%3E") center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 320 512'%3E%3Cpath d='M285.5 272.97L91.1 467.3c-9.4 9.4-24.6 9.4-33.9 0l-22.7-22.7c-9.4-9.4-9.4-24.6 0-33.9L188.5 256 34.5 102.1c-9.4-9.4-9.4-24.6 0-33.9L57.2 45.5c9.4-9.4 24.6-9.4 33.9 0l194.3 194.3c9.4 9.4 9.4 24.6.1 34.1z'/%3E%3C/svg%3E") center/contain no-repeat;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/* Responsive */

@media (max-width: 1600px) {
  .team-hero-section .banner-image img {
    object-position: 100% 25%;
  }
}

@media (max-width: 1440px) {
  .our-team-box button.slick-arrow {
    top: calc(0% + 240px);
  }

  .team-item img {
    height: 480px;
  }

  .our-team-section {
    padding: 60px 0 0;
  }

  .our-team-box {
    margin: 40px 0 0;
  }
}

@media (max-width: 1200px) {
  .team-hero-section .banner-image img {
    object-position: 100% 30%;
  }
}

@media (max-width: 1024px) {
  .our-team-box {
    margin: 50px 0 0;
  }

  .our-team-section .sec-title {
    letter-spacing: 10px;
  }
}

@media (max-width: 991px) {
  .our-team-section {
    padding: 40px 0;
  }

  .our-team-box {
    margin: 30px 0 0;
  }

  .our-team-section .sec-title {
    letter-spacing: 4px;
    font-size: 2rem;
  }

  .team-item img {
    height: 480px;
  }

  .team-item p {
    width: 400px;
  }

  .our-team-box button.slick-arrow {
    top: calc(0% + 240px);
  }
}

@media (max-width: 767px) {

  .our-team-box button.slick-next,
  .our-team-box button.slick-prev {
    opacity: 1;
  }

  .team-item img {
    height: 340px;
    width: 100%;
    object-fit: contain;
  }

  .team-item h4 {
    margin: 20px 0 10px;
  }

  .team-item p {
    width: 100%;
  }

  .our-team-section .sec-title {
    letter-spacing: 2px;
    font-size: 1.6rem;
    line-height: 1.2;
  }

  .team-item {
    margin-left: 0;
  }

  .our-team-box button.slick-arrow {
    top: calc(0% + 170px);
  }
}


@media (max-width: 480px) {
  .our-team-section .sec-title {
    font-size: 1.5rem;
    letter-spacing: 1px;
  }

  .team-item img {
    object-fit: cover;
  }
}

/* Meet The Team Page Css End */

/* pricing comparision page section 2 start */
.pricing-comparision-section-2 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.pricing-comparision-section-2 .pricing-comparision-section-2-title-wrapper {
  margin-bottom: 0;
}

.pricing-comparision-section-2 .pricing-comparision-section-2-title-box {
  padding: 0;
}

.pricing-comparision-section-2 .pricing-comparision-section-2-title {
  font-family: 'Versailles', serif;
  font-size: 32px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 6px;
  line-height: 1.4;
  font-weight: 400;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

/* pricing comparision page section 2 end */


/* pricing comparision page section 3 start */
.pricing-comparision-section-3 {
  padding-bottom: 80px;
}

.pricing-comparision-section-3 .pricing-comparision-section-3-table {
  width: 100%;
}

.pricing-comparision-section-3 .pricing-comparision-section-3-table-head {
  background: #666366;
  color: #fff;
  text-align: center;
  padding: 22px;
  font-size: 24px;
  text-transform: uppercase;
  border: 1px solid #222;
}

.pricing-comparision-section-3 .pricing-comparision-section-3-table table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.pricing-comparision-section-3 .pricing-comparision-section-3-table table tr td {
  border: 1px solid #222;
  padding: 20px 20px;
  font-size: 18px;
  color: #111;
  text-align: center;
  width: 50%;
}

/* pricing comparision page section 3 end */

/* pricing comparision page section 4 start */

.pricing-comparision-section-4 {
  padding-bottom: 80px;
}

.pricing-comparision-section-4 .pricing-comparision-section-4-head {
  text-align: center;
  margin-bottom: 30px;
}

.pricing-comparision-section-4 .pricing-comparision-section-4-head h2 {
  font-family: 'Versailles', serif;
  font-size: 32px;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 6px;
  line-height: 1.4;
  font-weight: 400;
}

.pricing-comparision-section-4 .pricing-comparision-section-4-table {
  width: 100%;
  overflow-x: auto;
}

.pricing-comparision-section-4 .pricing-comparision-section-4-table table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.pricing-comparision-section-4 .pricing-comparision-section-4-table-head-row th {
  border: 1px solid #222;
  background: #111;
  color: #fff;
  padding: 22px 12px;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
}

.pricing-comparision-section-4 .pricing-comparision-section-4-table-head-highlight {
  background: #b79e82 !important;
}

.pricing-comparision-section-4 .pricing-comparision-section-4-table-body-row td {
  border: 1px solid #222;
  padding: 20px 12px;
  font-size: 18px;
  text-align: center;
  color: #111;
}

.pricing-comparision-section-4 .pricing-comparision-section-4-table-price {
  color: #00bf63 !important;
  font-weight: 700;
}

.pricing-comparision-section-4 .pricing-comparision-section-4-table-total-row td {
  border: 1px solid #222;
  padding: 22px 12px;
  font-size: 22px;
  font-weight: 700;
  text-align: center;
}

.pricing-comparision-section-4 .pricing-comparision-section-4-table-total-title {
  background: #000;
  color: #fff;
}

.pricing-comparision-section-4 .pricing-comparision-section-4-table-total-price {
  background: #EBEAD4;
  color: #00bf63;
}

.pricing-comparision-section-4 .pricing-comparision-section-4-table-total-save {
  background: #E8F4D4;
  color: #00bf63;
}

/* pricing comparision page section 4 end */


/* pricing comparision page section 5 start */

.pricing-comparision-section-5 {
  padding-bottom: 80px;

}

.pricing-comparision-section-5-main {
  background-color: #E8F4D4;
  border-radius: 0px;
}


.pricing-comparision-section-5-wrapper {
  padding: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  max-width: 1200px;
  margin: auto;
}

.pricing-comparision-section-5-wrapper h2 {
  font-size: 85px;
  text-align: center;
  letter-spacing: 2px;
  color: #00c94b;
}

.pricing-comparision-section-5-wrapper h6 {
  font-size: 20px;
  /* font-family: 'Versailles', serif; */
  letter-spacing: 2px;
  line-height: 1.4;
  font-weight: 400;
  text-align: center;
}


.pricing-comparision-section-5-wrapper p {
  font-size: 18px;
  color: var(--red);
  /* font-family: 'Versailles', serif; */
  text-align: center;
  letter-spacing: 2px;
  font-style: italic;
}


/* pricing comparision page section 5 end */

/* pricing comparision page section 6 start */
.pricing-comparision-section-6 {
  padding-bottom: 80px;
}

.pricing-comparision-section-6-main {
  width: 100%;
}

.pricing-comparision-section-6-card {
  width: 100%;
  background: #fff;
  border: 1px solid #cfcfcf;
  border-radius: 30px;
  padding: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
  height: 100%;
}

.pricing-comparision-section-6-card-head {
  background: #A48A70;
  color: #fff;
  text-align: center;
  border-radius: 30px;
  font-size: 22px;
  letter-spacing: 2px;
  font-weight: 600;
  min-height: 85px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 18px;
  margin-bottom: 35px;
}

.pricing-comparision-section-6-card-head-light {
  background: #d8d8d8;
  color: #000;
}

.pricing-comparision-section-6-card-list {
  list-style: none;
  padding: 0 18px 20px;
  margin: 0;
}

.pricing-comparision-section-6-card-list li {
  font-size: 18px;
  color: #222;
  letter-spacing: 0px;
  margin-bottom: 22px;
  line-height: 1.4;
  position: relative;
  padding-left: 34px;
}

.pricing-comparision-section-6-card-list-check li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2315b64a' stroke-width='3'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M5 13l4 4L19 7'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}

.pricing-comparision-section-6-card-list-cross li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23ff3a3a' stroke-width='3'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M6 6L18 18M18 6L6 18'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}

.pricing-comparision-section-6-card-list-cross li.eqal-icon::before {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M3 12c3-3 6-3 9 0s6 3 9 0' fill='none' stroke='%23333' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center;
}

/* pricing comparision page section 6 end */


/* pricing comparision page section 7 start */


.pricing-comparision-section-7 {
  padding-bottom: 40px;
}

.pricing-comparision-section-7-box {
  background: #000;
  text-align: center;
  padding: 80px 40px;
}

.pricing-comparision-section-7-title {
  color: #fff;
  font-size: 30px;
  letter-spacing: 2px;
  font-weight: 700;
  margin-bottom: 35px;
  text-transform: uppercase;
}

.pricing-comparision-section-7-subtitle {
  max-width: 1070px;
  margin-left: auto;
  margin-right: auto;
}

.pricing-comparision-section-7-subtitle {
  color: #d9d9d9;
  font-size: 18px;
  letter-spacing: 0px;
  line-height: 1.8;
  margin-bottom: 55px;
  text-transform: uppercase;
}

.pricing-comparision-section-7-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 320px;
  height: 70px;
  padding: 0 30px;
  text-decoration: none;
  font-size: 15px;
  letter-spacing: 1.5px;
  font-weight: 700;
  text-transform: uppercase;
  transition: .3s;
}

.pricing-comparision-section-7-btn-primary {
  background: #A48A70;
  color: #fff;
}

.pricing-comparision-section-7-btn-secondary {
  background: #e5e5e5;
  color: #000;
}

.pricing-comparision-section-7-btn-primary:hover {
  background-color: #fff;
  color: #000;
}

.pricing-comparision-section-7-btn-secondary:hover {
  background-color: #b59a79;
  color: #fff;
}


/* pricing comparision page section 7 end */

/* Spec book request modal */
.spec-book-modal .modal-content {
  border: none;
  border-radius: 0;
  overflow: hidden;
}

.spec-book-modal .modal-header {
  background: #a48a70;
  color: #fff;
  border-bottom: 3px solid #b58e58;
  padding: 24px 24px 24px;
  align-items: flex-start;
  border-radius: 0px;
}

.spec-book-modal .modal-title {
  color: #fff;
  font-size: 22px;
  letter-spacing: 3px;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 12px;
}

.spec-book-modal__desc {
  color: #ffffff;
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
  max-width: 420px;
  letter-spacing: 0.5px;
}

.spec-book-modal .modal-body {
  padding: 28px 36px 10px;
  background: #fff;
}

.spec-book-modal__label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #1a1a1a;
  margin-bottom: 10px;
}

.spec-book-modal__required {
  color: #f44336;
}

.spec-book-modal__input {
  width: 100%;
  height: 52px;
  padding: 0 16px;
  border: 1px solid #d5d5d5;
  border-radius: 0;
  font-size: 15px;
  color: #1a1a1a;
  transition: border-color 0.2s ease;
}

.spec-book-modal__input:focus {
  outline: none;
  border-color: #b58e58;
  box-shadow: none;
}

.spec-book-modal__input.is-invalid {
  border-color: #f44336;
}

.spec-book-modal__error {
  display: block;
  color: #f44336;
  font-size: 12px;
  margin-top: 8px;
  min-height: 18px;
}

.spec-book-modal .modal-footer {
  border-top: 1px solid #eaeaea;
  padding: 20px 36px 28px;
  background: #fff;
  gap: 12px;
}

.spec-book-modal__btn {
  min-width: 140px;
  height: 48px;
  padding: 0 24px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border: none;
  transition: 0.3s ease;
}

.spec-book-modal__btn-cancel {
  background: #e5e5e5;
  color: #000;
}

.spec-book-modal__btn-cancel:hover {
  background: #d0d0d0;
  color: #000;
}

.spec-book-modal__btn-submit {
  background: #A48A70;
  color: #fff;
}

.spec-book-modal__btn-submit:hover:not(:disabled) {
  background: #000;
  color: #fff;
}

.spec-book-modal__btn-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

@media (max-width: 575px) {

  .spec-book-modal .modal-header,
  .spec-book-modal .modal-body,
  .spec-book-modal .modal-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .spec-book-modal .modal-footer {
    flex-direction: column;
  }

  .spec-book-modal__btn {
    width: 100%;
  }
}


@media(max-width:1440px) {

  /* pricing-comprision-page-responsive start */
  .pricing-comparision-section-2,
  .pricing-comparision-section-3,
  .pricing-comparision-section-4,
  .pricing-comparision-section-5,
  .pricing-comparision-section-6,
  .pricing-comparision-section-7 {
    padding-bottom: 40px;
  }

  /* pricing-comprision-page-responsive end */


  /* about-us-responsive start */
  /* .about-page-section {
    padding-top: 200px;
  } */

  .about-two-section,
  .about-three-section,
  .about-four-section,
  .about-five-section {
    padding-bottom: 40px;
  }

  .about-three-section,
  .about-four-section {
    padding-top: 0;
  }

  .about-title-wrapper {
    margin-bottom: 0;
  }

  /* .about-two-section {
    padding-top: 60px;
  } */

  .about-text-box {
    padding: 30px;
  }

  .about-feature-card {
    min-height: 100px;
  }

  .about-four-card-title,
  .about-feature-text {
    font-size: 20px;
  }

  .about-four-subheading {
    margin-bottom: 25px;
  }

  .about-four-card-body {
    font-size: 18px;
    line-height: 1.3;
  }


  /* about-us-responsive end */

}




@media (max-width:1366px) {
  /* about-us-responsive start */


  .about-paragraph {
    letter-spacing: normal;
  }


  /* about-us-responsive end */
}

@media(max-width:1200px) {

  /* pricing-comprision-page-responsive start */

  .pricing-comparision-section-2 .pricing-comparision-section-2-title,
  .pricing-comparision-section-4 .pricing-comparision-section-4-head h2 {
    font-size: 32px;
  }

  .pricing-comparision-section-4 .pricing-comparision-section-4-table-total-row td {
    font-size: 18px;
  }

  .pricing-comparision-section-4 .pricing-comparision-section-4-table-head-row th {
    padding: 12px;
    font-size: 16px;

  }

  /* pricing-comprision-page-responsive end */

  /* about-us-responsive start */
  .about-paragraph {
    font-size: 16px;
  }

  .about-page-section.pt-240 {
    padding-top: 140px;
  }

  .about-title {
    font-size: 48px;
    line-height: 60px;
  }

  /* about-us-responsive end */

}

@media(max-width:991px) {
  .about-title {
    font-size: 38px;
    line-height: 48px;
  }

  /* pricing-comprision-page-responsive start */

  .pricing-comparision-section-2,
  .pricing-comparision-section-3,
  .pricing-comparision-section-4,
  .pricing-comparision-section-5,
  .pricing-comparision-section-6,
  .pricing-comparision-section-7 {
    padding-bottom: 40px;
  }

  .pricing-comparision-section-2 .pricing-comparision-section-2-title {
    font-size: 30px;
  }

  .pricing-comparision-section-3 .pricing-comparision-section-3-table-head {
    font-size: 18px;
    padding: 18px;
  }

  .pricing-comparision-section-3 .pricing-comparision-section-3-table table tr td {
    font-size: 16px;
    padding: 18px 12px;
  }

  .pricing-comparision-section-4 .pricing-comparision-section-4-head h2 {
    font-size: 26px;
    letter-spacing: 5px;
  }

  .pricing-comparision-section-4 .pricing-comparision-section-4-table-head-row th,
  .pricing-comparision-section-4 .pricing-comparision-section-4-table-body-row td,
  .pricing-comparision-section-4 .pricing-comparision-section-4-table-total-row td {
    font-size: 17px;
    padding: 16px 10px;
  }

  .pricing-comparision-section-5-wrapper {
    padding: 50px 0;
    max-width: 100%;
    gap: 20px;
  }

  .pricing-comparision-section-5-wrapper h2 {
    font-size: 70px;
  }

  .pricing-comparision-section-6-card-head {
    font-size: 18px;
    letter-spacing: 2px;
    min-height: 90px;
  }

  .pricing-comparision-section-6-card-list li {
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 16px;
  }

  .pricing-comparision-section-7-box {
    padding: 50px 25px;
  }

  .pricing-comparision-section-7-title {
    font-size: 24px;
    letter-spacing: 2px;
  }

  .pricing-comparision-section-7-subtitle {
    font-size: 14px;
    letter-spacing: 2px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
  }

  .pricing-comparision-section-7-btn {
    min-width: 260px;
    height: 60px;
    font-size: 13px;
  }

  .pricing-comparision-section-5-wrapper h6 {
    letter-spacing: 2px;
    font-size: 16px;
  }

  .pricing-comparision-section-5-wrapper p {
    font-size: 16px;
  }

  .pricing-comparision-section-6-card-list li {
    letter-spacing: normal;
    font-size: 16px;
  }

  .pricing-comparision-section-6-card-head {
    font-size: 18px;
    letter-spacing: normal;
  }

  /* pricing-comprision-page-responsive end */

  /* about-us-responsive start */
  .about-two-section,
  .about-three-section,
  .about-four-section,
  .about-five-section {
    padding-bottom: 40px;
  }

  .about-two-section {
    padding-top: 40px;
  }

  .about-page-section {
    padding-top: 140px;

  }

  .about-four-card-body {
    font-size: 16px;
  }

  .about-four-card-title {
    font-size: 18px;
  }

  .about-two-heading,
  .about-four-heading {
    font-size: 30px;
  }

  .about-two-text-block {
    padding: 25px;
  }

  .about-feature-card {
    justify-content: center;
  }

  .about-feature-text br {
    display: none;
  }

  /* about-us-responsive end */

}

@media(max-width:768px) {
  .about-page-section.pt-240 {
    padding-top: 140px;
  }

  /* .about-title::after {
    bottom: -4px;
  } */

  .about-page-section.pt-240 {
    padding-bottom: 0px;
  }

  .about-two-row {
    margin-bottom: 40px;
  }

  .about-two-section {
    padding-bottom: 20px;
  }

  .about-four-section {
    padding-bottom: 0PX;
  }
}


@media(max-width:767px) {
  .pricing-comparision-section-7-box .col-auto {
    flex: 100%;
    width: 100%;
  }
}

@media(max-width: 640px) {
  .about-page-section.pt-5 {
    padding-top: 2rem !important;
    padding-bottom: 0rem !important;
  }

  .about-page-section.pricing-comparision-section-2 .about-content-row>[class*="col-"],
  .about-page-section.warehouse-about-section .about-content-row>[class*="col-"],
  .about-page-section.pt-5 .about-content-row>[class*="col-"] {
    padding-left: 15px;
    padding-right: 15px;
  }

  .about-paragraph {
    font-size: 14px;
  }

  .about-p-first {
    margin-bottom: 10px;
  }

  .about-title {
    font-size: 36px;
    line-height: 48px;
  }

  .about-two-paragraph {
    font-size: 14px;
  }

  .about-four-subheading {
    font-size: 14px;
    font-weight: 400;
    text-align: center;
  }

  .about-four-card {
    padding: 20px 20px;
  }

  .about-four-card-title {
    font-size: 16px;
    margin-bottom: 10px;
  }

  .about-page-section.pt-240 {
    padding-top: 120px;
  }
}

@media(max-width:768px) {


  /* pricing-comprision-page-responsive start */
  .pricing-comparision-section-2 .pricing-comparision-section-2-title {
    font-size: 25px;
  }

  .pricing-comparision-section-2 {
    padding: 30px 0;
  }

  .pricing-comparision-section-3 .pricing-comparision-section-3-table table tr td:first-child {
    width: 75%;
  }

  .pricing-comparision-section-3 .pricing-comparision-section-3-table table tr td:last-child {
    width: 25%;
  }

  .pricing-comparision-section-3 .pricing-comparision-section-3-table table tr td {
    font-size: 17px;
    padding: 15px 10px;
  }

  .pricing-comparision-section-3 .pricing-comparision-section-3-table-head {
    font-size: 15px;
  }

  .pricing-comparision-section-3 {
    padding-bottom: 30px;
  }

  .pricing-comparision-section-4 {
    padding-bottom: 30px;
  }

  .pricing-comparision-section-4 .pricing-comparision-section-4-head {
    margin-bottom: 15px;
  }

  .pricing-comparision-section-5 {
    padding-bottom: 30px;
  }

  .pricing-comparision-section-6 {
    padding-bottom: 30px;
  }

  .pricing-comparision-section-7 {
    padding-bottom: 30px;
  }

  .about-content-row {
    margin-top: 15px;
  }

  .pricing-comparision-section-5-wrapper {
    padding: 25px 0;
  }

  .pricing-comparision-section-5-wrapper h2 {
    font-size: 50px;
    letter-spacing: normal;
  }

  .pricing-comparision-section-4 table tr {
    display: flex;
    flex-direction: column;

  }

  /* pricing-comprision-page-responsive end */

}

@media(max-width:767px) {

  /* pricing-comprision-page-responsive start */

  /* .pricing-comparision-section-4 .pricing-comparision-section-4-table table {
    min-width: 100%;
  } */

  .pricing-comparision-section-4 .pricing-comparision-section-4-head h2 {
    font-size: 25px;
    letter-spacing: 3px;
  }

  .pricing-comparision-section-6-card {
    border-radius: 20px;
  }

  .pricing-comparision-section-6-card-head {
    font-size: 15px;
    min-height: fit-content;
  }

  .pricing-comparision-section-6-card-list li {
    font-size: 14px;
  }

  .pricing-comparision-section-7-btn {
    width: 100%;
    min-width: 100%;
  }

  .pricing-comparision-section-7-title {
    font-size: 18px;
  }

  .pricing-comparision-section-7-subtitle {
    font-size: 12px;
  }

  /* pricing-comprision-page-responsive end */

  /* about-us-responsive start */
  .about-four-row {
    gap: 20px;
  }

  /* about-us-responsive end */
  .about-page-section.warehouse-about-section .about-title-wrapper,
  .pricing-comparision-section-2 .pricing-comparision-section-2-title-wrapper {
    margin-bottom: 24px;
  }
}

@media (max-width:480px) {
  /* pricing-comprision-page-responsive start */

  .pricing-comparision-section-2 .pricing-comparision-section-2-title,
  .pricing-comparision-section-4 .pricing-comparision-section-4-head h2 {
    font-size: 22px;
    padding: 0;
    letter-spacing: 2.4px;
  }

  .about-page-section.pt-240 {
    padding-top: 100px;
  }

  .pricing-comparision-section-5-wrapper h2 {
    font-size: 42px;
    letter-spacing: normal;
  }

  /* pricing-comprision-page-responsive end */

  /* about-us-responsive start */

  .about-two-heading,
  .about-four-heading {
    font-size: 20px;
    letter-spacing: normal;
    margin-bottom: 10px;
  }

  .about-two-text-block,
  .about-text-box {
    padding: 20px;
  }

  .about-two-row {
    margin-bottom: 30px;
  }

  .about-two-section {
    padding-top: 25px;
  }

  .about-title {
    font-size: 24px;
    line-height: 36px;
    padding: 10px 6px;
  }

  .about-feature-text {
    font-size: 18px;
  }

  .about-feature-grid>[class*="col-"] {
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 15px;
  }

  .about-feature-grid {
    margin-left: -15px;
    margin-right: -15px;
  }

  /* about-us-responsive end */

}

/* HCC Gallery SLider CSS Start */


/* --- CSS STARTS HERE --- */
:root {
  /* Desktop Variables */
  --base-width: 180px;
  --base-height: 300px;
  --active-scale: 1.25;
  --inactive-scale: 0.72;
  /* Kitne cards dikhane hain (Exactly 4 Left & 4 Right) */
  --visible-cards: 4;
}

.hcc-gallery-slider {
  padding: 0;
}

.hcc-gallery-slider .slider-section {
  position: relative;
  width: 100%;
  height: 480px;
  overflow: hidden;
  touch-action: pan-y;
  border-radius: 10px;
}

.hcc-gallery-slider .slider-track {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hcc-gallery-slider .slide {
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--base-width);
  height: var(--base-height);
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1),
    opacity 0.4s ease-in-out,
    z-index 0s;
  will-change: transform, opacity;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  transform: translate(-50%, -50%) scale(var(--inactive-scale));

}

.hcc-gallery-slider .slide a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

.hcc-gallery-slider .slide img,
.hcc-gallery-slider .slide a img {
  width: 100%;
  height: calc(100% - 40px);
  object-fit: contain;
  margin-bottom: 12px;
  pointer-events: none;
}

.hcc-gallery-slider .slide p,
.hcc-gallery-slider .slide a p {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0.5px;
  color: #333;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
  pointer-events: none;
}

.hcc-gallery-slider .slide.active p,
.hcc-gallery-slider .slide.active a p {
  color: #000;
  font-size: 12px;
}

/* Navigation Arrows */
.hcc-gallery-slider .arrow-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 50%;
  cursor: pointer;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  /* box-shadow: 0 12px 30px rgba(0, 0, 0, 0.02); */
  background-color: transparent;
}

.hcc-gallery-slider #nextBtn {
  right: 42.5% !important;
  left: auto !important;
}

@media (min-width: 1921px) {
  .hcc-gallery-slider #nextBtn {
    right: 44.5% !important;
  }
}

.hcc-gallery-slider .arrow-icon {
  fill: #3f3f3f;
  width: 22px;
  height: 22px;
}

/* Responsive Breakpoints */

@media (max-width: 1640px) {
  .hcc-gallery-slider #nextBtn {
    right: 40.5% !important;
  }
}

@media (max-width: 1280px) {
  .hcc-gallery-slider #nextBtn {
    right: 40% !important;
  }
}

@media (max-width: 1100px) {
  .hcc-gallery-slider #nextBtn {
    right: 36% !important;
  }
}

@media (max-width: 768px) {
  .hcc-gallery-slider #nextBtn {
    right: 34% !important;
  }
}

@media (max-width: 600px) {
  .hcc-gallery-slider #nextBtn {
    right: 30% !important;
  }
}

@media (max-width: 540px) {
  .hcc-gallery-slider #nextBtn {
    right: 22% !important;
  }
}

@media (max-width: 480px) {
  .hcc-gallery-slider #nextBtn {
    right: 16% !important;
  }
}

@media (max-width: 1500px) {
  .hcc-gallery-slider .slider-section {
    height: 420px;
  }
}

/* EXACTLY 3 Cards (< 1200px) */
@media (max-width: 1200px) {
  :root {
    --visible-cards: 3;
  }
}

/* EXACTLY 2 Cards (< 900px) */
@media (max-width: 900px) {
  :root {
    --base-width: 140px;
    --base-height: 230px;
    --visible-cards: 2;
  }

  .hcc-gallery-slider .slider-section {
    height: 400px;
  }

  .hcc-gallery-slider .arrow-icon {
    width: 24px;
    height: 24px;
  }
 .hcc-gallery-slider .slide a p,
  .hcc-gallery-slider .slide p {
    font-size: 14px;
  }
}

/* Mobile (< 600px) - EXACTLY 1 Card with Peek */
@media (max-width: 600px) {
  :root {
    --base-width: 200px;
    --base-height: 300px;
    --active-scale: 1.2;
    --inactive-scale: 0.78;
    --visible-cards: 1;
  }

  .hcc-gallery-slider .slider-section {
    height: 360px;
  }



  .hcc-gallery-slider .arrow-icon {
    width: 22px;
    height: 22px;
  }

  .hcc-gallery-slider .slide p {
    font-size: 11px;
  }
}

@media (max-width: 480px) {
  .hcc-gallery-slider #prevBtn {
    left: 60px !important;
  }
}

/* Start Terms & Conditions Page Styles */
.terms-conditions-section {
  padding: 80px 0px 40px;
  background-color: #ffffff;
}

.terms-conditions-section .terms-block {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #eaeaea;
}

.terms-conditions-section .terms-block:last-of-type {
  border-bottom: none;
  margin-bottom: 20px;
  padding-bottom: 0;
}

.terms-conditions-section .terms-heading {
  font-size: 24px;
  font-weight: 500;
  color: #8b7635;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
  line-height: 1.4;
}

.terms-conditions-section .terms-num {
  font-weight: 700;
  margin-right: 8px;
  color: #8b7635;
}

.terms-conditions-section .terms-subtitle {
  font-size: 15px;
  font-weight: 600;
  color: #636363;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.terms-conditions-section .terms-text {
  font-size: 18px;
  line-height: 1.85;
  color: #333333;
  text-align: justify;
  margin-bottom: 0;
}

.terms-conditions-section .terms-list {
  margin-top: 18px;
}

.terms-conditions-section .terms-list li {
  font-size: 18px;
  line-height: 1.85;
  color: #333333;
  margin-bottom: 12px;
  text-align: justify;
}

.terms-conditions-section .terms-list li::marker {
  color: #8b7635;
  font-weight: bold;
}

.terms-conditions-section .terms-list li:last-child {
  margin-bottom: 0;
}

.terms-conditions-section .terms-highlight-block {
  margin: 20px 0;
  padding: 12px 20px;
  background-color: #f7f7f7;
  border-left: 4px solid #8b7635;
}

.terms-conditions-section .terms-highlight-title {
  font-size: 16px;
  font-weight: 600;
  color: #111111;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.terms-conditions-section .terms-footer-text {
  font-size: 15px;
  color: #868686;
  text-align: left;
  margin-top: 40px;
  font-style: italic;
}

@media (max-width:991px) {
  .terms-conditions-section {
    padding-top: 0;
  }
}

@media (max-width: 768px) {
  .terms-conditions-section {
    padding: 30px 0 0;
  }

  .terms-conditions-section .terms-heading {
    font-size: 20px;
    margin-bottom: 14px;
  }

  .terms-conditions-section .terms-text,
  .terms-conditions-section .terms-list li {
    font-size: 17px;
    line-height: 24px;
  }

  .terms-conditions-section .terms-list {
    padding-left: 20px;
    margin-left: 5px;
  }

  .terms-conditions-section .terms-block {
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
}

/* End Terms & Conditions Page Styles */

/* FAQs Page Responsive Css Start */
.faq-section {
  padding: 80px 0 0;
}

.faq-header {
  text-align: center;
  margin-bottom: 60px;
}

.faq-header p {
  font-size: 20px;
  color: #000;
  line-height: 1.6;
  font-weight: 400;
  letter-spacing: 0.12em;
}

.faq-header a {
  color: #000;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq-list {
  list-style: none;
  padding: 0;
}

.faq-item {
  border-top: 1px solid #ddd;
}

.faq-item:last-child {
  border-bottom: 1px solid #ddd;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 4px;
  text-align: left;
  font-size: 22px;
  font-weight: 500;
  color: #000;
  letter-spacing: 0.01em;
  transition: color 0.2s;
  gap: 16px;
  letter-spacing: 1px;
}

.faq-question:hover {
  color: #888;
}

.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.faq-icon::before,
.faq-icon::after {
  content: '';
  position: absolute;
  background: #000;
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.faq-icon::before {
  width: 18px;
  height: 1px;
}

.faq-icon::after {
  width: 1px;
  height: 18px;
  transform: rotate(0deg);
}

.faq-item.open .faq-icon::after {
  transform: rotate(90deg);
  opacity: 0;
}

.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer-inner {
  padding: 0 4px 20px;
  font-size: 18px;
  color: #000;
  line-height: 1.8;
  font-weight: 400;
  letter-spacing: 0.6px;
}

.faq-answer-inner a {
  color: #000;
  text-decoration: underline;
}

@media (max-width: 1440px) {
  .faq-section {
    padding: 60px 0 0;
  }
}

@media (max-width: 991px) {
  .faq-section {
    padding: 40px 0 0;
  }
}

@media (max-width: 767px) {
  .faq-header {
    margin-bottom: 40px;
  }

  .faq-question {
    padding: 16px 4px;
    font-size: 18px;
  }

  .faq-answer-inner {
    font-size: 17px;
    line-height: 1.5;
  }

  .faq-header p {
    font-size: 17px;
  }

  .faq-section {
    padding: 40px 0 0;
  }
}

@media (max-width: 576px) {
  .faq-section {
    padding: 20px 0 0;
  }
}

/* FAQs Page Responsive Css End */


/* Back to Top button */
.back-to-top-btn {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: #020202;
  color: #ffffff;
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  z-index: 999;
}

.back-to-top-btn.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top-btn:hover {
  transform: translateY(-2px);
}

@media (max-width: 576px) {
  .back-to-top-btn {
    bottom: 10px;
    right: 14px;
  }
}