/* 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;
}

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: 24px;
  font-weight: 400;
  text-transform: uppercase;
  border-radius: 12px;
  display: inline-block;
  transition: background-color 0.3s ease, transform 0.3s ease;
}


.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;
}

/* 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;
}

.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: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: 9999;
  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';
}

.banner-section .banner-content .btn {
  background-color: #000000;
  color: #ffffff;
  border: none;
  padding: 18px 40px;
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  border-radius: 12px;
  display: inline-block;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.banner-section .banner-content .btn img {
  width: 28px;
  height: 28px;
  margin-left: 10px;
  object-fit: contain;
}


.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 img {
  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;
  cursor: pointer;
  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: 300;
  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 20px 90px;
  max-width: 100%;
  margin: 0 auto;
  text-align: left;
}

.wholesale-section.bg-gray {
  background-color: #e5e5e4;
}

.wholesale-section .container {
  max-width: 680px;
  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.55rem;
  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: 30px 26px 34px 26px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.09), 0 1px 4px rgba(0, 0, 0, 0.05);
  border: none;
  position: relative;
}

/* 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.45rem;
  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: 72px 48px 80px;
  background-color: #e5e5e3;
}

/* ───── Heading ───── */
.why-title2 {
  font-family: 'Versailles';
  font-size: 2.6rem;
  font-weight: 400;
  text-transform: uppercase;
  color: #111111;
  text-align: center;
  margin-bottom: 20px;
}

.why-subtitle2 {
  font-size: 0.97rem;
  font-weight: 400;
  color: #333333;
  text-align: center;
  max-width: 660px;
  margin: 0 auto 52px;
  line-height: 1.65;
}

/* ───── Card ───── */
.feat-card2 {
  background-color: #f7f7f7;
  border: 0px;
  border-radius: 0px;
  padding: 28px 26px 30px;
  height: 100%;
  box-shadow: 2px 2px 8px rgba(0, 0, 0, 0.06);
}

/* ───── 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: 64px;
  height: 64px;
  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;
}

/* =========================================================
   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: 320px;
}

.cabinet-product-section .center-slider .slick-slide img {
  width: 100%;
  height: auto;
  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: 13px;
  font-size: 0.6rem;
  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;
}

.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: 42px;
  height: 42px;
  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");
}

/* Next Arrow */
.cabinet-product-section .slick-next::before {
  background-image: url("../img/home/next-arrow.png");
}

.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: 24px;
  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: 18px;
}

/* FCL Program Section */
.fcl-program-section {
  width: 100%;
  background-color: #e5e5e4;
  padding: 80px;
  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(24px);
  transition: transform 0.38s ease, box-shadow 0.38s ease;
}

.fcl-program-section__card-text {
  font-weight: 400;
  font-size: clamp(0.72rem, 1.2vw, 1.25rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.75;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Tagline */
.fcl-program-section .tagline {
  font-weight: 400;
  font-size: clamp(0.65rem, 1vw, 1rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #000000;
  margin-top: 70px;
}

.wholesale-section .tagline2 {
  font-weight: 400;
  font-size: clamp(0.65rem, 1vw, 1rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #000000;
  margin-top: 30px;
}


.industries-section .fcl-program-section__card {
  background-color: #ededec;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  flex-direction: column;
}
.industries-section .fcl-program-section__card img {
  height: 100px;
  object-fit: contain;
}

.industries-section .fcl-program-section__card-text {
  color: #000000;
}


/* === Responsive CSS Start === */


@media (max-width: 1540px) {
  .header-section.px-100 {
    padding-left: 80px !important;
    padding-right: 80px !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;
}
.cabinet-product-section .center-slider .slick-current.slick-active img {
    transform: scale(1.1);
    height: 280px;
}
}
@media (max-width: 1440px) {
  
  .header-section .navbar .navbar-brand img {
    max-height: 110px;
  }
  .header-section.px-100 {
    padding-left: 40px !important;
    padding-right: 40px !important;
  }
}
@media (min-width: 992px) {
  .header-section .navbar-expand-lg .navbar-nav .dropdown-menu {
    position: absolute;
    right: 0;
    left: auto;
  }
}

@media (max-width: 991.98px) {
  .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) {
  .fcl-program-section__grid {
    grid-template-columns: 1fr;
  }

  .feature-banner-card .feature-card {
    padding: 16px 18px;
    gap: 14px;
  }

  .feature-banner-card .card-title {
    font-size: 0.95rem;
  }
}

@media (max-width: 575.98px) {
  .card-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .feature-banner-card .feature-card {
    padding: 14px 16px;
  }
}



/* Start About Us Section */

.about-page-section {
  padding-top: 240px;
}

.about-title-wrapper {
  text-align: center;
  margin-bottom: 48px;
}

.about-title-box {
  display: inline-block;
  padding: 12px 48px;
}

.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;
}

.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: 60px 80px;
  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: 1199.98px) {
  .about-text-box {
    padding: 40px 50px;
  }
  .about-paragraph {
    font-size: 16px;
    line-height: 1.8;
  }
}

@media (max-width: 991.98px) {
  .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: 100px;
}

.about-two-row {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
}

.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: flex-start;
  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: left;
}
/* End About Us Section 2 */

/* Start About Us Section 3 */
.about-three-section {
  padding-top: 100px;
}
/* End About Us Section 3 */

/* Start About Us Section 4 */
.about-four-section {
  padding-top: 100px;
  padding-bottom: 100px;
}

.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;
}

.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: 30px;
  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{
  font-size: 16px;
}
/* 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.7);
}
.contact-section img {
  width: 100%;
}
.contact-section img {
    width: 100%;
    height: 80vh;
    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: 420px;
  object-fit: cover;
}
.contact-us {
    border-radius: 30px;
    font-size: 26px;
    font-weight: 400;
}


.contact-form {
  padding: 50px 0;
}
.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: 30px;
}

.contact-section__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}

/* Input & textarea base */
.contact-section__input,
.contact-section__textarea {
  width: 100%;
  padding: 16px 18px;
  border: 1.5px solid #000;
  background: #fff;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: #000;
  text-transform: uppercase;
  outline: none;
  transition: border-color 0.22s ease;
  border-radius: 0;
}

.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 {
  padding: 10px 100px;
  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;
}
.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: 2rem;
  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: 16px 18px;
  border: 1.5px solid #000;
  background: #fff;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: #000;
  text-transform: uppercase;
  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(--color-gold); }

.subscribe-section__btn {
  padding: 10px 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: 600px) {
  .contact-section__row { grid-template-columns: 1fr; }
  .footer-info-section  { flex-direction: column; align-items: flex-start; gap: 20px; }
}

/* Contact Page Css End */ 



/* Footer Section Css Start */
.our-partners {
    padding: 80px 0 80px;
}
h2.our-partners-title {
  font-weight: 400;
  font-size: 2rem;
  color: #000;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 50px;
}
.our-partners-box {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}
.our-partners-item {
  text-align: center;
}
.our-partners-item img {
    width: 180px;
    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: clamp(0.65rem, 1vw, 1rem);
  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: 20px;
}

/* 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;
}

.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;
}
/* Footer Section Css End */



