/* ========================================
   GURUKRUPA - MAIN STYLESHEET
   ======================================== */

/* ========================================
   0. FONT FACES - MONTSERRAT
   ======================================== */

@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-Thin.otf") format("opentype");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-ThinItalic.otf") format("opentype");
  font-weight: 100;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-ExtraLight.otf") format("opentype");
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-ExtraLightItalic.otf") format("opentype");
  font-weight: 200;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-Light.otf") format("opentype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-LightItalic.otf") format("opentype");
  font-weight: 300;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-Italic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-Medium.otf") format("opentype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-MediumItalic.otf") format("opentype");
  font-weight: 500;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-SemiBold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-SemiBoldItalic.otf") format("opentype");
  font-weight: 600;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-BoldItalic.otf") format("opentype");
  font-weight: 700;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-ExtraBold.otf") format("opentype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-ExtraBoldItalic.otf") format("opentype");
  font-weight: 800;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-Black.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("fonts/Montserrat-BlackItalic.otf") format("opentype");
  font-weight: 900;
  font-style: italic;
  font-display: swap;
}

/* ========================================
   1. CSS VARIABLES & ROOT STYLES
   ======================================== */

:root {
  /* Primary Colors */
  --primary: #c6808d;
  --secondary: #ffde00;
  --tertiary: #c7a183;

  /* Text Colors */
  --body: #000000;
  --title: #1c1e1d;

  /* Accent Colors */
  --alternate: #6ebfbf;
  --alternate1: #b4bc50;
  --alternate2: #4f4f4f;

  /* Neutral Colors */
  --light: #f1f1f1;
  --light1: #f2f2f2;
  --light2: #707070;
  --dark: #191919;
  --dark1: #888580;
  --dark2: #3d3d3d;
  --black: #000000;
  --red: #e41b24;
  --white: #ffffff;

  /* Layout Metrics */
  --header-height: 70px;

  /* Typography */
  --fontPrimary: "Montserrat", sans-serif;
  --fontSecondary: "Montserrat", sans-serif;
  --fontTertiary: "Montserrat", sans-serif;

  /* Font Sizes */
  --font-size-main-heading: 50px;
  --font-size-description: 16px;
  --font-size-small: 14px;
  --font-size-subheading: 20px;
  --font-size-large-heading: 48px;
  --font-size-medium-heading: 40px;
  --font-size-section-heading: 35px;
  --font-size-card-title: 24px;
  --font-size-body: 18px;
  --font-size-utility-small: 15px;
  --font-size-utility-medium: 22px;
  --font-size-utility-large: 25px;
  --font-size-utility-xl: 30px;
  --font-size-extra-small: 12px;
  --font-size-tiny: 12px;
  --font-size-micro: 10px;
  --font-size-h1: 45px;
  --font-size-h1-mobile: 37px;
  --font-size-h2: 33px;
  --font-size-h3: 29px;
  --font-size-h5: 25px;
  --font-size-footer-motto: 36px;
  --font-size-footer-motto-mobile: 28px;
  --font-size-h2-mobile: 22px;
}

/* ========================================
   2. RESET & BASE STYLES
   ======================================== */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  outline: none;
  box-sizing: border-box;
}

/* Disable image dragging and selection */
img {
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -moz-user-drag: none;
  -o-user-drag: none;
  user-drag: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
  pointer-events: none;
}

/* Re-enable pointer events for interactive images (like buttons) */
img[src*="icon"],
img[src*="button"],
img[src*="play"],
img[src*="arrow"],
.video-play-btn img,
.social-icon img,
.icon-link img {
  pointer-events: auto;
}

html {
  height: 100%;
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  scrollbar-width: thin;
  scrollbar-color: var(--primary) var(--light);
  scroll-behavior: auto;
  scroll-padding-top: var(--header-height);
}
html,
body {
  height: 100%;
}

body {
  font-family: var(--fontPrimary);
  color: var(--body);
  font-size: var(--font-size-body);
  line-height: 1.5;
  font-weight: 400;
  font-style: normal;
  font-variant: normal;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  max-width: 100vw;
  scroll-behavior: auto;
}

/* ========================================
   3. TYPOGRAPHY
   ======================================== */

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--fontPrimary);
  color: var(--title);
  font-size: var(--font-size-h1);
  font-weight: 600;
  margin: 0;
  padding: 0 0 20px 0;
  line-height: 1.3;
  letter-spacing: 0;
}

h2 {
  font-size: var(--font-size-medium-heading);
}
h3 {
  font-size: var(--font-size-section-heading);
  padding: 0 0 22px 0;
}
h4 {
  font-size: var(--font-size-utility-xl);
  padding: 0 0 22px 0;
}
h5 {
  font-size: var(--font-size-h5);
  padding: 0 0 24px 0;
}
h6 {
  font-size: var(--font-size-subheading);
  padding: 0 0 24px 0;
}

/* Paragraphs */
p {
  margin-top: 0;
  margin-bottom: 30px;
}

p:last-child {
  margin-bottom: 0 !important;
}

/* Links */
a,
a:visited,
a:focus,
a:hover {
  color: var(--body);
  outline: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.5s;
}

a:hover {
  color: var(--primary);
  text-decoration: none;
  outline: none !important;
}

/* Images */
img {
  max-width: 100%;
  vertical-align: middle;
  -ms-interpolation-mode: bicubic;
}

/* Lists */
ul.d-flex,
.d-flex {
  list-style: none;
  padding-left: 0;
  flex-wrap: wrap;
  margin-bottom: 0;
  position: relative;
}

/* ========================================
   4. SELECTION & SCROLLBAR
   ======================================== */

::selection {
  background: var(--primary);
  color: var(--white);
}

::-moz-selection {
  background: var(--primary);
  color: var(--white);
}

/* ========================================
   5. LAYOUT SYSTEM
   ======================================== */

/* Container System */
.container {
  max-width: 1200px;
  padding: 0 30px;
  width: 100%;
  margin: 0 auto;
}

.container.container-lg {
  max-width: 1500px;
  padding: 0 30px;
}

.container-fluid {
  max-width: 100%;
  padding: 0 60px;
}
@media (max-width: 575.98px) {
  .container {
    max-width: 100%;
    padding: 0 25px;
  }
}
@media (min-width: 1440px) {
  .container {
    max-width: 1200px;
  }
}
@media (min-width: 1550px) {
  .container {
    max-width: 1400px;
  }
}
/* ========================================
   6. GRID SYSTEM
   ======================================== */

/* Row */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

/* Columns */
.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
  padding-right: 15px;
  padding-left: 15px;
}

.col-lg-6 {
  flex: 0 0 50%;
  max-width: 50%;
  padding-right: 15px;
  padding-left: 15px;
}

.col-md-4 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  padding-right: 15px;
  padding-left: 15px;
}

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}

/* ========================================
   7. GUTTERS & SPACING
   ======================================== */

.g-0 {
  margin-right: 0;
  margin-left: 0;
}

.g-0 > * {
  padding-right: 0;
  padding-left: 0;
}

/* ========================================
   8. UTILITY CLASSES
   ======================================== */

/* Alignment */
.align-items-center {
  align-items: center !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

/* Text Alignment */
.text-center {
  text-align: center !important;
}

.text-center p {
  text-align: center !important;
}

/* Header Mega Menu */
/* anchor the dropdown to the full header width */
/* #pageHeaderWrapper {
  position: relative;
  z-index: 20;
} */
.nav .has-mega {
  position: static;
}
/* Use fixed so dropdown spans full viewport width regardless of header inner container */
.mega-menu {
  position: fixed;
  left: 0;
  right: 0;
  top: var(--header-height, 80px);
  width: 100vw;
  background: #ffffff;
  z-index: 1002;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 25px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  max-height: 450px;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease,
    transform 0.3s ease;
}
/* Hover states now handled by JavaScript for better control */
.mega-inner {
  width: calc(100% - 80px);
  max-width: 1240px;
  margin: 0 auto;
}
.mega-cols {
  display: grid;
  grid-template-columns: 320px 320px 1fr;
  gap: 24px;
  align-items: start;
}
.mega-list {
  list-style: none;
  margin: 0;
  padding: 0 24px;
}
.mega-list li {
  margin: 8px 0;
}
.mega-list a {
  text-decoration: none;
  color: #231f20;
  font-weight: 500;
}
.mega-hero {
  padding: 0 24px;
}
.mega-hero img {
  width: 100%;
  height: auto;
  border-radius: 0px;
  object-fit: cover;
}

/* Company mega menu specific styling - compact dropdown */
.mega-menu--company {
  width: auto !important;
  left: auto !important;
  right: auto !important;
  max-width: 250px;
  padding: 16px 0 !important;
}

.mega-menu--company .mega-inner {
  width: auto !important;
  max-width: 250px;
  margin: 0;
  padding: 0 20px;
}

.mega-menu--company .mega-cols {
  grid-template-columns: 1fr;
  justify-content: center;
}

.mega-menu--company .mega-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0;
}

.mega-menu--company .mega-list li {
  margin: 8px 0;
  width: 100%;
}

.mega-menu--company .mega-list a {
  font-size: 14px;
  font-weight: 500;
  padding: 8px 12px;
  border-radius: 4px;
  transition: all 0.3s ease;
  display: block;
  width: 100%;
}

.mega-menu--company .mega-list a:hover {
  background-color: #f8f9fa;
  color: var(--primary);
}
/* Categories specific styling */
.categories-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 32px;
  align-items: start;
}
.categories-left {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.categories-right {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  height: 100%;
}
.categories-right .mega-hero {
  height: 100%;
}
.categories-right .mega-hero img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}
.mega-actions {
  display: flex;
  gap: 12px;
}

.categories-list {
  display: flex;
}

/* Bootstrap Tabs Styling for Categories */
.categories-tabs {
  display: flex;
  overflow: hidden;
  width: 100%;
  border: none;
  margin-bottom: 0;
}

.categories-tabs .nav-item {
  flex: 1;
  width: 100%;
}

.categories-tabs .nav-link {
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 300;
  border: none;
  outline: none;
  background: #f6f6f6;
  color: #bababa;
  transition:
    0.2s background,
    0.2s color;
  cursor: pointer;
  border-radius: 0;
  margin: 0;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
  white-space: nowrap;
}

/* Active tab state - pink primary color */
.categories-tabs .nav-link.active {
  background: var(--primary);
  color: #fff;
  font-weight: 400;
}

.categories-tabs .nav-link.active:hover {
  background: #bb7183;
  color: #fff;
}

/* Inactive tab state */
.categories-tabs .nav-link:not(.active) {
  background: #f6f6f6;
  color: #bababa;
}

/* Hover style for inactive tabs */
.categories-tabs .nav-link:not(.active):hover {
  background: #ececec;
  color: #b7a4ae;
}

/* Tab content styling - Fixed height to prevent fluctuation */
#categoriesTabContent {
  margin-top: 0;
  min-height: 250px; /* Fixed minimum height based on tallest content (2 lists) */
  height: 250px; /* Fixed height to prevent fluctuation */
  position: relative;
}

#categoriesTabContent .tab-pane {
  padding: 0;
  min-height: 250px; /* All tab panes have same minimum height */
}

#categoriesTabContent .tab-pane .categories-list {
  min-height: 250px; /* Match the height of the tab pane */
  display: flex;
  align-items: flex-start; /* Align lists to the top */
}
.explore-categories-btn {
  border: 1px solid var(--primary);
  color: #000;
  font-weight: 300;
  font-size: var(--font-size-small);
  padding: 10px 22px;
  border-radius: 0;
  transition: all 0.3s ease;
}
.explore-categories-btn.btn-outline:hover,
.explore-categories-btn:hover {
  background: var(--primary) !important;
  color: #fff !important;
  border-color: var(--primary) !important;
}

@media (max-width: 992px) {
  .mega-menu {
    position: static;
    display: block;
    box-shadow: none;
    padding: 12px 0;
    width: 100%;
    top: auto;
  }
  .mega-cols {
    grid-template-columns: 1fr;
  }
}
/* ========================================
   9. HEADER COMPONENT
   ======================================== */

.main-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--white);
  border-bottom: 1.5px solid #cd8593;
}

.header-container {
  display: flex;
  align-items: end;
  justify-content: space-between;
  padding: 20px 0 10px 0;
  min-height: 80px;
}

.logo-holder {
  flex: 0 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.logo a {
  display: flex;
  align-items: center;
  gap: 15px;
  text-decoration: none;
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon img {
  height: 70px;
  width: auto;
  max-width: 200px;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-main {
  font-size: var(--font-size-card-title);
  font-weight: 300;
  color: var(--primary);
  text-transform: uppercase;
}

.logo-sub {
  font-size: var(--font-size-small);
  font-weight: 300;
  color: var(--primary);
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-wrapper {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav {
  position: relative;
}

.main-menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 30px;
}

.main-menu li a {
  color: #231f20;
  text-decoration: none;
  font-weight: 500;
  font-size: var(--font-size-description);
  text-transform: uppercase;
  transition: color 0.3s ease;
  position: relative;
}

.main-menu li a:hover {
  color: var(--primary);
}

.header-icons {
  display: flex;
  align-items: center;
  gap: 10px;
}
.header-icons a[title="Account"] {
  display: none;
}
.icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: #231f20;
  text-decoration: none;
  transition: color 0.3s ease;
}

.icon-link:hover {
  color: var(--primary);
}

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

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger-line {
  width: 20px;
  height: 2px;
  background-color: #231f20;
  margin: 2px 0;
  transition: all 0.3s ease;
  transform-origin: center;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Bootstrap Offcanvas Customization */
.offcanvas {
  width: 320px !important;
}

.offcanvas-header {
  border-bottom: 1px solid #f0f0f0;
  padding: 20px;
}

.offcanvas-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.offcanvas-logo .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.offcanvas-logo .logo-main {
  font-size: var(--font-size-body);
  font-weight: 300;
  color: var(--primary);
  letter-spacing: 1px;
  text-transform: uppercase;
}

.offcanvas-logo .logo-sub {
  font-size: var(--font-size-tiny);
  font-weight: 300;
  color: var(--primary);
  letter-spacing: 0.5px;
  text-transform: uppercase;
  margin-top: 1px;
}

.offcanvas-body {
  padding: 20px;
}

.offcanvas-link {
  color: #231f20;
  font-weight: 300;
  font-size: var(--font-size-description);
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.offcanvas-link:hover {
  background-color: #f8f8f8;
  color: var(--primary);
  transform: translateX(10px);
}

.offcanvas-icon-link {
  color: #231f20;
  font-weight: 300;
  font-size: var(--font-size-small);
  transition: color 0.3s ease;
}

.offcanvas-icon-link:hover {
  color: var(--primary);
}

.offcanvas-icon-link svg {
  width: 20px;
  height: 20px;
}

.offcanvas-dropdown-btn {
  position: relative;
  width: 100%;
  text-align: left;
  letter-spacing: 0.5px;
  padding-right: 28px; /* space for icon */
  text-decoration: none;
  display: block;
  padding: 9px 15px 9px 15px;
  background: none;
  font-size: var(--font-size-small);
  font-weight: 300;
}

/* Arrow icon */
.offcanvas-dropdown-btn::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 35%;
  width: 6px;
  height: 6px;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.3s ease;
}
.offcanvas-dropdown-btn[aria-expanded="true"]::after {
  transform: translateY(-50%) rotate(-135deg);
}
/* Split nav row: label link + arrow toggle */
.offcanvas-nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px 0;
}

.offcanvas-nav-label {
  color: #231f20;
  font-weight: 300;
  font-size: var(--font-size-small);
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.5px;
  padding: 7px 15px;
  flex: 1;
  transition: color 0.3s ease;
}

.offcanvas-nav-label:hover {
  color: var(--primary);
}

.offcanvas-arrow-btn {
  background: none;
  border: none;
  outline: none;
  box-shadow: none;
  padding: 7px 15px;
  cursor: pointer;
  position: relative;
  min-width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #231f20;
  transition: color 0.3s ease;
}

.offcanvas-arrow-btn:hover {
  color: var(--primary);
}

.offcanvas-arrow-btn::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-right: 1px solid #000;
  border-bottom: 1px solid #000;
  transform: translateY(-50%) rotate(45deg);
  transition: transform 0.3s ease;
}

.offcanvas-arrow-btn[aria-expanded="true"]::after {
  transform: translateY(-50%) rotate(-135deg);
}

.categories-accordion-body {
  max-height: 200px;
  overflow-y: auto;
  scrollbar-width: none; /* For Firefox */
}
.categories-accordion h2 button {
  font-size: var(--font-size-extra-small);
  padding: 0;
}
.categories-accordion h2 {
  padding: 0;
}
.categories-accordion li a {
  font-size: var(--font-size-extra-small);
}
.categories-accordion li {
  margin: 5px 0;
}
.categories-accordion .explore-categories-btn {
  font-size: var(--font-size-extra-small);
  padding: 6px 16px;
  margin-top: 10px;
  margin-bottom: 10px;
  display: none;
}
#collectionCollapse .explore-categories-btn {
  padding: 6px 16px;
}
.offcanvas-dropdown-btn {
  text-decoration: none;
  display: block;
  padding: 9px 15px 9px 15px;
  background: none;
  font-size: var(--font-size-small);
  font-weight: 300;
}
#companyCollapse a {
  font-size: var(--font-size-extra-small);
  font-weight: 400;
}
#collectionCollapse a {
  font-size: var(--font-size-extra-small);
  font-weight: 400;
}
#collectionCollapse {
  max-height: 200px;
  overflow-y: auto;
  scrollbar-width: none; /* For Firefox */
}
/* ========================================
   10. BUTTON COMPONENTS
   ======================================== */

.custom-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--primary);
  color: var(--white);
  text-decoration: none;
  border-radius: 0px;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.custom-button:hover {
  background-color: var(--dark);
  color: var(--white);
  text-decoration: none;
}

.custom-button.btn-sm {
  padding: 8px 16px;
  font-size: var(--font-size-small);
}

.custom-button-holder {
  margin-top: 20px;
}

.custom-button.height-70 {
  height: 70px;
  line-height: 70px;
  padding: 0 30px;
}

.custom-button.btn-outline {
  background-color: transparent;
  color: var(--white);
  border: 1px solid #fff;
  padding: 10px 22px;
  border-radius: 0;
  font-weight: 300;
  font-size: var(--font-size-small);
}

.custom-button.btn-outline:hover {
  background-color: #fff;
  color: var(--primary);
  border: 1px solid #fff;
  border-radius: 0;
}
@media (max-width: 575.98px) {
  .custom-button.btn-outline {
    font-size: 12px;
  }
}
/* ========================================
   13. PAGE TITLE
   ======================================== */

.pageTitle {
  margin-bottom: 50px;
}

.pageTitle h1,
.pageTitle h2 {
  margin-bottom: 20px;
}

/* ========================================
   14. TABS COMPONENT
   ======================================== */

.tab-holder {
  position: relative;
}

.tab-centered {
  text-align: center;
}

.nav-link {
  display: block;
  padding: 15px 30px;
  color: var(--body);
  text-decoration: none;
  border: none;
  background: none;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.nav-link.active {
  color: var(--primary);
}

.nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--primary);
}

.tab-content {
  position: relative;
}

.tab-pane {
  display: none;
}

.tab-pane.show.active {
  display: block;
}

.tab-body {
  padding: 30px 0;
}

/* ========================================
   20. FOOTER COMPONENT
   ======================================== */

.footer-wrapper {
  background: #c6808d; /* Dark pink/mauve background */
  color: var(--white);
  padding: 60px 0 50px 0;
}

/* Top Section - Four Columns */
.footer-top {
  padding: 0px 0 20px;
  border-bottom: 1.5px solid #ffff;
  display: grid;
  grid-template-columns: 3fr 9fr;
}

.footer-columns {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 20px;
}

.footer-column {
  display: flex;
  flex-direction: column;
}

.footer-logo-column .footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
}

.footer-logo .logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo .logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.footer-logo .logo-main {
  font-size: var(--font-size-card-title);
  font-weight: 300;
  color: var(--white);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-logo .logo-sub {
  font-size: var(--font-size-small);
  font-weight: 300;
  color: var(--white);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Footer Logo Image Styling */
.footer-logo .logo-icon img {
  background: transparent !important;
  filter: brightness(0) invert(1); /* Makes the logo white */
  transition: filter 0.3s ease;
}

.footer-heading {
  font-size: var(--font-size-h5);
  color: var(--white);
  font-weight: 400;
}

.footer-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-nav li a {
  color: var(--white);
  text-decoration: none;
  font-weight: 400;
  font-size: var(--font-size-description);
  line-height: 31px;
}

/* Middle Section - Motto */
.footer-middle {
  padding: 40px 0;
  border-bottom: 1.5px solid #ffff;
  text-align: center;
}

.footer-motto {
  font-size: var(--font-size-large-heading);
  font-weight: 200;
  color: var(--white);
  margin: 0;
  padding: 0;
}

/* Bottom Section - Social Media and Copyright */
.footer-bottom {
  padding: 20px 0 0 0;
}

.footer-bottom-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.social-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.social-label {
  font-size: var(--font-size-small);
  font-weight: 400;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 5px;
}

.social-icons {
  display: flex;
  gap: 30px;
}

.social-icon {
  display: flex;
  width: 32px;
  height: 32px;
  color: var(--white);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.copyright-section p {
  font-size: var(--font-size-small);
  font-weight: 400;
  color: var(--white);
  margin: 0;
}
@media (max-width: 575.98px) {
  .footer-heading {
    font-size: var(--font-size-subheading);
  }
  .footer-nav li a {
    font-size: var(--font-size-small);
  }
  .footer-columns {
    grid-template-columns: 6fr 6fr;
    gap: 50px;
  }
  .footer-top {
    grid-template-columns: 1fr;
  }

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

  .footer-top {
    padding: 0px 0 30px;
  }

  .footer-middle {
    padding: 30px 0;
  }

  .footer-motto {
    font-size: var(--font-size-subheading);
  }

  /* Footer Logo Mobile Responsive */
  .footer-logo .logo-icon img {
    height: 60px;
    max-width: 150px;
  }

  .footer-bottom {
    padding: 20px 0;
  }

  .social-section {
    flex-direction: column;
    gap: 5px;
  }

  .social-icons {
    gap: 25px;
  }

  .social-icon {
    width: 28px;
    height: 28px;
  }
  .copyright-section p {
    font-size: var(--font-size-extra-small);
  }
}
@media (max-width: 991.98px) {
  .footer-columns {
    grid-template-columns: 1fr 1fr;
  }
  .footer-bottom-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .footer-top {
    gap: 50px;
  }
  .logo-icon img {
    height: 80px;
    max-width: 150px;
  }
}
/* ========================================
   21. UTILITY CLASSES
   ======================================== */

.phone-clickable {
  cursor: pointer;
  transition: color 0.3s ease;
}

.phone-clickable:hover {
  color: var(--primary);
}

.uncap {
  text-transform: none !important;
}

.width-sm {
  width: 200px;
}

.width-xl {
  width: 300px;
}

.normal-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.normal-list li {
  margin-bottom: 10px;
  padding-left: 20px;
  position: relative;
}

.normal-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: bold;
}

.g10 > * {
  margin-bottom: 10px;
}

/* Large Desktop */
@media only screen and (max-width: 1599.98px) {
  html,
  body {
    max-width: 100vw;
    overflow-x: hidden;
  }
  body {
    font-size: var(--font-size-utility-small);
  }

  p {
    margin-bottom: 10px;
  }

  h1,
  .h1 {
    font-size: var(--font-size-h1-mobile);
  }
  h2,
  .h2 {
    font-size: var(--font-size-h2);
  }
  h3,
  .h3 {
    font-size: var(--font-size-h3);
    padding: 0 0 18px 0;
  }
  h4,
  .h4 {
    font-size: var(--font-size-h5);
    padding: 0 0 18px 0;
  }
  h5,
  .h5 {
    font-size: var(--font-size-subheading);
    padding: 0 0 20px 0;
  }
  h6,
  .h6 {
    font-size: var(--font-size-description);
    padding: 0 0 20px 0;
  }

  .container.container-lg {
    max-width: 1260px;
    padding: 0 30px;
  }

  .our-expertise-section .container {
    max-width: 100%;
    padding: 0 30px;
  }

  .inner-container-xl {
    padding: 100px 0;
  }

  .inner-container {
    padding: 60px 0;
  }

  .colContainer.lg .textColRight,
  .colContainer.lg .textColLeft {
    width: 570px;
  }

  .textColRight,
  .textColLeft {
    width: 475px;
  }
}

/* Desktop */
@media only screen and (max-width: 1399.98px) {
  .container-fluid {
    max-width: 100%;
    padding: 0 30px;
  }
}

/* Small Desktop */
@media only screen and (max-width: 1299.98px) {
  .colContainer.lg .textColRight,
  .colContainer.lg .textColLeft {
    width: 100%;
  }
}

/* Tablet */
@media only screen and (max-width: 991.98px) {
  .textColRight,
  .textColLeft {
    width: 100% !important;
  }

  .header-container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
  }

  .nav-wrapper {
    width: auto;
    justify-content: flex-end;
  }

  .nav {
    display: none;
  }

  .header-icons {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex !important;
  }

  .logo-main {
    font-size: var(--font-size-subheading);
  }

  .logo-sub {
    font-size: var(--font-size-tiny);
  }

  .col-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .col-lg-3 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-lg-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .col-md-4 {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .col-md-7 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .col-xl-5 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .col-xl-auto {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .grid-3 > * {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .grid-8 > * {
    flex: 0 0 25%;
    max-width: 25%;
  }

  .grid-10 > * {
    flex: 0 0 20%;
    max-width: 20%;
  }

  .grid-15 > * {
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
  }

  .grid-30 > * {
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
  }

  .hide-md {
    display: none !important;
  }

  .show-md {
    display: block !important;
  }

  .banner {
    height: 50vh;
    min-height: 400px;
  }

  .float-icon.ficon1 {
    right: 15px;
    top: 20px;
    transform: none;
  }

  .workshop-container {
    padding: 20px;
  }

  .service-pack-box {
    padding: 20px;
  }

  .hww-box {
    padding: 20px 15px;
  }

  .counter {
    font-size: 2.5rem;
  }

  .icon-holder.icon-rounded {
    width: 60px;
    height: 60px;
  }

  .nav-item {
    margin: 0;
  }

  .nav-link {
    padding: 12px 20px;
  }

  .tab-body {
    padding: 20px 0;
  }

  .workshop-container {
    padding: 30px 20px;
  }

  .service-pack-box {
    padding: 30px 20px;
  }

  .hww-box {
    padding: 25px 20px;
    margin-bottom: 20px;
  }

  .counter-box {
    padding: 20px 15px;
    margin-bottom: 20px;
  }

  .bottom-newsletter {
    margin-top: 20px;
  }

  .form-control {
    padding: 12px 15px;
    font-size: var(--font-size-small);
  }

  .custom-button.height-70 {
    height: 60px;
    line-height: 60px;
    padding: 0 25px;
  }
}

/* Mobile */
@media only screen and (max-width: 575.98px) {
  body {
    font-size: var(--font-size-extra-small);
  }

  p {
    margin-bottom: 20px;
  }

  h1,
  .h1 {
    font-size: var(--font-size-card-title);
    letter-spacing: 0 !important;
    padding: 0 0 12px 0;
  }

  h2,
  .h2 {
    font-size: var(--font-size-h2-mobile);
    letter-spacing: 0 !important;
    padding: 0 0 12px 0;
  }

  h3,
  .h3 {
    font-size: var(--font-size-subheading);
    letter-spacing: 0 !important;
    padding: 0 0 13px 0;
  }

  h4,
  .h4 {
    font-size: var(--font-size-body);
    letter-spacing: 0 !important;
    padding: 0 0 12px 0;
  }

  h5,
  .h5 {
    font-size: var(--font-size-description);
    letter-spacing: 0 !important;
    padding: 0 0 14px 0;
  }

  h6,
  .h6 {
    font-size: var(--font-size-small);
    letter-spacing: 0 !important;
    padding: 0 0 14px 0;
  }

  /* .container,
  .container.container-lg,
  .container-fluid {
    padding: 0 30px;
  } */

  .inner-container-xl {
    padding: 60px 0;
  }

  .inner-container {
    padding: 40px 0;
  }

  .col-6,
  .col-lg-3,
  .col-lg-6,
  .col-md-4,
  .col-md-7,
  .col-xl-5,
  .col-xl-auto {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .grid-3 > *,
  .grid-8 > *,
  .grid-10 > *,
  .grid-15 > *,
  .grid-30 > * {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .hide-xs {
    display: none !important;
  }

  .header-container {
    padding: 10px 0;
    min-height: 60px;
  }

  .logo {
    gap: 10px;
  }

  .logo-icon img {
    height: 60px;
    max-width: 120px;
  }

  .logo-main {
    font-size: var(--font-size-body);
    letter-spacing: 1px;
  }

  .logo-sub {
    font-size: var(--font-size-micro);
  }

  .nav {
    display: none;
  }

  .header-icons {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex !important;
  }

  .offcanvas {
    width: 280px !important;
  }

  .offcanvas-header {
    padding: 15px;
  }

  .offcanvas-logo .logo-main {
    font-size: var(--font-size-description);
  }

  .offcanvas-logo .logo-sub {
    font-size: var(--font-size-micro);
  }

  .offcanvas-body {
    padding: 15px;
  }

  .offcanvas-link {
    font-size: var(--font-size-small);
  }

  .custom-button {
    padding: 10px 20px;
    font-size: var(--font-size-small);
  }

  .custom-button.btn-sm {
    padding: 6px 12px;
    font-size: var(--font-size-tiny);
  }

  .service-box {
    padding: 20px 15px;
  }

  .service-content h3 {
    font-size: var(--font-size-description);
  }

  .icon-holder img {
    max-width: 40px;
  }

  .banner {
    height: 40vh;
    min-height: 300px;
  }

  .float-icon.ficon1 {
    right: 10px;
    top: 15px;
  }

  .float-icon img {
    max-width: 40px;
  }

  .workshop-container {
    padding: 15px;
  }

  .service-pack-box {
    padding: 15px;
  }

  .hww-box {
    padding: 15px 10px;
  }

  .hww-box h3 {
    font-size: var(--font-size-body);
  }

  .counter {
    font-size: 2rem;
  }

  .icon-holder.icon-rounded {
    width: 50px;
    height: 50px;
  }

  .bottom-right {
    flex-direction: column;
  }

  /* .social-icons {
    justify-content: center;
  } */

  .bottom-nav ul {
    flex-direction: column;
    gap: 10px;
  }

  /* Additional mobile adjustments */
  .nav-link {
    padding: 10px 15px;
    font-size: var(--font-size-small);
  }

  .tab-body {
    padding: 15px 0;
  }

  .workshop-container {
    padding: 20px 15px;
  }

  .service-pack-box {
    padding: 20px 15px;
  }

  .hww-box {
    padding: 20px 15px;
  }

  .counter-box {
    padding: 15px 10px;
  }

  .form-control {
    padding: 10px 12px;
    font-size: var(--font-size-extra-small);
  }

  .custom-button.height-70 {
    height: 50px;
    line-height: 50px;
    padding: 0 20px;
    font-size: var(--font-size-small);
  }
}

/* ========================================
   24. HOME PAGE STYLES 
   ======================================== */

/* Global H1 Styles for Home Page Sections */
.hero-content h1,
.about-us-content h2,
.explore-collections-section h1,
.our-expertise-section h2,
.explore-categories-section h2,
.sustainability-wrapper-section h2,
.trust-authenticity-section h2,
.get-in-touch-overlay h2 {
  font-size: var(--font-size-main-heading);
  font-weight: 400;
}

/* Global P Styles for Home Page Sections */
.about-us-content p,
.explore-collections-section p,
.sustainability-wrapper-section p,
.sustainability-section p,
.trust-authenticity-section p,
.get-in-touch-overlay p {
  font-size: var(--font-size-description);
}

/* HERO SECTION (SWIPER)  */
.hero-section {
  overflow: hidden;
  height: calc(100vh - var(--header-height));
}

.hero-swiper {
  width: 100%;
  height: 100%;
}

.hero-swiper .swiper-wrapper {
  height: 100%;
}

.hero-swiper .swiper-slide {
  height: 100%;
  padding: 0;
  position: relative;
}
.hero-content {
  position: relative;
  height: 100%;
}
.hero-content h1 {
  font-weight: 300;
  color: #94584b;
}
.hero-content .hero-content-text {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
  z-index: 10;
  max-width: 600px;
}
.hero-content-button {
  border: 1px solid #94584b;
  color: #94584b;
  background-color: transparent;
  padding: 10px 20px;
}
.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.hero-image img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-swiper .swiper-pagination {
  bottom: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  left: 0;
  right: 0;
}

.hero-swiper .swiper-pagination-bullet {
  width: 100px;
  height: 2px;
  background: transparent;
  border-radius: 1px;
  opacity: 1;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  margin: 0;
}

.hero-swiper .swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.2);
}

.hero-swiper .swiper-pagination-bullet:hover::before {
  background: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.3);
}

.hero-swiper .swiper-pagination-bullet-active::before {
  background: rgba(0, 0, 0, 1);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.3);
}

/* ABOUT US SECTION */
.about-us-section {
  position: relative;
  height: calc(100vh - var(--header-height));
  overflow: hidden;
}

.about-us-section > div:first-child {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.about-us-section > div:first-child img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.about-us-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translate(-50%, 0);
  color: #fff;
  width: 100%;
  max-width: 1170px;
  z-index: 2;
}
.about-us-content h2 {
  font-weight: 300;
  line-height: 80px;
  color: #fff;
  padding-bottom: 0;
  margin-bottom: 0;
  font-size: 45px;
}
.about-us-content p {
  font-weight: 400;
  line-height: 22px;
  padding: 0px 200px;
  font-size: var(--font-size-small);
}
.statistics-count {
  font-size: var(--font-size-body);
  font-weight: 400;
  line-height: 25px;
}
.statistics-name {
  font-size: var(--font-size-small);
  font-weight: 300;
  text-wrap: wrap;
}
.about-us-content .vr {
  background-color: #fff;
  opacity: 1;
}
/* Mobile-first: Hide desktop wrapper by default */
.statistics-wrapper {
  display: none;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 30px;
  width: 100%;
  color: var(--white);
  text-align: center;
}

/* Mobile-first: Show mobile wrapper by default */
.statistics-wrapper-mobile {
  display: flex;
  flex-direction: column;
  text-align: center;
  color: #fff;
}
.statistics-section {
  background-color: var(--primary);
  padding: 50px 0;
}
/* EXPLORE OUR NEW COLLECTION SECTION*/

.explore-collections-section {
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  padding: 20px 0;
  overflow: hidden;
}

/* container */
.explore-collections-section .container {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.explore-collections-section .category-desktop {
  height: 100%;
}
/* heading */
.explore-collections-section h1 {
  color: var(--primary);
  text-align: center;
  padding: 30px 0 0;
  flex-shrink: 0;
  text-transform: uppercase;
}

/* ROW — FIXED HEIGHT */
.explore-collections-section .row {
  display: flex;
  height: 700px;
  min-height: 0;
  max-height: 700px;
  overflow: hidden;
  box-sizing: border-box;
}

/* BOTH COLUMNS */
.explore-collections-section .col-lg-6 {
  height: 100%;
  max-height: 100%;
  min-height: 0;
  overflow: hidden;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}

/* LEFT IMAGE COLUMN */
.explore-collection-img {
  height: 100%;
  max-height: 100%;
  width: 100%;
  overflow: hidden;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
}

.explore-collection-img img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  box-sizing: border-box;
}

/* RIGHT COLUMN — FLEX COLUMN (CRITICAL) */
.col-lg-6.collection-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  max-height: 100%;
  min-height: 0;
  overflow: hidden;
  box-sizing: border-box;
}

/* TEXT BLOCK */
.explore-collections-content {
  flex-shrink: 0;
  box-sizing: border-box;
}

/* SWIPER — TAKES REMAINING HEIGHT */
.collection-swiper {
  margin-top: 20px;
  flex: 1 1 auto;
  min-height: 0;
  max-height: 100%;
  width: 100%;
  border: 1px solid var(--primary);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-sizing: border-box;
}

/* SWIPER INTERNALS */
.collection-swiper .swiper-wrapper {
  height: 100%;
  max-height: 100%;
  box-sizing: border-box;
}

.collection-swiper .swiper-slide {
  height: 100%;
  max-height: 100%;
  display: flex;
  box-sizing: border-box;
  overflow: hidden;
}

/* IMAGE HOLDER */
.collection-images {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-sizing: border-box;
}

/* IMAGES — NEVER CUT */
.collection-images img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  object-position: center;
  display: block;
  box-sizing: border-box;
}

.explore-collections-section h2 {
  color: #fff;
  font-weight: 400;
  font-size: var(--font-size-h5);
  line-height: 22px;
  text-align: center;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.explore-collections-section p {
  color: #fff;
  font-weight: 400;
  line-height: 22px;
  text-align: center;
}

.explore-collections-content {
  background-color: var(--primary);
  padding: 30px 80px;
}

/* WHAT DIFFERENTIATES US SECTION */
.what-differentiates-us-section {
  position: relative;
  display: flex;
  align-items: center;
  height: calc(100vh - var(--header-height));
}

.what-differentiates-us-section h2 {
  color: var(--primary);
  font-size: var(--font-size-large-heading);
  font-weight: 300;
  margin-bottom: 20px;
  text-align: left;
  padding: 0;
  margin-bottom: 0;
}
.what-differentiates-us-section .accordion {
  margin-top: 10px;
}
.section-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.section-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.section-content {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.accordion-content {
  border-radius: 0;
  max-width: 500px;
}
.accordion-item {
  background: transparent;
}
.accordion-button {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  color: var(--primary);
  padding: 15px 0;
}

.accordion-button:not(.collapsed) {
  background: transparent !important;
  box-shadow: none !important;
  color: var(--primary);
}

.accordion-button:focus {
  box-shadow: none !important;
  border: none !important;
}
.accordion-button::after {
  content: "+" !important;
  background: none !important;
  border: none !important;
  font-size: var(--font-size-card-title);
  font-weight: 300;
  width: auto;
  height: auto;
  transform: none !important;
}

.accordion-button:not(.collapsed)::after {
  content: "-" !important;
  transform: none !important;
}
.accordion-item {
  border: none;
  border-bottom: 1px solid var(--light);
}
.accordion-body {
  color: #fff;
  padding: 0px 0px 15px 0px;
  font-size: var(--font-size-small);
}
/* OUR EXPERTISE SECTION */
.our-expertise-section {
  height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  padding: 0px 30px;
  max-width: 1350px;
  margin: 0 auto;
}

.our-expertise-section > div {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.our-expertise-section h2 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 0;
  flex: 0 0 auto;
  padding-bottom: 0;
}
.our-expertise-section p {
  color: #fff;
  font-size: var(--font-size-small);
  line-height: 20px;
  font-weight: 400;
}
.our-expertise-section h3 {
  color: #fff;
  font-size: var(--font-size-card-title);
  font-weight: 500;
  padding-bottom: 10px;
}
.expertise-swiper {
  overflow: hidden;
  width: 100%;
  flex: 0 0 auto;
}
.expertise-swiper .swiper-wrapper {
  align-items: stretch;
  display: flex;
}
.expertise-swiper .swiper-slide {
  display: flex;
  height: auto;
}

/* Desktop layout when Swiper is not active */
@media (min-width: 992px) {
  .expertise-swiper .swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  .expertise-swiper .swiper-slide {
    width: 100%;
  }
}
.expertise-card {
  background: #fff;
  border-radius: 0;
  overflow: hidden;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.card-image {
  width: 100%;
  overflow: hidden;
  position: relative;
  flex: 0 0 auto;
}
.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}
.expertise-card .card-content {
  background: var(--primary);
  padding: 20px 30px;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  gap: 10px;
}
/* Expertise Modal Styling - Match expertise-card design */
#expertiseModal .modal-backdrop,
#principlesModal .modal-backdrop {
  backdrop-filter: blur(5px);
  background-color: rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  #expertiseModal .category-desktop,
  #principlesModal .category-desktop {
    display: block !important;
  }
}
.expertise-modal-content {
  border: none;
  border-radius: 0;
  overflow: hidden;
  padding: 0;
  position: relative;
  background: #fff;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}
#expertiseModal .card-header,
#principlesModal .card-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 15px;
  z-index: 10;
  background: transparent;
  pointer-events: none;
}
.expertise-modal-close {
  position: relative;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.3s ease;
  background: #fff;
  border: none;
  padding: 0;
  cursor: pointer;
  filter: none;
  pointer-events: auto;
}
.expertise-modal-close:hover {
  opacity: 0.8;
}
.expertise-modal-close::before {
  content: "×";
  font-size: 35px;
  color: #000;
  line-height: 1;
  display: block;
}
.expertise-modal-close::after {
  display: none;
}
#expertiseModal .modal-dialog,
#principlesModal .modal-dialog {
  max-width: 1200px;
  margin: 1.75rem auto;
  max-height: calc(100vh - 3.5rem);
}

#expertiseModal .modal-dialog.modal-dialog-centered,
#principlesModal .modal-dialog.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - 3.5rem);
}

#expertiseModal .modal-content,
#principlesModal .modal-content {
  max-height: calc(100vh - 3.5rem);
  overflow: hidden;
}

#expertiseModal .expertise-card,
#principlesModal .expertise-card {
  max-width: 100%;
  margin: 0;
  display: flex;
  flex-direction: row;
  height: auto;
  max-height: calc(100vh - 3.5rem);
  min-height: 400px;
  overflow: hidden;
}
#expertiseModal .card-image,
#principlesModal .card-image {
  width: 50%;
  flex: 0 0 50%;
  overflow: hidden;
}
#expertiseModal .card-image img,
#principlesModal .card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
#expertiseModal .card-content,
#principlesModal .card-content {
  width: 50%;
  flex: 0 0 50%;
  background: #fff;
  padding: 30px 40px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
  overflow-y: auto;
  overflow-x: hidden;
  gap: 0;
  max-height: calc(100vh - 3.5rem);
  scrollbar-width: thin;
  scrollbar-color: #bcbec0 #f1f1f1;
  scrollbar-gutter: stable;
  -webkit-overflow-scrolling: touch;
}
#expertiseModal .card-content::after,
#principlesModal .card-content::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0; /* 👈 key */
  right: 1px;
  width: 3px;
  background: #d1d3d4;
  border-radius: 2px;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.2s ease;
}

#expertiseModal .card-content:hover::after,
#principlesModal .card-content:hover::after {
  opacity: 0;
}

/* Custom scrollbar for modal content - Chrome, Edge, Safari */
#expertiseModal .card-content::-webkit-scrollbar,
#principlesModal .card-content::-webkit-scrollbar {
  width: 2px;
}
#expertiseModal .card-content::-webkit-scrollbar-track,
#principlesModal .card-content::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 2px;
}
#expertiseModal .card-content::-webkit-scrollbar-thumb,
#principlesModal .card-content::-webkit-scrollbar-thumb {
  background: #bcbec0;
  border-radius: 2px;
}
#expertiseModal .card-content::-webkit-scrollbar-thumb:hover,
#principlesModal .card-content::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}
#expertiseModal h2,
#principlesModal h2 {
  font-size: 36px;
  font-weight: 300;
  color: #c6808d;
  margin: 0 0 0 0;
  line-height: 1.2;
  text-transform: none;
  padding-bottom: 0;
  text-align: start;
}
#expertiseModal h3,
#principlesModal h3 {
  font-size: 36px;
  font-weight: 300;
  color: #c6808d;
  margin: 0 0 20px 0;
  line-height: 1.2;
  text-transform: none;
  padding-bottom: 0;
}
#expertiseModal .modal-text {
  margin-top: 0;
}
#principlesModal .modal-text {
  margin-top: 20px;
}
#expertiseModal .modal-text p,
#principlesModal .modal-text p {
  color: #333;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 15px;
  text-align: left;
  font-weight: 400;
}
#expertiseModal .modal-text p:last-child,
#principlesModal .modal-text p:last-child {
  margin-bottom: 0;
}

/* Responsive styles for Expertise Modal */
@media (max-width: 768px) {
  /* Modal dialog - fixed position, no scroll */
  #expertiseModal .modal-dialog,
  #principlesModal .modal-dialog {
    max-width: 100%;
    width: 100%;
    margin: 0;
    height: 100vh;
    max-height: 100vh;
    padding: 0;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }

  #expertiseModal .modal-dialog.modal-dialog-centered,
  #principlesModal .modal-dialog.modal-dialog-centered {
    display: flex;
    align-items: stretch;
    justify-content: center;
    min-height: 100vh;
    max-height: 100vh;
    padding: 0;
    overflow: hidden;
  }

  /* Modal content - fixed, no scroll */
  #expertiseModal .modal-content,
  #principlesModal .modal-content {
    height: 100vh;
    max-height: 100vh;
    display: flex;
    flex-direction: column;
    border-radius: 0;
    margin: 0;
    overflow: hidden;
    position: relative;
  }

  /* Card - column layout, fixed height, no scroll */
  #expertiseModal .expertise-card,
  #principlesModal .expertise-card {
    flex-direction: column;
    height: 100vh;
    max-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
  }

  /* Image section - fixed, no scroll */
  #expertiseModal .card-image,
  #principlesModal .card-image {
    width: 100%;
    flex: 0 0 auto;
    height: 35vh;
    min-height: 250px;
    max-height: 35vh;
    overflow: hidden;
    position: relative;
  }

  #expertiseModal .card-image img,
  #principlesModal .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Content section - ONLY THIS SCROLLS */
  #expertiseModal .card-content,
  #principlesModal .card-content {
    width: 100%;
    flex: 1 1 auto;
    min-height: 0;
    max-height: calc(100vh - 35vh);
    padding: 20px 20px 30px 20px;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    position: relative;
    overscroll-behavior: contain;
  }

  /* Typography adjustments */
  #expertiseModal h2,
  #expertiseModal h3,
  #principlesModal h2,
  #principlesModal h3 {
    font-size: 28px;
    margin-bottom: 15px;
  }

  #expertiseModal .modal-text p,
  #principlesModal .modal-text p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 15px;
  }

  /* Close button positioning */
  .expertise-modal-close {
    top: 10px;
    right: 10px;
    width: 35px;
    height: 35px;
    z-index: 1051;
  }

  .expertise-modal-close::before {
    font-size: 28px;
  }

  /* Ensure card-header stays on top */
  #expertiseModal .card-header,
  #principlesModal .card-header {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1052;
    height: 60px;
    padding: 10px 15px;
  }
}

/* Extra small mobile devices */
@media (max-width: 575.98px) {
  #expertiseModal .card-image,
  #principlesModal .card-image {
    height: 30vh;
    min-height: 200px;
    max-height: 30vh;
  }

  #expertiseModal .card-content,
  #principlesModal .card-content {
    max-height: calc(100vh - 30vh);
    padding: 15px 15px 25px 15px;
  }

  #expertiseModal h2,
  #expertiseModal h3,
  #principlesModal h2,
  #principlesModal h3 {
    font-size: 24px;
    margin-bottom: 0px;
  }

  #expertiseModal .modal-text p,
  #principlesModal .modal-text p {
    font-size: 13px;
    line-height: 1.5;
    margin-top: 10px;
  }
}

/* EXPLORE OUR CATEGORIES SECTION */
.explore-categories-section {
  overflow: hidden;
  height: calc(100vh - var(--header-height));
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.explore-categories-section h2 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 30px;
  text-transform: capitalize;
}
.categories-swiper {
  overflow: hidden;
  width: 100%;
  padding: 0 15px;
}
.categories-swiper .swiper-wrapper {
  align-items: stretch;
}
.categories-swiper .swiper-slide {
  height: auto;
  display: flex;
  width: auto;
}
.category-card {
  background: #fff;
  border-radius: 0;
  overflow: hidden;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
}
.category-image {
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.category-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  transition: transform 0.3s ease;
}
@media (max-width: 1600px) {
  .category-image {
    height: 350px;
  }
}
@media (max-width: 1024px) {
  .category-image {
    height: 300px;
  }
}
.category-name {
  color: var(--primary);
  font-size: var(--font-size-subheading);
  font-weight: 400;
  margin: 20px 0;
  padding: 0 20px;
}
.categories-btn {
  background-color: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
  padding: 10px 22px;
  border-radius: 0;
  font-weight: 300;
  font-size: var(--font-size-small);
}

/* VIDEO SECTION */
.video-section {
  position: relative;
  width: 100%;
  height: calc(100vh - var(--header-height));
  overflow: hidden;
}

.video-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-element {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  background-color: #000;
}
.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}
.video-overlay:hover {
  background: rgba(0, 0, 0, 0.3);
}
.video-play-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}
.video-play-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 1);
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.4);
}
.video-play-btn svg {
  color: white;
  margin-left: 4px; /* Slight offset to center the play icon visually */
}

.video-play-btn img {
  filter: brightness(0) invert(1);
}

.video-play-btn.playing {
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.9);
}
.video-play-btn.playing svg {
  display: none;
}
.video-play-btn.playing::after {
  content: "⏸";
  font-size: var(--font-size-card-title);
  color: var(--primary);
}
/* SUSTAINABILITY SECTION */
.sustainability-wrapper-section {
  overflow: hidden;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  padding: 50px 0 50px 0;
}

.sustainability-wrapper-section > div {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.sustainability-wrapper-section .container {
  flex: 0 0 auto;
  padding: 20px 30px;
}
.sustainability-wrapper-section h2 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 15px;
  padding-bottom: 0;
  text-transform: capitalize;
}
.sustainability-wrapper-section p {
  font-weight: 300;
  line-height: 26px;
  text-align: center;
  padding: 0px 150px;
  margin-bottom: 0;
}
.sustainability-section p {
  font-weight: 400;
  line-height: 22px;
  padding: 0px;
  text-align: left;
  margin-top: 10px;
}
.sustainability-swiper {
  margin-top: 20px;
  width: 100%;
  overflow: hidden;
  max-width: 100%;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
}
.sustainability-swiper .swiper-wrapper {
  height: 100%;
}
.sustainability-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.4;
  transition: opacity 0.3s ease;
  height: 550px;
}
.sustainability-swiper .swiper-slide-active {
  opacity: 1;
}
.sustainability-section {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.sustainability-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(0, 0, 0, 0.3) 0%,
    rgba(0, 0, 0, 0.1) 50%,
    rgba(0, 0, 0, 0.5) 100%
  );
  z-index: 5;
}
.sustainability-section img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.sustainability-section .sustainability-desktop {
  display: block;
}

.sustainability-section .sustainability-mobile {
  display: none;
}
.sustainability-content {
  color: #fff;
  position: absolute;
  width: 600px;
  max-width: 50%;
  top: 50%;
  left: 3%;
  transform: translateY(-50%);
  z-index: 10;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  padding: 30px 40px;
}
.sustainability-section-title {
  font-size: var(--font-size-main-heading);
  font-weight: 400;
  line-height: 55px;
}
/* Sustainability Image Swiper Styles */
.sustainability-image-swiper {
  width: 100%;
  height: 100%;
  position: relative;
}

.sustainability-image-swiper .swiper-slide {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sustainability-image-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.sustainability-image-swiper .swiper-pagination {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.sustainability-image-swiper .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  margin: 0 5px;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.sustainability-image-swiper .swiper-pagination-bullet-active {
  background: #fff;
  transform: scale(1.2);
}
/* Sustainability Section Button Styles */
.sustainability-content .custom-button {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.8);
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}

.sustainability-content .custom-button:hover {
  background: rgba(255, 255, 255, 0.9);
  color: #000;
  text-shadow: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
  transform: translateY(-2px);
}

.sustainability-pagination {
  bottom: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.sustainability-pagination::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 2px;
  background: rgba(0, 0, 0, 0.2);
  border-radius: 1px;
}
.sustainability-pagination .swiper-pagination-bullet {
  width: 100px;
  height: 2px;
  background: transparent;
  border-radius: 1px;
  opacity: 1;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
  margin: 0;
}
.sustainability-pagination .swiper-pagination-bullet::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  border-radius: 1px;
  transition: all 0.3s ease;
}
.sustainability-pagination .swiper-pagination-bullet:hover::before {
  background: rgba(0, 0, 0, 0.5);
}
.sustainability-pagination .swiper-pagination-bullet-active::before {
  background: #000;
}

/* TRUST & AUTHENTICITY SECTION */
.trust-authenticity-section {
  background-color: var(--primary);
  padding: 150px 0;
}

.trust-authenticity-section h2 {
  color: var(--white);
  line-height: 55px;
  margin-bottom: 0;
  text-transform: capitalize;
}
.trust-authenticity-section p {
  color: var(--white);
  font-weight: 300;
  line-height: 28px;
  margin-bottom: 50px;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  padding: 0 110px;
}
.trust-content {
  text-align: center;
  margin: 0 auto;
}

.certifications-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}
.certifications-container img {
  max-width: 100%;
  height: auto;
}

/* CLIENT LOGOS SECTION */
.client-logos-section {
  background-color: #fff;
  overflow: hidden;
  padding: 80px 0px;
  max-width: 1100px;
}

.client-logos-swiper {
  width: 100%;
}
.client-logos-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 150px;
}
.logo-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 180px;
  height: 150px;
  padding: 10px 20px;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.logo-container:hover {
  opacity: 1;
}
.client-logo {
  width: 100%;
  height: 100%;
  max-width: 180px;
  max-height: 150px;
  object-fit: contain;
  object-position: center;
  filter: brightness(0.6) contrast(1.1);
  transition: filter 0.3s ease;
}
/* GET IN TOUCH SECTION */
.get-in-touch-section {
  position: relative;
  width: 100%;
}
.get-in-touch-background {
  position: relative;
  width: 100%;
}
.background-image {
  width: 100%;
  height: auto;
  display: block;
}
.get-in-touch-overlay {
  position: absolute;
  top: 30%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  text-align: center;
}

.get-in-touch-content {
  position: relative;
  text-align: center;
  color: white;
  z-index: 3;
  max-width: 800px;
  padding: 0 20px;
}
.get-in-touch-overlay h2 {
  line-height: 55px;
  color: var(--white);
  margin-bottom: 0;
  text-transform: capitalize;
}
.get-in-touch-overlay p {
  font-weight: 300;
  line-height: 28px;
  margin-bottom: 20px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
}

.get-in-touch-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
.get-in-touch-buttons .custom-button {
  min-width: 150px;
  padding: 12px 24px;
  font-size: var(--font-size-description);
  font-weight: 300;
}
.get-in-touch-buttons a:last-child {
  display: none;
}
/* Mobile Tabs Styling */
.mobile-tabs {
  display: none;
}

.desktop-accordion {
  display: block;
}

/* ========================================
   HOME PAGE RESPONSIVE STYLES
   ======================================== */

/* Image visibility control for responsive design */
.hero-desktop,
.about-desktop,
.video-desktop {
  display: block;
}

.category-desktop {
  display: block !important;
}

.collection-images .category-desktop {
  display: block !important;
}

.sustainability-section .sustainability-desktop {
  display: block !important;
}

.hero-mobile,
.about-mobile,
.video-mobile {
  display: none !important;
}

.category-mobile {
  display: none !important;
}

.collection-images .category-mobile {
  display: none !important;
}

.sustainability-section .sustainability-mobile {
  display: none !important;
}

/* Handle smaller viewport heights */
@media (max-height: 900px) {
  .explore-collections-section {
    min-height: auto;
    height: auto;
    padding: 40px 0;
  }

  .explore-collections-section .container {
    height: auto;
  }

  .explore-collections-section .row {
    min-height: auto;
  }
}
@media (min-width: 1599px) {
  .trust-authenticity-section {
    padding: 80px 0;
  }
  .sustainability-wrapper-section {
    padding: 50px 0 50px 0;
  }
  .our-expertise-section {
    padding: 0px 0px;
    max-width: 1600px;
  }
  .explore-collections-section .col-6:first-child img {
    object-fit: 100% 100%;
  }
  .about-us-section .about-us-content {
    top: 10px;
  }
}
@media (max-width: 767.98px) {
  .hero-desktop,
  .about-desktop,
  .video-desktop {
    display: none !important;
  }

  .category-desktop {
    display: none !important;
  }

  .collection-images .category-desktop {
    display: none !important;
  }

  .sustainability-section .sustainability-desktop {
    display: none !important;
  }

  .hero-mobile,
  .about-mobile,
  .video-mobile {
    display: block !important;
  }

  .category-mobile {
    display: block !important;
  }

  .collection-images .category-mobile {
    display: block !important;
  }

  .sustainability-section .sustainability-mobile {
    display: block !important;
  }

  /* About Us Section - Mobile */
  .about-us-section {
    height: auto;
    position: relative;
  }

  .about-us-section > div:first-child {
    position: relative;
    height: auto;
  }

  .about-us-section > div:first-child img {
    height: auto;
    object-fit: contain;
  }
}
@media (min-width: 1023px) {
  /* Desktop: Hide mobile wrapper */
  .statistics-wrapper-mobile {
    display: none;
  }

  /* Desktop: Show desktop wrapper */
  .statistics-wrapper {
    display: flex;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .about-us-content {
    max-width: 850px;
  }
}
@media (max-width: 1024px) {
  .explore-categories-section {
    height: auto;
    padding: 10px 0;
  }
  .get-in-touch-overlay {
    top: 35%;
  }
  .trust-authenticity-section {
    padding: 50px 0;
  }
  .sustainability-wrapper-section {
    height: auto;
    padding: 50px 0;
  }
  .video-section {
    height: auto;
    padding: 50px 0;
  }
  .our-expertise-section {
    height: auto;
    padding: 50px 0;
  }
  .what-differentiates-us-section {
    height: auto;
    padding: 50px 0;
  }
  .about-us-content h2 {
    font-size: var(--font-size-section-heading);
    line-height: 40px;
    margin-bottom: 10px;
  }

  .about-us-content p {
    padding: 0 20px;
    font-size: var(--font-size-small);
    line-height: 18px;
  }
  .statistics-count {
    font-size: var(--font-size-description);
    line-height: 23px;
  }
  .statistics-name {
    font-size: var(--font-size-small);
    text-align: center;
  }
  .custom-button.btn-outline {
    padding: 6px 20px;
  }
  .statistics-wrapper {
    margin-top: 0;
    gap: 25px;
  }
  .explore-collections-section h1 {
    font-size: var(--font-size-section-heading);
    padding-top: 0;
  }
  .video-section {
    padding-bottom: 0;
  }
  .get-in-touch-overlay h2 {
    font-size: var(--font-size-h2);
    line-height: 40px;
    margin-bottom: 0;
    padding-bottom: 10px;
  }
  .what-differentiates-us-section h2,
  .our-expertise-section h2,
  .explore-categories-section h2,
  .sustainability-wrapper-section h2,
  .trust-authenticity-section h2 {
    font-size: var(--font-size-section-heading);
  }

  /* Only the differences */
  .explore-categories-section h2 {
    margin-bottom: 20px;
  }

  .trust-authenticity-section h2 {
    line-height: 40px;
  }
}
/* Tablet Styles (768px - 991px) */
@media (max-width: 991.98px) {
  .hero-content h1 {
    font-size: var(--font-size-large-heading);
    top: 15%;
    padding: 0 20px;
  }
  .about-us-content {
    top: 30px;
    padding: 0 20px;
  }
  /* Mobile: Desktop wrapper already hidden by default, mobile wrapper already shown by default */
  /* No changes needed here as mobile-first approach handles it */

  .values-wrapper {
    display: none !important;
  }

  .statistics-wrapper-mobile .d-flex {
    display: flex;
    justify-content: space-between;
  }

  .statistics-wrapper-mobile .d-flex:not(:last-child) {
    border-bottom: 1px solid #fff;
  }
  .statistics-wrapper-mobile .d-flex > div {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 15px 10px;
  }

  .statistics-wrapper-mobile .d-flex > div:first-child {
    border-right: 1px solid #fff; /* vertical divider */
  }

  .statistics-count {
    font-size: var(--font-size-subheading);
    font-weight: 600;
  }

  /* Explore Collections Section - Tablet */
  .explore-collections-section {
    height: auto;
    padding: 50px 0;
  }

  .explore-collections-section h1 {
    padding: 0px 0;
  }

  .explore-collections-section .row {
    flex-direction: column;
    overflow: visible;
    height: auto;
    max-height: none;
  }
  .collection-images {
    max-height: 600px;
    height: auto;
  }
  .explore-collections-section .col-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .explore-collections-section .col-6:first-child {
    order: 2;
  }

  .explore-collections-section .col-6:last-child {
    order: 1;
  }

  .explore-collections-content {
    padding: 30px 40px;
  }

  .explore-collections-section h2 {
    font-size: var(--font-size-subheading);
  }

  .explore-collections-section p {
    font-size: var(--font-size-small);
  }

  /* What Differentiates Us Section - Tablet */
  .what-differentiates-us-section {
    height: 80vh;
  }
  .accordion-content {
    max-width: 100%;
    padding: 0 20px;
  }

  .expertise-card .card-content {
    padding: 15px 20px;
  }

  .expertise-card .card-content h3 {
    font-size: var(--font-size-subheading);
  }

  .expertise-card .card-content p {
    font-size: var(--font-size-small);
  }

  .category-name {
    font-size: var(--font-size-small);
    margin: 15px 0;
    padding: 0 15px;
  }

  .video-play-btn {
    width: 50px;
    height: 50px;
  }

  /* Sustainability Section - Tablet */
  .sustainability-wrapper-section {
    height: auto;

    justify-content: center;
  }
  .sustainability-wrapper-section p {
    padding: 0 0px;
    font-size: var(--font-size-small);
  }

  .sustainability-content {
    width: 90%;
    max-width: 100%;
    left: 0;
    padding: 20px 30px;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9);
    top: 75%;
  }

  .sustainability-section-title {
    font-size: var(--font-size-section-heading);
    line-height: 40px;
  }

  .sustainability-section p {
    font-size: var(--font-size-small);
  }

  .sustainability-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      135deg,
      rgba(0, 0, 0, 0.4) 0%,
      rgba(0, 0, 0, 0.2) 50%,
      rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 5;
  }

  /* Sustainability Section Button Styles - Tablet */
  .sustainability-content .custom-button {
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.9);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.9);
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(5px);
  }

  .sustainability-content .custom-button:hover {
    background: rgba(255, 255, 255, 0.95);
    color: #000;
    text-shadow: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.5);
  }

  .trust-authenticity-section p {
    padding: 0 50px;
  }

  /* Client Logos Section - Tablet */
  .client-logos-section {
    padding: 50px 0;
  }

  .client-logos-swiper .swiper-slide {
    height: 70px;
  }

  .logo-container {
    width: 130px;
    height: 60px;
    padding: 8px 15px;
  }

  .client-logo {
    width: 100%;
    height: 100%;
    max-width: 130px;
    max-height: 60px;
  }

  /* Get In Touch Section - Tablet */
  .get-in-touch-overlay {
    top: 45%;
  }
  .get-in-touch-overlay p {
    font-size: var(--font-size-small);
    max-width: 350px;
  }

  .get-in-touch-buttons {
    gap: 15px;
  }

  .get-in-touch-buttons .custom-button {
    padding: 10px 0px;
    font-size: var(--font-size-small);
  }
}
@media (min-width: 1025px) and (max-width: 1130px) {
  .get-in-touch-overlay h2 {
    font-size: var(--font-size-section-heading);
  }
}
/* Mobile Styles (max-width: 767px) */
@media (max-width: 768px) {
  .desktop-accordion {
    display: none;
  }
  /* Hero Section - Mobile */
  .hero-section {
    height: 70vh;
  }
  .hero-content h1 {
    font-size: var(--font-size-section-heading);
    top: 10%;
    padding: 0 15px;
    line-height: 1.2;
  }
  .about-us-content {
    top: 40px;
    padding: 0 15px;
    gap: 25px;
  }
  .about-us-content h2 {
    font-size: var(--font-size-section-heading);
    line-height: 40px;
  }
  .about-us-content p {
    padding: 0 20px;
    font-size: var(--font-size-small);
    line-height: 18px;
  }

  .statistics-wrapper {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .statistics-count {
    font-size: var(--font-size-subheading);
    line-height: 30px;
  }

  .statistics-name {
    font-size: var(--font-size-small);
    text-align: center;
  }

  .about-us-content .vr {
    display: none;
  }
  .mobile-tabs {
    display: block;
    margin-top: 10px;
  }
  .mobile-nav-tabs {
    display: flex !important;
    flex-direction: row !important;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    border: none;
    margin-bottom: 20px;
    padding-bottom: 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: flex-start;
    gap: 20px;
    flex-wrap: nowrap;
    width: 100%;
    border-bottom: 1px solid #fff;
    margin-left: 0;
  }

  .mobile-nav-tabs::-webkit-scrollbar {
    display: none;
  }

  .mobile-nav-tabs .nav-item {
    flex-shrink: 0;
    margin-right: 0;
    display: inline-block;
  }

  .mobile-nav-tabs .nav-link {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    padding: 12px 0;
    border-radius: 0;
    font-size: var(--font-size-small);
    font-weight: 400;
    white-space: nowrap;
    transition: all 0.3s ease;
    text-decoration: none;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    position: relative;
    display: inline-block;
    min-width: fit-content;
  }

  .mobile-nav-tabs .nav-link:hover {
    color: rgba(255, 255, 255, 0.9);
    background: transparent;
  }

  .mobile-nav-tabs .nav-link.active {
    background: transparent;
    border: none;
    color: #ffffff;
    font-weight: 500;
  }

  .mobile-nav-tabs .nav-link.active::after {
    display: none;
  }

  .mobile-tab-content {
    background: transparent;
    border-radius: 0;
    padding: 0;
    backdrop-filter: none;
  }

  .mobile-tab-content .tab-pane {
    color: #ffffff;
    font-size: var(--font-size-small);
    line-height: 1.6;
    text-align: left;
  }

  .mobile-tab-content .tab-pane p {
    margin-bottom: 20px;
    color: #fff;
  }

  .what-differentiates-us-section .container {
    padding: 0px 0px;
  }
  .what-differentiates-us-section .custom-button {
    display: none;
  }
  .mobile-tabs .mobile-tab-content {
    padding: 0px 50px;
  }
  .mobile-tabs .mobile-tab-content p {
    text-align: center;
  }
  .section-content {
    align-items: start;
  }
  /* Explore Collections Section - Mobile */
  .explore-collections-section {
    height: auto;
    min-height: auto;
    padding: 40px 0;
  }

  .explore-collections-section .container {
    height: auto;
  }

  .explore-collections-section h1 {
    font-size: var(--font-size-section-heading);
    padding: 0px 0;
  }

  .explore-collections-section .row {
    flex-direction: column;
    height: auto;
    max-height: none;
    overflow: visible;
  }

  .explore-collections-section .col-lg-6 {
    height: auto;
    max-height: none;
    width: 100%;
    overflow: visible;
    display: flex;
    flex-direction: column;
  }

  .explore-collections-section .col-6:first-child {
    order: 1;
    margin-bottom: 0;
    height: auto;
    max-height: none;
    overflow: visible;
  }

  .explore-collections-section .col-6:last-child {
    order: 2;
    height: auto;
    max-height: none;
    overflow: visible;
  }

  .explore-collection-img {
    height: auto;
    max-height: none;
    overflow: visible;
  }

  .explore-collection-img img {
    height: auto;
    max-height: none;
    width: 100%;
    object-fit: cover;
  }

  .collection-content {
    height: auto;
    max-height: none;
    display: flex;
    flex-direction: column;
    overflow: visible;
  }

  .explore-collections-content {
    padding: 20px 25px;
    order: 1;
  }

  .collection-swiper {
    order: 2;
    margin-top: 0;
    height: auto;
    max-height: none;
    min-height: 300px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }

  .collection-swiper .swiper-wrapper {
    height: auto;
    max-height: none;
  }

  .collection-swiper .swiper-slide {
    height: auto;
    max-height: none;
    min-height: 300px;
  }

  .collection-images {
    height: auto;
    max-height: none;
    min-height: 300px;
  }

  .explore-collections-section h2 {
    font-size: var(--font-size-subheading);
    line-height: 18px;
  }

  .explore-collections-section p {
    font-size: var(--font-size-small);
    line-height: 18px;
  }

  .what-differentiates-us-section h2 {
    font-size: var(--font-size-h2);
    text-align: center;
    text-transform: uppercase;
  }

  .accordion-content {
    padding: 0 0px;
  }

  .accordion-button {
    padding: 12px 0;
    font-size: var(--font-size-small);
  }

  .accordion-body {
    font-size: var(--font-size-small);
    padding: 0 0 10px 0;
  }

  /* Our Expertise Section - Mobile */
  .our-expertise-section {
    height: auto;
    min-height: auto;
    padding: 40px 0;
  }
  .our-expertise-section > div {
    gap: 20px;
  }
  .our-expertise-section h2 {
    font-size: var(--font-size-section-heading);
    padding-bottom: 0;
  }

  .our-expertise-section p {
    font-size: var(--font-size-small);
    line-height: 18px;
  }

  .expertise-card .card-content {
    padding: 15px;
  }

  .expertise-card .card-content p {
    font-size: var(--font-size-small);
    line-height: 18px;
  }

  /* Explore Categories Section - Mobile */
  .explore-categories-section {
    height: auto;
    min-height: auto;
    padding: 20px 0;
  }

  .explore-categories-section h2 {
    font-size: var(--font-size-section-heading);
    margin-bottom: 0px;
  }

  .categories-swiper {
    padding: 0 10px;
  }

  .category-name {
    font-size: var(--font-size-description);
    margin: 10px 0;
    padding: 0 10px;
  }

  .categories-btn {
    padding: 8px 16px;
    font-size: var(--font-size-small);
  }

  .video-play-btn {
    width: 45px;
    height: 45px;
  }

  /* Video Section - Mobile */
  .video-section {
    padding: 40px 0 0 0;
  }

  /* Sustainability Section - Mobile */
  .sustainability-wrapper-section {
    height: auto;
    min-height: auto;
    padding: 40px 0;
  }

  .sustainability-wrapper-section h2 {
    font-size: var(--font-size-section-heading);
    margin-bottom: 10px;
    text-transform: uppercase;
  }

  .sustainability-wrapper-section p {
    padding: 0 0px;
    font-size: var(--font-size-small);
    line-height: 20px;
  }

  .sustainability-swiper {
    height: auto;
    margin-top: 20px;
  }

  .sustainability-swiper .swiper-wrapper {
    height: auto;
  }

  .sustainability-swiper .swiper-slide {
    height: 500px;
  }

  .sustainability-section {
    height: 100%;
    position: relative;
  }

  .sustainability-section img {
    width: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  .sustainability-section .sustainability-mobile {
    height: 500px;
  }

  .sustainability-content {
    position: absolute;
    width: 100%;
    left: 0;
    top: 75%;
    padding: 20px 25px;
    text-align: center;
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 1);
    z-index: 10;
  }

  .sustainability-section-title {
    font-size: var(--font-size-subheading);
    line-height: 25px;
  }

  .sustainability-section p {
    font-size: var(--font-size-small);
    line-height: 18px;
    text-align: center;
  }

  .sustainability-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0) 0%,
      rgba(0, 0, 0, 0.2) 50%,
      rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 5;
  }

  /* Sustainability Section Button Styles - Mobile */
  .sustainability-content .custom-button {
    text-shadow: 3px 3px 8px rgba(0, 0, 0, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 255, 255, 1);
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    font-weight: 500;
  }

  .sustainability-content .custom-button:hover {
    background: rgba(255, 255, 255, 1);
    color: #000;
    text-shadow: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.6);
  }

  /* Trust & Authenticity Section - Mobile */

  .trust-authenticity-section p {
    padding: 0 0px;
    font-size: var(--font-size-small);
    line-height: 20px;
    margin-bottom: 0;
  }
  /* Trust & Authenticity Section - Mobile */
  .trust-authenticity-section {
    padding: 40px 0;
  }

  .trust-authenticity-section h2 {
    font-size: var(--font-size-section-heading);
    font-weight: 400;
    text-align: center;
    text-transform: uppercase;
  }

  .trust-authenticity-section p {
    font-size: var(--font-size-small);
    line-height: 1.6;
    text-align: center;
    max-width: 90%;
    margin: 0 auto 30px auto;
  }
  .certifications-container {
    margin-top: 20px;
  }
  /* Client Logos Section - Mobile */
  .client-logos-section {
    padding: 40px 0;
  }

  .client-logos-swiper .swiper-slide {
    height: 60px;
  }

  .logo-container {
    width: 110px;
    height: 50px;
    padding: 5px 10px;
  }

  .client-logo {
    width: 100%;
    height: 100%;
    max-width: 110px;
    max-height: 50px;
  }

  .background-image {
    height: 60vh;
    object-fit: cover;
  }

  /* Get In Touch Section - Mobile */
  .get-in-touch-overlay {
    top: 25%;
  }

  .get-in-touch-content {
    padding: 0 0px;
  }

  .get-in-touch-overlay h2 {
    font-size: var(--font-size-h3);
    line-height: 35px;
    text-transform: uppercase;
  }

  .get-in-touch-overlay p {
    font-size: var(--font-size-small);
    line-height: 18px;
    max-width: 300px;
    margin-bottom: 15px;
  }

  .get-in-touch-buttons {
    gap: 10px;
  }
}
/* Additional Mobile Optimizations */
@media (max-width: 575.98px) {
  /* Extra small mobile devices */
  .hero-content h1 {
    font-size: var(--font-size-subheading);
    top: 8%;
    padding: 0 10px;
  }
  .hero-swiper .swiper-pagination {
    bottom: 30px;
  }
  .hero-swiper .swiper-pagination::before {
    display: none;
  }

  .hero-swiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    margin: 0 4px;
    opacity: 0.5;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    box-shadow:
      0 0 0 1px rgba(0, 0, 0, 0.2),
      0 2px 4px rgba(0, 0, 0, 0.1);
  }

  .hero-swiper .swiper-pagination-bullet::before {
    display: none;
  }

  .hero-swiper .swiper-pagination-bullet:hover {
    border-color: rgba(255, 255, 255, 0.8);
    opacity: 0.8;
    box-shadow:
      0 0 0 1px rgba(0, 0, 0, 0.3),
      0 2px 6px rgba(0, 0, 0, 0.2);
  }

  .hero-swiper .swiper-pagination-bullet-active {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(255, 255, 255, 1);
    opacity: 1;
    box-shadow:
      0 0 0 1px rgba(0, 0, 0, 0.3),
      0 2px 6px rgba(0, 0, 0, 0.2);
  }
  .about-us-content {
    top: 50px;
    padding: 0 15px;
    gap: 20px;
  }

  .about-us-content h2 {
    font-size: var(--font-size-subheading);
    line-height: 40px;
    padding-bottom: 0px;
    margin-bottom: 5px;
  }

  .about-us-content p {
    padding: 0 20px;
    font-size: var(--font-size-small);
    line-height: 20px;
  }
  .statistics-wrapper {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .statistics-count {
    font-size: var(--font-size-small);
    line-height: 30px;
  }

  .statistics-name {
    font-size: var(--font-size-small);
    text-align: center;
  }

  .about-us-content .vr {
    display: none;
  }
  .what-differentiates-us-section h2 {
    font-size: var(--font-size-subheading);
  }
  .collection-swiper {
    margin-top: 0px;
  }

  .explore-collections-section h1 {
    font-size: var(--font-size-subheading);
  }

  .explore-collections-content {
    padding: 15px 20px;
  }

  .our-expertise-section h2 {
    font-size: var(--font-size-subheading);
  }

  .explore-categories-section h2 {
    font-size: var(--font-size-subheading);
    margin-bottom: 20px;
  }

  .sustainability-wrapper-section h2 {
    font-size: var(--font-size-subheading);
  }

  .trust-authenticity-section h2 {
    font-size: var(--font-size-subheading);
    line-height: 30px;
  }

  .get-in-touch-overlay h2 {
    font-size: var(--font-size-subheading);
    line-height: 30px;
  }

  .video-play-btn {
    width: 40px;
    height: 40px;
  }

  .video-play-btn svg {
    width: 16px;
    height: 16px;
  }
}
/* Swiper Css */
/* Completely disable interaction on client logos swiper */
.client-logos-swiper,
.client-logos-swiper * {
  pointer-events: none; /* disables click, swipe, hover */
  cursor: default;
  user-select: none; /* prevents text/image selection */
  -webkit-user-select: none;
  -ms-user-select: none;
}

/* Prevent image drag & drop specifically */
.client-logos-swiper img {
  -webkit-user-drag: none; /* Chrome, Safari */
  user-drag: none;
  -moz-user-select: none; /* Firefox */
}
.client-logos-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}

.client-logos-swiper .swiper-slide {
  width: auto;
}
/* ========================================
   25.ABOUT US PAGE STYLES 
   ======================================== */
/* HERO SECTION STYLES */
.about-hero-section img {
  height: calc(100vh - var(--header-height));
  width: 100%;
  object-fit: cover;
  object-position: center;
}

.about-hero-mobile {
  display: none;
}
.about-us-hero-section {
  position: relative;
}
.about-us-hero-section h1 {
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white);
  font-size: var(--font-size-main-heading);
  font-weight: 400;
  text-align: center;
}
@media (max-width: 768px) {
  .about-hero-desktop {
    display: none;
  }

  .about-hero-mobile {
    display: block;
  }

  /* Mission/Vision/Philosophy Mobile Images */
  .mission-desktop,
  .vision-desktop,
  .philosophy-desktop,
  .global-desktop,
  .principle-desktop {
    display: none;
  }

  .mission-mobile,
  .vision-mobile,
  .philosophy-mobile,
  .global-mobile,
  .principle-mobile {
    display: block;
  }
}

/* Desktop - Hide mobile images and show desktop images */
@media (min-width: 768px) {
  .mission-mobile,
  .vision-mobile,
  .philosophy-mobile,
  .global-mobile,
  .principle-mobile {
    display: none;
  }

  .mission-desktop,
  .vision-desktop,
  .philosophy-desktop,
  .global-desktop,
  .principle-desktop {
    display: block;
  }

  /* Hide mobile VMP swiper section on desktop */
  .vmp-mobile-section {
    display: none;
  }

  /* Show desktop mission-vision-philosophy sections */
  .mission-section,
  .vision-section,
  .philosophy-section {
    display: block;
  }
}
@media (min-width: 1599px) {
  .about-hero-section img {
    height: calc(100vh - var(--header-height));
  }
}

/* ABOUT SECTION */
.about-section {
  background-color: var(--primary);
  color: var(--white);
  margin-bottom: 50px;
}
.about-section h2 {
  color: var(--white);
  font-size: var(--font-size-main-heading);
  font-weight: 400;
  margin-bottom: 0;
}
.about-section p {
  font-size: var(--font-size-description);
  font-weight: 300;
  line-height: 28px;
  text-align: justify;
  margin-bottom: 10px;
}
.about-section div {
  padding: 0px 150px;
}
/* MISSION SECTION STYLES*/
.mission-vission-philosophy {
  margin-bottom: 0;
  overflow: hidden;
}
.mission-vission-philosophy h2 {
  color: var(--primary);
  font-size: var(--font-size-main-heading);
  font-weight: 400;
  margin-bottom: 0;
  text-align: start;
}
.mission-philosophy-subtitle {
  color: #000;
  font-size: var(--font-size-description);
  font-weight: 400;
  margin-bottom: 10px;
}
.mission-vission-philosophy p {
  color: #000;
  font-size: var(--font-size-description);
  font-weight: 400;
  text-align: justify;
}
.philosophy-section {
  margin-bottom: 0;
}
.mission-vission-philosophy img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  max-width: 100%;
}
.mission-vission-philosophy .row {
  margin-left: 0 !important;
  margin-right: 0 !important;
  margin-bottom: 0;
  width: 100%;
  max-width: 100%;
}
.mission-section p {
  padding-right: 48px;
}
/* VISION SECTION STYLES */
.vision-section p {
  padding-left: 48px;
}
.vision-section h2 {
  padding-left: 48px;
}
/* PHILOSOPHY SECTION STYLES */
.philosophy-section p {
  padding-right: 48px;
}
/* OUR VALUE STYLES */
.values-section {
  background-color: var(--primary);
  color: var(--white);
  padding: 80px 0px;
  margin: 50px 0px;
  overflow-x: hidden;
  box-sizing: border-box;
}

.values-section h2 {
  color: var(--white);
  font-size: var(--font-size-main-heading);
  font-weight: 400;
  text-align: center;
  padding-bottom: 10px;
  margin-bottom: 0;
}
.values-section p {
  font-size: var(--font-size-description);
  line-height: 26px;
  font-weight: 300;
  text-align: center;
  padding: 0px 250px;
}
.values-wrapper img {
  height: 50px;
  width: 50px;
  filter: brightness(0) invert(1);
}
.values-title {
  font-size: var(--font-size-subheading);
  font-weight: 400;
  text-align: center;
}
.values-detail {
  font-size: var(--font-size-description);
  font-weight: 300;
  text-align: center;
}
.values-wrapper .vr {
  background-color: white;
  opacity: 1;
}

/* Hide desktop values wrapper on mobile and tablet by default */
@media (max-width: 991.98px) {
  .values-wrapper {
    display: none !important;
  }
}

/* Hide mobile values wrapper on desktop */
@media (min-width: 992px) {
  .values-wrapper-mobile {
    display: none !important;
  }
}
/* LOREM IPSUM STYLES */
.principles-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100vh;
}
@media (min-width: 1599px) {
  .principles-section {
    height: calc(100vh - var(--header-height));
  }
}
.principles-section h1 {
  color: var(--primary);
  font-size: var(--font-size-main-heading);
  font-weight: 400;
  text-align: center;
}
.principles-section img {
  height: 100%;
  width: 100%;
}
.principles-section .card {
  border-radius: 0;
  border: none;
}
.principles-section .card-title {
  font-size: var(--font-size-section-heading);
  color: var(--white);
  font-weight: 400;
  padding-bottom: 0px;
}
.principles-section .card-title {
  font-size: var(--font-size-subheading);
  color: #ffffff;
  font-weight: 500;
  margin-bottom: 15px;
}

.principles-section .card-description {
  font-size: var(--font-size-small);
  color: #ffffff;
  font-weight: 300;
  line-height: 1.5;
}
.principles-section .card-content {
  background: var(--primary);
  padding: 30px 20px;
  gap: 0px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.principles-section .card > div:first-child {
  height: 400px;
  width: 100%;
}
.principles-section .card img {
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center center;
}
.principles-swiper {
  padding: 20px 0 60px 0;
}
.principles-swiper .swiper-wrapper {
  align-items: stretch;
}
.principles-swiper .swiper-slide {
  height: auto;
  display: flex;
}

/* Desktop: Show as static grid instead of swiper */
@media (min-width: 768px) {
  .principles-swiper {
    padding: 0;
    overflow: visible !important;
  }
  .principles-swiper .swiper-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    transform: none !important;
    width: 100% !important;
    flex-wrap: nowrap !important;
  }
  .principles-swiper .swiper-slide {
    width: auto !important;
    margin-right: 0 !important;
    flex-shrink: 0 !important;
  }
}
.principles-section .card {
  height: 100%;
  display: flex;
  flex-direction: column;
}
/* GLOBAL PRESENCE STYLES */
.global-presence-section {
  background-color: #f1f2f2;
  padding: 40px 0px;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 1599px) {
  .global-presence-section {
    height: calc(100vh - var(--header-height));
  }
}
.location {
  color: #000;
  font-weight: 300;
  font-size: var(--font-size-subheading);
}
.global-presence-section h2 {
  color: var(--primary);
  font-size: var(--font-size-main-heading);
  font-weight: 300;
  text-align: center;
  padding-bottom: 0;
  margin-bottom: 10px;
  text-transform: capitalize;
}

/* Global Presence Image Cropping */
.global-presence-section > div:last-child {
  overflow: hidden;
}

.global-presence-section img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center 30%; /* Crops from top, shows middle to bottom portion */
  margin-top: -60px; /* Shifts image up to crop from top */
  margin-bottom: -10px; /* Shifts image up to crop from bottom */
}

/* TESTIMONIAL SECTION STYLES */
.testimonial-section {
  background-color: #f1f2f2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  height: auto;
}
@media (min-width: 1599px) {
  .testimonial-section {
    height: calc(100vh - var(--header-height));
  }
}
.testimonial-section h2 {
  color: var(--primary);
  font-size: var(--font-size-main-heading);
  font-weight: 300;
  text-align: center;
  padding-bottom: 5px;
  margin-bottom: 10px;
  text-transform: capitalize;
}
.testimonial-text {
  font-size: var(--font-size-subheading);
  color: #000;
  font-weight: 400;
  text-align: center;
}
.testimonial-cards-swiper {
  padding: 40px 0 60px 0;
}
.testimonial-cards-swiper .swiper-slide {
  height: auto;
  display: flex;
}
.testimonial-card {
  background: white;
  border-radius: 0;
  padding: 80px 100px;
  margin: 0 10px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.quote-content {
  position: relative;
  margin-bottom: 30px;
}
.quote-icon {
  position: absolute;
  top: -110px;
  left: -60px;
  z-index: 1;
}

.quote-img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  object-position: center;
}
.quote-text {
  flex: 1;
  margin-left: 0;
  padding-top: 20px;
}
.quote-text p {
  font-size: var(--font-size-description);
  line-height: 1.6;
  color: #000;
  margin: 0;
}
.certification-logo {
  text-align: center;
}
.gia-text {
  font-size: var(--font-size-card-title);
  font-weight: bold;
  color: #000;
  text-align: center;
}
/* ========================================
   ABOUT US PAGE MOBILE RESPONSIVE STYLES
   ======================================== */
@media (max-width: 1024px) {
  .testimonial-section {
    padding-top: 20px;
  }
  .about-us-hero-section h1 {
    font-size: var(--font-size-h2);
  }
  .mission-section p,
  .philosophy-section p {
    padding-right: 30px;
  }
  .vision-section p {
    padding-left: 30px;
  }
  .mission-vission-philosophy p {
    font-size: var(--font-size-small);
  }
  .mission-vission-philosophy h2 {
    font-size: var(--font-size-h2);
    padding-bottom: 10px;
  }
  .mission-philosophy-subtitle {
    margin-bottom: 10px;
  }
  .about-section h2,
  .values-section h2,
  .global-presence-section h2,
  .testimonial-section h2 {
    font-size: var(--font-size-section-heading);
  }
  /* Section-specific overrides */
  .about-section h2 {
    font-weight: 400;
    margin-bottom: 15px;
  }
  .global-presence-section h2 {
    margin-bottom: 15px;
  }
}
@media (min-width: 768px) and (max-width: 999px) {
  .vision-section h2 {
    padding-left: 26px;
  }
}
/* Tablet Styles (768px - 991px) */
@media (max-width: 991.98px) {
  /* About Hero Section - Tablet */
  .about-hero-section img {
    height: auto;
    object-fit: cover;
    object-position: center;
  }
  /* About Section - Tablet */
  .about-section {
    margin-bottom: 0;
  }

  .about-section p {
    font-size: var(--font-size-description);
    line-height: 1.6;
  }
  .about-section div {
    padding: 0px 50px;
  }

  /* Values Section - Tablet */
  .values-section {
    padding: 50px 0;
    margin: 0;
  }

  .values-section p {
    font-size: var(--font-size-description);
    padding: 0px;
  }

  .values-title {
    font-size: var(--font-size-subheading);
  }

  .values-detail {
    font-size: var(--font-size-small);
  }
  .values-wrapper {
    display: none !important;
  }

  /* Principles Section - Tablet */
  .principles-section {
    height: auto;
    padding: 50px 0;
  }
  .principles-section h1 {
    font-size: var(--font-size-large-heading);
    text-transform: uppercase;
  }

  .principles-section .card-title {
    font-size: var(--font-size-subheading);
    text-transform: uppercase;
  }

  .principles-section .card-description {
    font-size: var(--font-size-small);
  }

  /* Global Presence Section - Tablet */
  .global-presence-section {
    height: auto;
    padding: 50px 0;
  }

  .location {
    font-size: var(--font-size-body);
  }

  /* Testimonial Section - Tablet */
  .testimonial-section {
    height: auto;
    padding: 50px 0;
  }

  .testimonial-text {
    font-size: var(--font-size-body);
  }

  .quote-text p {
    font-size: var(--font-size-body);
  }
}

/* Mobile Styles (max-width: 767px) */
@media (max-width: 768px) {
  /* Hide desktop mission-vision-philosophy sections on mobile */
  .mission-section,
  .vision-section,
  .philosophy-section {
    display: none !important;
  }

  /* About Section - Mobile */
  .about-section {
    margin-bottom: 0;
  }

  .about-section h2 {
    font-size: var(--font-size-section-heading);
    font-weight: 400;
  }
  .about-us-hero-section h1 {
    font-size: var(--font-size-subheading);
    top: 15%;
    text-transform: uppercase;
  }
  .about-section p {
    font-size: var(--font-size-body);
    line-height: 1.6;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .about-section div {
    padding: 0px 30px;
  }
  /* Show mobile VMP swiper section */
  .vmp-mobile-section {
    display: block !important;
    margin-bottom: 0;
    width: 100%;
    padding: 40px 20px;
  }

  .vmp-mobile-section .swiper {
    width: 100%;
    height: auto;
    overflow: visible;
  }

  .vmp-mobile-section .swiper-slide {
    height: auto;
    display: flex;
    align-items: stretch;
  }

  .vmp-mobile-section .swiper {
    width: 100%;
    height: auto;
  }

  .vmp-mobile-section .swiper-slide {
    width: 100%;
  }

  .vmp-mobile-section card {
    display: block;
    height: 100%;
    background-color: #f1f2f2;
  }

  .vmp-mobile-section img {
    width: 100%;
    object-fit: cover;
    object-position: center;
    flex-shrink: 0;
  }

  .vmp-mobile-section .card-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 25px 15px;
    flex: 1;
    justify-content: center;
  }

  .vmp-mobile-section h2 {
    font-size: var(--font-size-section-heading);
    color: var(--primary);
    text-align: center;
    font-weight: 400;
    padding-bottom: 5px;
    text-transform: uppercase;
  }

  .vmp-mobile-section p {
    font-size: var(--font-size-description);
    line-height: 1.2;
    text-align: center;
    margin-bottom: 15px;
  }

  .vmp-mobile-section-subtitle {
    font-size: var(--font-size-description);
    font-weight: 500;
    margin-bottom: 10px;
    text-align: center;
  }
  /* Values Section - Mobile */
  .values-section {
    padding: 40px 0;
    margin: 0;
  }

  .values-section h2 {
    font-size: var(--font-size-section-heading);
    margin-bottom: 25px;
    font-weight: 300;
  }

  .values-section p {
    font-size: var(--font-size-body);
    margin-bottom: 30px;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding: 0 10px;
    line-height: 1.4;
  }

  .values-section .container {
    padding: 0 15px;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
  }

  .values-section .container > div {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
  }
  .values-wrapper {
    display: none !important;
  }
  .values-wrapper .vr {
    display: none;
  }

  .values-title {
    font-size: var(--font-size-body);
    font-weight: 500;
  }

  .values-detail {
    font-size: var(--font-size-small);
    line-height: 1.4;
    text-align: center;
  }

  /* Values Wrapper Mobile - Same styling as capabilities */
  .values-wrapper-mobile {
    display: block;
  }

  .values-wrapper-mobile .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    gap: 0;
  }

  .values-wrapper-mobile .col-6 {
    flex: 0 0 50%;
    padding: 20px 15px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    text-align: center;
    box-sizing: border-box;
  }

  .values-wrapper-mobile .col-6:nth-child(even) {
    border-right: none;
  }

  .values-wrapper-mobile .col-6:nth-child(n + 3) {
    border-bottom: none;
  }

  .values-wrapper-mobile .values-title {
    font-size: var(--font-size-h3);
    margin-bottom: 8px;
  }

  .values-wrapper-mobile .values-detail {
    font-size: var(--font-size-description);
    font-weight: 400;
    line-height: 1.4;
  }

  .values-wrapper-mobile img {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
    filter: brightness(0) invert(1);
  }

  .about-hero-section img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
  /* Principles Section - Mobile */
  .principles-section {
    height: auto;
    padding: 40px 0;
  }
  .principles-section h1 {
    font-size: var(--font-size-section-heading);
  }
  .principles-section .card {
    background-color: var(--primary);
  }

  .principles-section .card-content {
    padding: 20px 15px;
    background: var(--primary);
    color: #ffffff;
  }

  .principles-section .card-title {
    font-size: var(--font-size-body);
    color: #ffffff;
    margin-bottom: 10px;
  }

  .principles-section .card-description {
    font-size: var(--font-size-small);
    line-height: 1.4;
    color: #ffffff;
  }
  .principles-swiper {
    padding: 0;
  }
  .principles-section .card > div:first-child {
    height: 300px;
    width: 100%;
  }
  /* Global Presence Section - Mobile */
  .global-presence-section {
    height: auto;
    padding: 40px 0;
  }

  .global-presence-section h2 {
    font-size: var(--font-size-section-heading);
    margin-bottom: 30px;
    font-weight: 300;
    text-align: center;
    text-transform: uppercase;
  }

  .location {
    font-size: var(--font-size-body);
    text-align: center;
    padding: 8px 0;
  }

  .global-presence-section img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center 30%; /* Crops from top, shows middle to bottom portion */
    margin-top: -80px; /* Shifts image up to crop from top */
    margin-bottom: -10px; /* Shifts image up to crop from bottom */
  }
  /* Testimonial Section - Mobile */
  .testimonial-section {
    height: auto;
    padding: 40px 0;
    min-height: auto;
  }

  .testimonial-section h2 {
    font-size: var(--font-size-section-heading);

    text-transform: uppercase;
    font-weight: 400;
  }

  .testimonial-text {
    font-size: var(--font-size-small);
    margin-bottom: 20px;
  }

  .testimonial-card {
    padding: 20px 15px;
  }

  .quote-icon {
    position: absolute;
    top: -45px;
    left: 0px;
    z-index: 1;
  }

  .quote-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    object-position: center;
  }

  .quote-text p {
    font-size: var(--font-size-small);
    line-height: 1.4;
  }

  .gia-text {
    font-size: var(--font-size-small);
  }

  .certifications-container {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
  }
  .testimonial-cards-swiper {
    padding: 40px 0 40px 0;
  }
}

/* Extra Small Mobile Devices (max-width: 575px) */
@media (max-width: 575.98px) {
  .about-us-hero-section h1 {
    top: 18%;
    font-size: 12px;
  }
  .about-section h2 {
    font-size: var(--font-size-subheading);
  }
  .about-section p {
    font-size: var(--font-size-small);
  }
  .about-section div {
    padding: 0px 20px;
  }
  .vmp-mobile-section h2 {
    font-size: var(--font-size-subheading);
    color: var(--primary);
    text-align: center;
    font-weight: 400;
    padding-bottom: 0px;
  }
  .vmp-mobile-section p {
    font-size: var(--font-size-small);
    line-height: 1.2;
    text-align: center;
    margin-bottom: 15px;
  }
  .vmp-mobile-section-subtitle {
    font-size: var(--font-size-small);
    font-weight: 500;
    margin-bottom: 10px;
    text-align: center;
  }
  /* Values Section - Extra Small Mobile */
  .values-section h2 {
    font-size: var(--font-size-subheading);
    margin-bottom: 0px;
    font-weight: 400;
  }

  .values-section p {
    font-size: var(--font-size-small);
  }
  .innovation {
    padding-bottom: 20px;
  }
  .craftsmanship {
    padding-bottom: 20px;
  }
  .customer-delight {
    padding-top: 20px;
  }
  .integrity {
    padding-top: 20px;
  }
  .values-wrapper {
    display: none !important;
  }
  .values-wrapper-mobile {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
  }

  .values-wrapper-mobile img {
    width: 40px;
    height: 45px;
  }

  .values-wrapper-mobile .values-title {
    font-size: var(--font-size-description);
  }

  .values-wrapper-mobile .values-detail {
    font-size: var(--font-size-small);
  }

  /* Principles Section - Extra Small Mobile */
  .principles-section h1 {
    font-size: var(--font-size-subheading);
  }
  .principles-section .card-content {
    padding: 15px 20px;
  }

  /* Global Presence Section - Extra Small Mobile */
  .global-presence-section h2 {
    font-size: var(--font-size-subheading);
    margin-bottom: 20px;
  }
  .location {
    font-size: var(--font-size-extra-small);
    padding: 0px;
  }
  .global-presence-section img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center 30%; /* Crops from top, shows middle to bottom portion */
    margin-bottom: -30px; /* Shifts image up to crop from bottom */
  }
  /* Testimonial Section - Extra Small Mobile */

  .testimonial-card {
    padding: 15px 25px;
  }

  .testimonial-section h2 {
    font-size: var(--font-size-subheading);
    text-transform: uppercase;
    font-weight: 400;
  }
  .quote-icon {
    position: absolute;
    top: -35px;
    left: -20px;
    z-index: 1;
  }

  .quote-img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    object-position: center;
  }
}
/* ========================================
   26.HISTORY PAGE STYLES 
   ======================================== */
.history-banner img {
  height: 100%;
  width: 100%;
}
.about-us-hero-section:has(img[alt="History"]) h1 {
  top: 50%;
}

/* Responsive banner images */
.desktop-banner {
  display: block;
}

.mobile-banner {
  display: none;
}

/* Swiper responsive images - Desktop */
.desktop-swiper-img {
  display: block !important;
}

.mobile-swiper-img {
  display: none !important;
}

/* Timeline responsive images - Desktop */
.desktop-timeline-img {
  display: block;
}

.mobile-timeline-img {
  display: none;
}

@media (max-width: 768px) {
  .desktop-banner {
    display: none;
  }

  .mobile-banner {
    display: block;
  }

  /* Swiper responsive images - Mobile */
  .desktop-swiper-img {
    display: none !important;
  }

  .mobile-swiper-img {
    display: block !important;
  }
}
@media (min-width: 1599px) {
  .history-banner img {
    height: calc(100vh - var(--header-height));
  }
}
/* HISTORY LEGACY STYLES */
.history-legacy-section {
  background-color: var(--primary);
  color: var(--white);
  padding: 50px 0px;
  margin-bottom: 50px;
}
.history-legacy-section h1 span {
  display: block;
  font-weight: 300;
}
.history-legacy-section .container {
  padding: 0px 150px;
}
.history-legacy-section h1 {
  font-size: var(--font-size-main-heading);
  color: var(--white);
  text-align: center;
}
.history-legacy-section h1.fw-400 {
  font-weight: 400 !important;
  padding-bottom: 0px;
}
.history-legacy-section h1.fw-300 {
  font-weight: 200 !important;
}
.history-legacy-section p {
  font-size: var(--font-size-description);
  font-weight: 300;
  line-height: 28px;
  text-align: center;
  margin-top: 10px;
}
/* HISTORY TIMELINE STYLES */
.history-timeline-section {
  padding: 50px 0px;
  position: relative;
  overflow: hidden;
}

.history-timeline-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

/* Timeline Navigation - Text-Based Design */
.timeline-navigation {
  position: fixed;
  left: 60px;
  top: 50%;
  transform: translateY(-50%) translateX(-20px);
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition:
    opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    visibility 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: opacity, transform, visibility;
}

.timeline-navigation.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(-50%) translateX(0);
}

.timeline-nav-container {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
}
.timeline-nav-trigger {
  position: relative;
  height: 100px;
  width: 100%;
  pointer-events: none;
}

.timeline-nav-dots {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.timeline-nav-dot {
  background: transparent;
  border: none;
  font-size: 14px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.4);
  cursor: pointer;
  padding: 8px 12px;
  letter-spacing: 1px;
  position: relative;
  transition: all 0.3s ease;
}

.timeline-nav-dot::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.timeline-nav-dot:hover,
.timeline-nav-dot.active {
  color: var(--primary);
  font-weight: 500;
}

.timeline-nav-dot:hover::after,
.timeline-nav-dot.active::after {
  width: 100%;
}
@media (max-width: 1024px) {
  .history-legacy-section .container {
    padding: 0px 100px;
  }
  .history-legacy-section h1 {
    font-size: var(--font-size-section-heading);
    line-height: 40px;
  }
  .history-timeline-section h2 {
    font-size: var(--font-size-section-heading);
    margin-bottom: 20px;
  }
}
@media (max-width: 1199.98px) {
  .history-timeline-section {
    max-width: 700px;
    margin: 0 auto;
  }
}
@media (max-width: 900px) {
  .history-timeline-section {
    max-width: 500px;
    margin: 0 auto;
  }
}
/* Show two timeline years per viewport without changing vertical layout */
.history-timeline-section .timeline-item {
  min-height: 50vh;
}
@media (min-width: 1200px) {
  .history-timeline-section .timeline-item {
    min-height: calc((100vh - var(--header-height)) / 2);
  }
}
@media (max-width: 991.98px) {
  .history-timeline-section .timeline-item {
    min-height: auto;
  }
}

.history-timeline-section h2 {
  color: var(--primary);
  font-weight: 300;
  text-align: center;
  text-transform: capitalize;
}
.history-timeline-section h2 span {
  display: block;
}
.timeline-wrapper {
  width: 100%;
  margin: 0 auto;
}
.history-timeline-section .timeline-wrapper .vr {
  background-color: var(--primary);
  opacity: 1;
  height: 80px;
  width: 2px;
  margin: 0 auto;
  align-self: center;
}
.timeline-item {
  width: 100%;
  margin: 20px 0;
  scroll-margin-top: 100px; /* Account for fixed header in scrollIntoView */
}
.timeline-item img {
  height: auto;
  margin-top: 20px;
}
.timeline-item h3,
h4 {
  font-size: var(--font-size-medium-heading);
  color: var(--primary);
  font-weight: 400;
  transition: all 0.3s ease;
  padding: 0;
  text-align: center;
}
.timeline-item h3 {
  line-height: 50px;
}
.timeline-item h4 {
  line-height: 40px;
  font-size: var(--font-size-h2);
}
.timeline-item-title:hover {
  color: var(--primary);
  transform: scale(1.02);
}

.timeline-item-title.active {
  color: var(--primary);
  font-weight: 600;
  transform: scale(1.05);
}
.timeline-item-description {
  font-size: var(--font-size-subheading);
  color: #000;
  font-weight: 300;
  max-width: 400px;
  text-align: center;
  line-height: 1.6;
  margin-top: 10px;
}

/* History Page Mobile Responsive Styles */
@media (max-width: 768px) {
  /* History Banner - Mobile */
  .history-banner img {
    object-fit: cover;
    object-position: center;
  }

  /* History Legacy Section - Mobile */
  .history-timeline-section .timeline-wrapper .vr {
    height: 60px;
    width: 1px;
  }
  .history-legacy-section {
    padding: 40px 0;
    margin-bottom: 30px;
  }

  .history-legacy-section .container {
    padding: 0 30px;
  }

  .history-legacy-section h1 {
    font-size: var(--font-size-h2);
    line-height: 1.2;
  }

  .history-legacy-section p {
    font-size: var(--font-size-body);
    line-height: 1.6;
  }

  /* History Timeline Section - Mobile */
  .history-timeline-section {
    padding: 20px 0;
  }

  .history-timeline-section h2 {
    font-size: var(--font-size-h2);
  }

  .timeline-item {
    margin: 15px 0;
  }

  .timeline-item-title {
    font-size: var(--font-size-h2);
  }

  .timeline-item-description {
    font-size: var(--font-size-description);
    line-height: 1.4;
    margin-bottom: 15px;
    max-width: 100%;
  }

  .timeline-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
  }

  /* Timeline responsive images */
  .desktop-timeline-img {
    display: none;
  }

  .mobile-timeline-img {
    display: block;
  }
}

/* History Page Extra Small Mobile */
@media (max-width: 575.98px) {
  .timeline-navigation {
    display: none !important;
  }
  .history-legacy-section {
    padding: 30px 0;
  }

  .history-legacy-section h1 {
    font-size: var(--font-size-h3);
    line-height: 1.3;
  }

  .history-legacy-section p {
    font-size: var(--font-size-small);
  }

  .history-timeline-section h2 {
    font-size: var(--font-size-h5);
  }
  .timeline-item-title {
    font-size: var(--font-size-h3);
    line-height: 35px;
    text-align: center;
  }
  .timeline-item-description {
    font-size: var(--font-size-small);
  }
  .timeline-navigation {
    left: 20px;
  }
  .history-legacy-section h1.fw-400 {
    font-weight: 500 !important;
    font-size: var(--font-size-subheading);
  }
  .timeline-item h3 {
    font-size: var(--font-size-subheading);
    line-height: 25px;
  }
  .timeline-item h4 {
    font-size: var(--font-size-subheading);
    line-height: 20px;
  }
}
/* ========================================
   27.WHY GURUKRUPA PAGE STYLES 
   ======================================== */
/* CORPORATE CAPABILITIES STYLES */
.corporate-capabilities-section {
  background-color: var(--primary);
  color: var(--white);
  padding: 50px 0px;
  margin-bottom: 50px;
}
.corporate-capabilities-section .container {
  padding: 0px 180px;
}
.corporate-capabilities-section h2 {
  font-size: var(--font-size-main-heading);
  color: var(--white);
  text-align: center;
  font-weight: 300;
  padding-bottom: 0;
  margin-bottom: 10px;
  text-transform: capitalize;
}
.corporate-capabilities-section p {
  font-size: var(--font-size-description);
  font-weight: 300;
  line-height: 28px;
  text-align: center;
}
.capabilities-wrapper {
  position: relative;
}
.capabilities-wrapper::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background-color: white;
  transform: translateY(-50%);
}
.capabilities-wrapper .row {
  border: none;
}
.capabilities-wrapper .col-4 {
  border-right: 1px solid white;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.capabilities-wrapper .col-4:nth-child(3n) {
  border-right: none;
}
.capabilities-title {
  font-size: var(--font-size-medium-heading);
  color: var(--white);
  font-weight: 400;
  text-align: center;
}
.capabilities-info {
  font-size: var(--font-size-description);
  color: var(--white);
  font-weight: 400;
  text-align: center;
  opacity: 1;
}

/* CRAFTED PERFECTION SECTION STYLES */
.crafted-perfection-section {
  padding: 20px 0px 50px 0;
  margin-bottom: 50px;
  /* height: calc(100vh - var(--header-height)); */
}

/* Crafted perfection section specific styles */
.crafted-perfection-section {
  position: relative;
}

.crafted-perfection-section .container {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.crafted-perfection-section .container > div:first-child {
  flex: 0 0 auto;
}

.crafted-perfection-section .crafted-image {
  flex: 1 1 auto;
  min-height: 0;
  margin-top: 20px;
}

.crafted-perfection-section .crafted-image img {
  width: 100%;
  height: 100%;
  object-fit: 100%;
}

.crafted-perfection-section h2 {
  color: var(--primary);
  font-size: var(--font-size-main-heading);
  font-weight: 400;
  text-align: center;
  padding-bottom: 10px;
  margin-bottom: 10px;
  text-transform: capitalize;
}
.crafted-perfection-section p {
  font-size: var(--font-size-description);
  font-weight: 300;
  line-height: 28px;
  text-align: center;
  margin: 0 auto;
  padding: 0px 180px;
}

/* INNOVATION TRADITION SECTION STYLES */
.innovation-tradition-section {
  background-color: #000000;
  padding-top: 50px;
}
.innovation-tradition-section h2 {
  color: var(--primary);
  font-size: var(--font-size-main-heading);
  font-weight: 400;
  text-align: center;
  margin-bottom: 10px;
}
.innovation-tradition-section p {
  font-size: var(--font-size-description);
  font-weight: 300;
  line-height: 26px;
  text-align: center;
  padding: 0px 100px;
  color: var(--white);
}
.innovation-image {
  overflow: hidden;
  /* height: 400px; */
}
.innovation-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
}

.innovation-tradition-section {
  position: relative;
  height: auto;
  overflow: visible;
}

.innovation-tradition-section .container {
  height: auto;
}

.innovation-tradition-section .innovation-image {
  flex: 0 0 auto;
  height: auto;
}

/* JWELLERY MANUFACTURERS SECTION STYLES */
.jewellery-manufacturers-section {
  position: relative;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* height: 100vh; */
  min-height: 100vh;
  height: auto;
}
@media (min-width: 1599px) {
  .jewellery-manufacturers-section {
    height: calc(100vh - var(--header-height));
  }
  .jewellery-manufacturers-section .container {
    padding-top: 60px;
  }
}
@media (max-height: 700px) {
  .jewellery-manufacturers-section .container {
    margin-top: 20px;
  }
}
.jewellery-manufacturers-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background-color: var(--primary);
  z-index: 1;
}
/* .jewellery-manufacturers-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    var(--primary) 0%,
    var(--primary) 50%,
    transparent 50%
  );
  z-index: 1;
} */
.jewellery-manufacturers-section .container {
  background-color: transparent;
  position: relative;
  z-index: 2;
}
.jewellery-manufacturers-section h1 {
  color: var(--white);
  font-size: var(--font-size-main-heading);
  font-weight: 400;
  text-align: center;
}
.jewellery-manufacturers-section h1 span {
  display: block;
  line-height: 50px;
}
.jewellery-swiper {
  background-color: transparent;
  padding: 60px;
  position: relative;
  z-index: 2;
}
.jewellery-swiper .swiper-slide {
  height: auto;
}
.jewellery-swiper .card {
  height: 100%;
  border: none;
}
.jewellery-swiper .card img {
  width: 100%;
  object-fit: cover;
}
.jewellery-swiper .card-body {
  padding: 30px 0px;
}
.jewellery-swiper .card-title {
  color: #000;
  font-size: var(--font-size-card-title);
  font-weight: 300;
  padding-bottom: 0px;
}
.jewellery-swiper .card-description {
  color: #000;
  font-size: var(--font-size-small);
  font-weight: 300;
  line-height: 1.6;
  opacity: 0.9;
}
/* JWELLERY MANAGEMENT SECTION STYLES  */
.jewellery-management-section {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100vh;
  height: auto;
}
@media (min-width: 1599px) {
  .jewellery-management-section {
    height: calc(100vh - var(--header-height));
  }
}
.jewellery-management-section h2 {
  color: var(--primary);
  font-size: var(--font-size-h2);
  font-weight: 300;
  margin-bottom: 20px !important;
  text-align: left;
  padding: 0;
  margin-bottom: 0;
  text-transform: capitalize;
}
.jewellery-management-section .section-title {
  font-size: var(--font-size-section-heading);
}
/* ========================================
   WHY GURUKRUPA PAGE MOBILE RESPONSIVE STYLES
   ======================================== */

/* Hide mobile images and mobile wrappers on desktop by default */
.mobile-banner,
.mobile-image,
.capabilities-wrapper-mobile,
.values-wrapper-mobile {
  display: none;
}
@media (max-width: 1024px) {
  .corporate-capabilities-section .container {
    padding: 0px 100px;
  }
  .crafted-perfection-section p {
    padding: 0px 100px;
  }
  .corporate-capabilities-section h2,
  .crafted-perfection-section h2,
  .innovation-tradition-section h2,
  .jewellery-manufacturers-section h1 {
    font-size: var(--font-size-section-heading);
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .capabilities-title {
    font-size: var(--font-size-h3);
    line-height: 35px;
  }
  .capabilities-info {
    margin-top: 10px;
  }
}
/* Mobile responsive styles for Why Gurukrupa page */
@media (max-width: 768px) {
  /* Hide desktop images and show mobile images on mobile */
  .desktop-banner,
  .desktop-image {
    display: none;
  }

  .mobile-banner,
  .mobile-image {
    display: block;
  }

  /* Hide desktop capabilities wrapper and show mobile one */
  .capabilities-wrapper {
    display: none;
  }

  .capabilities-wrapper-mobile {
    display: block;
  }

  /* Hide desktop values wrapper and show mobile one */
  .values-wrapper {
    display: none;
  }

  .values-wrapper-mobile {
    display: block;
  }
  .corporate-capabilities-section .container {
    padding: 0px 25px;
  }
  .capabilities-wrapper-mobile .row {
    display: flex;
    flex-wrap: wrap;
    margin: 0;
    gap: 0;
  }

  .capabilities-wrapper-mobile .col-6 {
    flex: 0 0 50%;
    padding: 20px 15px;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
    text-align: center;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: end;
  }

  .capabilities-wrapper-mobile .col-6:nth-child(even) {
    border-right: none;
  }

  .capabilities-wrapper-mobile .col-6:nth-child(n + 5) {
    border-bottom: none;
  }

  .capabilities-wrapper-mobile .capabilities-title {
    font-size: var(--font-size-h3);
  }

  .capabilities-wrapper-mobile .capabilities-info {
    font-size: var(--font-size-small);
    font-weight: 400;
    line-height: 1.4;
  }

  /* Corporate Capabilities Section - Mobile */
  .corporate-capabilities-section {
    padding: 40px 0px;
    margin-bottom: 0px;
  }

  .corporate-capabilities-section h2 {
    font-size: var(--font-size-section-heading);
    margin-bottom: 20px;
    text-transform: uppercase;
  }

  .corporate-capabilities-section p {
    font-size: var(--font-size-description);
    line-height: 1.6;
    margin-bottom: 30px;
  }

  .capabilities-wrapper {
    margin-top: 20px;
  }

  .capabilities-wrapper .row {
    gap: 15px;
  }

  .capabilities-wrapper .col-4 {
    flex: 0 0 calc(50% - 7.5px);
    margin-bottom: 20px;
  }

  .capabilities-info {
    font-size: var(--font-size-small);
  }

  /* Crafted to Perfection Section - Mobile */
  .crafted-perfection-section {
    padding: 40px 0px;
    margin-bottom: 0px;
  }

  .crafted-perfection-section h2 {
    font-size: var(--font-size-section-heading);
    margin-bottom: 15px;
    text-transform: uppercase;
  }

  .crafted-perfection-section p {
    font-size: var(--font-size-description);
    line-height: 1.6;
    margin-bottom: 20px;
    padding: 0 0px;
  }

  .crafted-image {
    margin-top: 20px;
  }

  .crafted-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  /* Innovation Meets Tradition Section - Mobile */
  .innovation-tradition-section {
    padding: 30px 0px 0px 0px;
    background-color: #000000;
  }

  .innovation-tradition-section h2 {
    font-size: var(--font-size-section-heading);
    margin-bottom: 15px;
    text-transform: uppercase;
  }

  .innovation-tradition-section p {
    font-size: var(--font-size-description);
    line-height: 1.6;
    margin-bottom: 20px;
    padding: 0px 15px;
  }

  .innovation-image {
    margin-top: 20px;
  }

  .innovation-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center bottom;
    margin-top: -500px;
  }

  /* Jewellery Manufacturers Section - Mobile */
  .jewellery-manufacturers-section {
    height: auto;
    padding: 30px 0px;
    min-height: auto;
  }

  .jewellery-manufacturers-section h1 {
    font-size: var(--font-size-section-heading);
    text-transform: uppercase;
  }

  .jewellery-swiper {
    margin-top: 20px;
    padding: 20px 60px;
  }

  .jewellery-swiper .swiper-slide {
    height: auto;
  }

  .jewellery-swiper .card {
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .jewellery-swiper .card img {
    width: 100%;
    object-fit: cover;
  }

  .jewellery-swiper .card-title {
    font-size: var(--font-size-h4);
    margin-bottom: 10px;
    color: var(--primary);
  }

  .jewellery-swiper .card-description {
    font-size: var(--font-size-description);
    line-height: 1.6;
    flex: 1;
  }

  /* Jewellery Management Section - Mobile */
  .jewellery-management-section {
    height: 90vh;
    flex-direction: column;
    padding: 30px 0px;
  }
  .jewellery-management-section .container {
    padding: 0px 0px;
  }
  .jewellery-management-section .section-image {
    order: 1;
    width: 100%;
    margin-bottom: 20px;
  }

  .jewellery-management-section .section-image img {
    width: 100%;
    object-fit: cover;
  }

  .jewellery-management-section .section-content {
    order: 2;
    width: 100%;
  }

  .jewellery-management-section h2 {
    font-size: var(--font-size-h3);
    text-align: center;
    padding: 0px 100px;
    text-transform: uppercase;
  }

  .accordion-button {
    font-size: var(--font-size-description);
    padding: 15px;
  }

  .accordion-body {
    font-size: var(--font-size-description);
    line-height: 1.6;
  }
}
@media (max-width: 575.98px) {
  .crafted-perfection-section h2 {
    font-size: var(--font-size-subheading);
    margin-bottom: 0px;
    text-transform: uppercase;
  }
  .crafted-perfection-section p {
    font-size: var(--font-size-small);
    line-height: 20px;
    padding: 0px 25px;
  }
  .innovation-tradition-section h2 {
    font-size: var(--font-size-subheading);
    text-transform: uppercase;
  }
  .innovation-tradition-section p {
    font-size: var(--font-size-small);
  }
  .innovation-image img {
    margin-top: -250px;
  }
  .jewellery-management-section h2 {
    font-size: var(--font-size-subheading);
    text-transform: uppercase;
    padding: 0px 10px;
    margin-bottom: 0;
  }
  .jewellery-swiper {
    padding: 10px 60px;
  }
  .accordion-content p {
    margin-bottom: 0;
  }
  .jewellery-manufacturers-section h1 {
    font-size: var(--font-size-subheading);
    text-transform: uppercase;
  }
  .corporate-capabilities-section h2 {
    font-size: var(--font-size-subheading);
    text-transform: uppercase;
    margin-bottom: 10px;
    font-weight: 400;
  }
  .corporate-capabilities-section p {
    font-size: var(--font-size-small);
  }
  .capabilities-wrapper-mobile .capabilities-title {
    font-size: var(--font-size-subheading);
  }
  .capabilities-info {
    font-size: var(--font-size-small);
  }
}
/* ========================================
   25.SUSTAINABILITY PAGE STYLES 
   ======================================== */
/* Simple Bullet Pagination for Sustainability Page */
.sustainability-page .hero-swiper {
  position: relative !important;
}

.sustainability-page .hero-swiper .swiper-pagination {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 10px !important;
  bottom: 60px !important;
  position: absolute !important;
  left: 50% !important;
  right: auto !important;
  transform: translateX(-50%) !important;
  z-index: 100 !important;
  visibility: visible !important;
  opacity: 1 !important;
  width: auto !important;
  height: auto !important;
  pointer-events: auto !important;
  margin: 0 !important;
  padding: 0 !important;
}

.sustainability-page .hero-swiper .swiper-pagination-bullet {
  width: 15px !important;
  height: 15px !important;
  background: rgba(255, 255, 255, 0.6) !important;
  border: 2px solid rgba(255, 255, 255, 0.8) !important;
  border-radius: 50% !important;
  opacity: 1 !important;
  margin: 0 !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  display: inline-block !important;
  visibility: visible !important;
  position: relative !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3) !important;
}

.sustainability-page .hero-swiper .swiper-pagination-bullet::before {
  display: none !important;
}

.sustainability-page .hero-swiper .swiper-pagination-bullet:hover {
  background: rgba(255, 255, 255, 0.8) !important;
  border-color: rgba(255, 255, 255, 1) !important;
  transform: scale(1.1) !important;
}

.sustainability-page .hero-swiper .swiper-pagination-bullet-active {
  background: rgba(255, 255, 255, 1) !important;
  border-color: rgba(255, 255, 255, 1) !important;
  opacity: 1 !important;
  width: 14px !important;
  height: 14px !important;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4) !important;
}

.sustainability-page .hero-swiper .swiper-pagination-bullet-active::before {
  display: none !important;
}
.sustainability {
  margin-top: 70px;
}
.sustainability-towards .row {
  margin-left: 0;
  margin-right: 0;
}
.sustainability-towards h2 {
  color: var(--primary);
  font-size: var(--font-size-main-heading);
  font-weight: 400;
  text-align: start;
  margin-bottom: 0;
  text-transform: capitalize;
}
.sustainability-towards img {
  height: 100%;
  width: 100%;
}

.sustainability-towards p {
  color: #000;
  font-size: var(--font-size-description);
  font-weight: 400;
  text-align: justify;
}

.people-text {
  font-weight: 600;
}

.practices-section {
  background-color: var(--primary);
  color: var(--white);
  padding: 50px 50px 80px 50px;
  margin-bottom: 50px;
}

.practices-section h1 {
  color: var(--white);
  font-size: var(--font-size-main-heading);
  font-weight: 400;
  text-align: center;
  padding-bottom: 20px;
}
.practices-section p {
  font-size: var(--font-size-description);
  line-height: 26px;
  font-weight: 400;
  text-align: center;
  padding: 0px 100px 20px 100px;
}

.practices-title {
  font-size: var(--font-size-utility-xl);
  line-height: 35px;
  font-weight: 500;
  text-align: center;
}
.practices-detail {
  font-size: var(--font-size-description);
  font-weight: 400;
  text-align: center;
}
.sustainability-page .philosophy-section {
  margin-bottom: 80px;
}
.global-goal-section {
  padding: 0;
  width: 100%;
  margin: 80px auto 70px auto;
}
.global-goal-section img {
  width: 100%;
  height: 100%;
}
.report-section {
  position: relative;
}
.report-section img {
  width: 100%;
  height: 100%;
}
.report-section div {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  width: 100%;
}

.report-section h2 {
  font-size: var(--font-size-main-heading);
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 0;
}

.report-section p {
  font-size: var(--font-size-description);
  font-weight: 500;
  line-height: 26px;
  color: #ffffff;
  text-align: center;
  max-width: 600px;
  margin: 0px auto 30px auto;
}
/* ========================================
   SUSTAINABILITY PAGE MOBILE RESPONSIVE STYLES
   ======================================== */

/* Desktop and Mobile Image Display */
.desktop-global-goal-img,
.desktop-report-img {
  display: block;
}

.mobile-global-goal-img,
.mobile-report-img {
  display: none;
}

/* Hide mobile wrapper on desktop by default */
.sustainability-practices-wrapper-mobile {
  display: none;
}
@media (min-width: 768px) and (max-width: 999px) {
  .sustainability-page .vmp-mobile-section h2 {
    margin-bottom: 0px;
    margin-top: 20px;
  }
  .sustainability-page .vmp-mobile-section .card-content {
    padding: 25px 30px;
  }
}
@media (max-width: 769px) {
  /* Hide mobile views above 999px */
  .sustainability-page .vmp-mobile-section {
    display: none !important;
  }
  .sustainability-page .sustainability-practices-wrapper-mobile {
    display: none !important;
  }

  /* Show desktop views above 999px */
  .sustainability-page .mission-section,
  .sustainability-page .vision-section,
  .sustainability-page .philosophy-section {
    display: block !important;
  }

  .sustainability-page .values-wrapper {
    display: flex !important;
  }

  /* VMP Mobile swiper visible till 999px */
  .sustainability-page .vmp-mobile-section {
    display: block !important;
  }

  /* Desktop VMP sections hidden till 999px */
  .sustainability-page .mission-section,
  .sustainability-page .vision-section,
  .sustainability-page .philosophy-section,
  .sustainability-page .values-wrapper {
    display: none !important;
  }
}
/* Sustainability Practices Section - Mobile */
@media (min-width: 768px) and (max-width: 1024px) {
  .sustainability-towards.vision-section h2 {
    padding-left: 25px;
  }
  .sustainability-towards h2 {
    font-size: var(--font-size-h2);
    padding-bottom: 10px;
    padding-top: 20px;
  }
  .sustainability-towards p {
    font-size: var(--font-size-small);
    padding-bottom: 20px;
    margin-bottom: 0;
  }
}
@media (max-width: 999px) {
  .sustainability-towards .col-6 {
    flex: 0 0 50%;
  }
  .sustainability-page .practices-section {
    padding: 30px 0px 50px 0px;
    margin-bottom: 30px;
    width: 90%;
  }
  .sustainability-page .practices-section .values-wrapper > div {
    flex: 1;
    width: 100%;
  }

  /* Sustainability Practices Mobile Wrapper visible till 999px */
  .sustainability-page .sustainability-practices-wrapper-mobile {
    display: flex !important;
    flex-direction: column;
    gap: 0;
    overflow: hidden;
  }

  .sustainability-page .sustainability-practices-wrapper-mobile .practices-row {
    display: flex;
    width: 100%;
  }

  .sustainability-page .sustainability-practices-wrapper-mobile .practice-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: end;
    padding: 20px 10px;
    text-align: center;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
  }
  .practices-section p {
    padding: 0px 0px 20px 0px;
  }
  .sustainability-page
    .sustainability-practices-wrapper-mobile
    .practice-item:last-child {
    border-right: none;
  }

  .sustainability-page
    .sustainability-practices-wrapper-mobile
    .practice-item-single {
    border-right: none;
    border-bottom: none;
  }

  .sustainability-page
    .sustainability-practices-wrapper-mobile
    .practices-row:last-child
    .practice-item {
    border-bottom: none;
  }

  .sustainability-page .sustainability-practices-wrapper-mobile img {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
    filter: brightness(0) invert(1);
    opacity: 1;
  }
  .report-section div {
    top: 45%;
  }

  .report-section h2 {
    font-size: var(--font-size-section-heading);
  }
}

@media (max-width: 991.98px) {
  /* VMP Mobile Section - Tablet */
  .sustainability-page .vmp-mobile-section {
    padding: 50px 0px;
  }
}
@media (max-width: 575.98px) {
  .practices-section > .container.d-flex {
    display: block !important;
  }
}
/* ========================================
   25.TEAM LEADERSHIP PAGE STYLES 
   ======================================== */

.the-artisan div:first-child {
  display: flex;
  justify-content: center;
  padding-top: 50px;
  flex-direction: column;
}

.the-artisan h2 {
  color: var(--primary);
  font-size: var(--font-size-main-heading);
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 0;
}

.the-artisan p {
  color: #000;
  font-size: var(--font-size-description);
  font-weight: 400;
  text-align: center;
}

.visionary-section {
  background-color: var(--primary);
  padding: 80px 0;
}

.visionary-section h2 {
  color: var(--white);
  font-size: var(--font-size-main-heading);
  font-weight: 400;
  text-align: center;
  margin-bottom: 40px;
  padding: 0;
  text-transform: uppercase;
}

.visionary-swiper {
  width: 100%;
}

.visionary-swiper .swiper-wrapper {
  align-items: stretch;
}

.visionary-swiper .swiper-slide {
  height: auto;
  display: flex;
}

.visionary-card {
  background: transparent;
  border: 3px solid var(--primary);
  overflow: hidden;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.visionary-image {
  width: 100%;
  overflow: hidden;
  position: relative;
  background: #fff;
}

.visionary-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.3s ease;
}

.visionary-info {
  background: var(--primary);
  padding: 25px 20px;
  text-align: center;
}

.visionary-name {
  color: var(--white);
  font-size: var(--font-size-description);
  font-weight: 500;
  margin: 0;
  padding: 0;
  margin-bottom: 5px;
}

.visionary-role {
  color: var(--white);
  font-size: var(--font-size-small);
  font-weight: 400;
  margin: 0;
  line-height: 1.4;
}

.innovator-section h2 {
  color: var(--primary);
  font-size: var(--font-size-main-heading);
  font-weight: 400;
  text-align: center;
  margin-bottom: 40px;
  padding: 0;
}

.innovator-section {
  padding: 80px 0;
  margin-bottom: 50px;
}

.innovator-card {
  background: transparent;
  overflow: hidden;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.innovator-image-placeholder {
  width: 100%;
  height: 300px;
  background: #e0e0e0;
  position: relative;
}

.innovator-info {
  background: #fff;
  padding: 15px 10px;
  text-align: center;
}

.innovator-name {
  color: var(--primary);
  font-size: var(--font-size-description);
  font-weight: 500;
  margin: 0;
  padding: 0;
  margin-bottom: 5px;
}

.innovator-role {
  color: #000;
  font-size: var(--font-size-small);
  font-weight: 400;
  margin: 0;
  line-height: 1.4;
}

.col-lg-2-4 {
  flex: 0 0 20%;
  max-width: 20%;
}

/* ========================================
   TEAM LEADERSHIP PAGE MOBILE RESPONSIVE STYLES
   ======================================== */
.team-leadership-hero {
  position: relative;
}
.team-leadership-hero h1 {
  color: #fff;
  font-size: var(--font-size-main-heading);
  font-weight: 400;
  text-align: center;
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-transform: uppercase;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
  width: 100%;
}
/* Hide mobile swiper on desktop */
.innovator-mobile-swiper {
  display: none;
}

/* Show desktop layout on desktop */
.innovator-desktop-layout {
  display: block;
}

/* Desktop image visibility */
.artisan-desktop {
  display: block;
}

.artisan-mobile {
  display: none;
}
.artisan-image-wrapper {
  margin-top: 20px;
}
.visionary-desktop {
  display: block;
}

.visionary-mobile {
  display: none;
}
@media (max-width: 1024px) {
  .practices-section h1,
  .the-artisan h2,
  .visionary-section h2,
  .innovator-section h2 {
    font-size: var(--font-size-section-heading);
  }
  .the-artisan h2 {
    margin-bottom: 20px;
  }
}
/* Mobile responsive styles */
@media (max-width: 768px) {
  .team-leadership-hero h1 {
    font-size: var(--font-size-subheading);
  }
  /* Hide desktop layout on mobile */
  .innovator-desktop-layout {
    display: none;
  }
  /* Show mobile swiper on mobile */
  .innovator-mobile-swiper {
    display: block;
  }
  /* The Artisan Section - Mobile */
  .the-artisan {
    padding: 30px 0px 0px 0px;
  }

  .the-artisan div:first-child {
    padding-top: 10px;
  }

  .the-artisan h2 {
    font-size: var(--font-size-section-heading);
    margin-bottom: 20px;
  }

  .the-artisan p {
    font-size: var(--font-size-description);
    line-height: 1.6;
    margin-bottom: 20px;
  }

  /* Hide desktop image on mobile */
  .artisan-desktop {
    display: none;
  }

  /* Show mobile image on mobile */
  .artisan-mobile {
    display: block;
  }

  /* The Visionary Section - Mobile */
  .visionary-section {
    padding: 40px 0;
    margin-bottom: 30px;
  }

  .visionary-section h2 {
    font-size: var(--font-size-section-heading);
    margin-bottom: 30px;
  }

  .visionary-swiper {
    padding: 0 10px;
  }

  .visionary-card {
    border: 2px solid var(--primary);
  }
  .visionary-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  /* Hide desktop image on mobile */
  .visionary-desktop {
    display: none;
  }

  /* Show mobile image on mobile */
  .visionary-mobile {
    display: block;
  }

  .visionary-info {
    padding: 15px 10px;
  }

  .visionary-name {
    font-size: var(--font-size-description);
    margin-bottom: 5px;
  }

  .visionary-role {
    font-size: var(--font-size-small);
  }
  .innovator-section {
    padding: 20px 0px;
  }
  .innovator-section h2 {
    font-size: var(--font-size-section-heading);
    margin-bottom: 30px;
  }
  .artisan-image-wrapper {
    margin-top: 0px;
  }
}

/* Extra small mobile devices */
@media (max-width: 575.98px) {
  /* The Artisan Section - Extra Small Mobile */
  .team-leadership-hero h1 {
    font-size: 16px;
    top: 15%;
  }
  .the-artisan h2 {
    font-size: var(--font-size-subheading);
    margin-bottom: 15px;
    padding-bottom: 0;
  }

  .the-artisan p {
    font-size: var(--font-size-small);
    line-height: 1.5;
    margin-bottom: 15px;
  }

  /* The Visionary Section - Extra Small Mobile */
  .visionary-section {
    padding: 30px 0;
    margin-bottom: 20px;
  }

  .visionary-section h2 {
    font-size: var(--font-size-subheading);
    margin-bottom: 20px;
  }

  .visionary-swiper {
    padding: 0 5px;
  }

  .visionary-info {
    padding: 10px 8px;
  }

  .visionary-name {
    font-size: var(--font-size-small);
    margin-bottom: 3px;
  }

  .visionary-role {
    font-size: var(--font-size-extra-small);
  }

  /* Show mobile swiper on mobile */
  .innovator-section h2 {
    font-size: var(--font-size-subheading);
    margin-bottom: 10px;
  }
  .innovator-mobile-swiper {
    display: block;
    margin-top: 10px !important;
  }
  .innovator-name {
    font-size: var(--font-size-small);
  }
  .innovator-role {
    font-size: var(--font-size-extra-small);
  }
  /* Innovator Swiper Styles */
  .innovator-swiper {
    padding: 10px 0 0px 0;
  }

  .innovator-swiper .swiper-slide {
    height: auto;
    display: flex;
  }

  .innovator-swiper .innovator-card {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    /* Keep original desktop card styling */
    background: transparent;
    border: none;
    box-shadow: none;
  }

  .sustainability-practices-wrapper-mobile > div:first-child {
    display: flex;
  }
  .practices-title {
    font-size: var(--font-size-body);
    margin-top: 0 !important;
    line-height: 23px;
  }

  .sustainability-practices-wrapper-mobile .practices-detail {
    font-size: var(--font-size-extra-small);
    line-height: 1.5;
    text-align: center;
  }
  /* FORCE flex items to shrink properly */
  .sustainability-practices-wrapper-mobile .practices-row {
    display: flex;
    width: 100%;
  }

  .sustainability-practices-wrapper-mobile .practice-item {
    flex: 1 1 0;
    min-width: 0; /* 🔥 KEY FIX */
    overflow: hidden;
    text-align: center;
  }

  /* Practices Section - Sustainability Page */
  .practices-section {
    padding: 40px 0px 40px 0px;
  }

  .practices-section h1 {
    font-size: var(--font-size-subheading);
    margin-bottom: 0px;
    font-weight: 500;
    padding-bottom: 10px;
  }

  .practices-section p {
    font-size: var(--font-size-small);
    padding: 0px 0px;
    line-height: 20px;
  }

  /* Global Goals Section - Mobile */
  .global-goal-section {
    margin: 30px auto 20px auto;
    padding: 0 15px;
  }

  .global-goal-section img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  /* Report Section - Mobile */
  .report-section {
    position: relative;
  }

  .report-section img {
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .report-section div {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 90%;
    padding: 0 30px;
  }

  .report-section h2 {
    font-size: var(--font-size-subheading);
    text-transform: uppercase;
    padding: 0 40px;
  }

  .report-section p {
    font-size: var(--font-size-small);
    line-height: 20px;
    margin-top: 10px;
  }

  .report-section .custom-button {
    font-size: var(--font-size-extra-small);
    padding: 8px 16px;
  }
  /* Show mobile images, hide desktop images */
  .desktop-global-goal-img,
  .desktop-report-img {
    display: none;
  }

  .mobile-global-goal-img,
  .mobile-report-img {
    display: block;
  }
}
/* ========================================
   25.SINGLE PRODUCT CATEGORY PAGE STYLES 
   ======================================== */

/* Scroll-snap disabled - full-page scroll only on home page (index.html) */
.necklace-section {
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 60px 0;
  overflow: hidden;
  box-sizing: border-box;
}
@media (min-width: 1599px) {
  .necklace-section {
    height: auto;
    padding: 80px 0;
  }
}
.necklace-section > div {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  max-height: none;
  overflow: visible;
  gap: 0;
}
.sustainability-towards .subtitle {
  font-size: var(--font-size-subheading);
  font-weight: 500;
  color: #000000;
  text-align: justify;
}
.single-product-category-page .trust-authenticity-section {
  margin-top: 50px;
}
.necklace-section h1 {
  color: var(--primary);
  font-size: var(--font-size-main-heading);
  font-weight: 400;
  text-align: center;
  margin-bottom: 20px;
  padding-bottom: 0;
  flex: 0 0 auto;
  line-height: 1.2;
}
.necklace-title {
  color: var(--white);
  font-size: var(--font-size-medium-heading);
  font-weight: 400;
  line-height: 40px;
}
.necklace-subtitle {
  color: var(--white);
  font-size: var(--font-size-subheading);
  font-weight: 600;
  -webkit-text-stroke: 0.5px rgba(0, 0, 0, 0.4);
  text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
  text-transform: uppercase;
}
.necklace-swiper {
  flex: 1;
  min-height: 0;
  width: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  /* Removed fixed height */
}
.necklace-swiper.swiper {
  height: auto;
  width: 100%;
  flex: 1;
  /* Removed fixed height */
}
.necklace-swiper .swiper-wrapper {
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.necklace-swiper .swiper-slide {
  height: auto; /* Allow height to adapt */
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0;
  box-sizing: border-box;
}
.necklace-swiper .swiper-slide:not(.swiper-slide-active) {
  opacity: 0.7;
  transform: scale(0.95);
}
.necklace-swiper .swiper-slide:not(.swiper-slide-active) .necklace-item img {
  filter: grayscale(80%) brightness(0.8);
}
.necklace-swiper .swiper-slide-active {
  opacity: 1;
  transform: scale(1);
}
.necklace-swiper .swiper-slide-active .necklace-item img {
  filter: none;
}
.necklace-item {
  position: relative;
  overflow: hidden;
  width: 100%;
  display: block;
  margin: 0;
  padding: 0;
  border-radius: 0px;
  /* Aspect Ratio for Desktop */
  aspect-ratio: 21 / 9;
}
.necklace-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  display: block;
  margin: 0;
  padding: 0;
  border-radius: 0px;
}

/* Mobile Responsive Aspect Ratio */
@media (max-width: 768px) {
  .necklace-item {
    aspect-ratio: 4 / 5; /* More vertical for mobile */
  }
}
.necklace-content {
  position: absolute;
  bottom: 0%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  opacity: 1;
}

.necklace-section .d-flex.justify-content-center {
  flex: 0 0 auto;
  margin-top: 0 !important;
  padding-top: 0;
}
.necklace-section .mt-5 {
  margin-top: 0 !important;
}
.necklace-section button {
  margin-top: 20px;
}
.necklace-view-more-btn {
  background-color: transparent;
  color: #000;
  border: 1px solid var(--primary);
  padding: 10px 22px;
  border-radius: 0;
  font-weight: 300;
  font-size: var(--font-size-small);
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 20px;
}
.necklace-view-more-btn:hover {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.know-before-shine-section {
  background-color: #f1f2f2;
  padding: 80px 0;
  min-height: 100vh;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 1599px) {
  .know-before-shine-section {
    height: calc(100vh - var(--header-height));
  }
}
.know-before-shine-section h2 {
  color: var(--primary);
  font-size: var(--font-size-main-heading);
  font-weight: 300;
  text-align: center;
  margin-bottom: 0;
}
.know-before-shine-section .accordion {
  margin: 0 auto;
}
.know-before-shine-section .accordion-item {
  border-bottom: 1px solid #000;
  border-radius: 0;
  margin-bottom: 10px;
  background-color: transparent;
}
.know-before-shine-section .accordion-button {
  background-color: transparent;
  border: none;
  color: #000000;
  font-size: var(--font-size-subheading);
  font-weight: 400;
  padding: 20px 25px;
  box-shadow: none;
  border-radius: 0;
}
.know-before-shine-section .accordion-button:not(.collapsed) {
  background-color: transparent;
  color: #000000;
  box-shadow: none;
}
.know-before-shine-section .accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}
.know-before-shine-section .accordion-button::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000000'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  width: 1rem;
  height: 1rem;
}
.know-before-shine-section .accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23000000'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
  transform: rotate(180deg);
}
.know-before-shine-section .accordion-body {
  color: #000000;
  font-size: var(--font-size-description);
  font-weight: 400;
  line-height: 1.6;
  padding: 0 25px 20px 25px;
  text-align: left;
}

/* Single Product Category Page Tablet Responsive Styles */
@media (max-width: 991.98px) {
  /* Inspiration/Design/Manufacturing Sections - Tablet */

  /* VMP Mobile Section - Tablet */
  .vmp-mobile-section {
    padding: 50px 20px;
  }

  /* Trust & Authenticity Section - Tablet */
  .trust-authenticity-section {
    padding: 50px 0;
  }

  /* Necklace Section - Tablet */
  .necklace-section {
    height: auto;
    padding: 50px 0;
  }

  /* Know Before You Shine Section - Tablet */
  .know-before-shine-section {
    height: auto;
    padding: 50px 0;
  }
  .single-product-category-page .trust-authenticity-section {
    margin-top: 0px;
  }
}

/* Single Product Category Page Mobile Responsive Styles */
@media (max-width: 768px) {
  /* Inspiration/Design/Manufacturing Sections - Mobile */
  .mission-section,
  .vision-section,
  .philosophy-section {
    padding: 40px 0;
  }

  /* VMP Mobile Section - Mobile */
  .vmp-mobile-section {
    padding: 40px 20px;
  }

  /* Trust & Authenticity Section - Mobile */
  .trust-authenticity-section {
    padding: 40px 0;
  }

  /* Necklace Section - Mobile */
  .necklace-section {
    height: auto;
    padding: 40px 0px;
  }
  /* Know Before You Shine Section - Mobile */
  .know-before-shine-section {
    padding: 40px 0;
    height: auto;
  }

  .know-before-shine-section .accordion-item {
    margin-bottom: 15px;
    overflow: hidden;
  }

  .know-before-shine-section .accordion-button {
    font-size: var(--font-size-body);
    padding: 15px 0px;
    line-height: 1.4;
  }

  .know-before-shine-section .accordion-body {
    font-size: var(--font-size-small);
    padding: 15px 20px;
    line-height: 1.6;
  }
}

/* Single Product Category Page Extra Small Mobile */
@media (max-width: 575.98px) {
  .necklace-title {
    font-size: var(--font-size-subheading);
  }
  .necklace-section h1 {
    font-size: var(--font-size-subheading);
    text-transform: uppercase;
  }
  .necklace-subtitle {
    font-size: var(--font-size-description);
  }
  .necklace-view-more-btn {
    padding: 8px 20px;
    color: var(--primary);
    text-transform: uppercase;
    font-size: var(--font-size-extra-small);
  }
  /* Know Before You Shine Section - Extra Small Mobile */
  .know-before-shine-section {
    padding: 30px 0;
  }
  .know-before-shine-section h2 {
    font-size: var(--font-size-subheading);
    text-transform: uppercase;
  }

  .know-before-shine-section .accordion-button {
    font-size: var(--font-size-small);
    padding: 12px 0px;
  }

  .know-before-shine-section .accordion-body {
    font-size: var(--font-size-extra-small);
    padding: 15px 0px;
  }
}
/* ========================================
   25.CONTACT PAGE STYLES 
   ======================================== */

/* Contact Form Section */
.contact-form-section {
  padding: 80px 0;
}
.contact-form-section h1 {
  color: var(--primary);
  font-size: var(--font-size-main-heading);
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
}
.form-row {
  display: flex;
  gap: 60px;
}
.form-column {
  flex: 1;
}
.form-group {
  margin-bottom: 40px;
}
.form-group label {
  display: block;
  font-size: var(--font-size-body);
  font-weight: 400;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  border: none;
  border-bottom: 1px solid #cccccc;
  background: transparent;
  font-size: var(--font-size-body);
  color: #333333;
  outline: none;
  transition: border-color 0.3s ease;
  padding: 10px 0;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-bottom-color: var(--primary);
}
.form-group select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23333' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
  padding-right: 30px;
}
.form-group input[type="file"] {
  padding: 10px 0;
  cursor: pointer;
}
.form-group input[type="file"]::file-selector-button {
  border: 1px solid var(--primary);
  background: transparent;
  color: var(--primary);
  padding: 8px 20px;
  margin-right: 15px;
  cursor: pointer;
  font-size: var(--font-size-small);
  transition: all 0.3s ease;
}
.form-group input[type="file"]::file-selector-button:hover {
  background: var(--primary);
  color: #fff;
}
.form-group textarea {
  resize: vertical;
  min-height: 100px;
}
.form-group.full-width-message {
  margin-bottom: 40px;
}
.form-group.full-width-message textarea {
  width: 100%;
  min-height: 120px;
  resize: vertical;
  border: none;
  border-bottom: 1px solid #cccccc;
  padding: 10px 0;
  font-size: var(--font-size-body);
  color: #333333;
  outline: none;
  transition: border-color 0.3s ease;
}
.form-group.full-width-message textarea:focus {
  border-bottom-color: var(--primary);
}
.form-submit {
  text-align: center;
}
.submit-btn {
  background-color: var(--primary);
  color: #ffffff;
  border: none;
  padding: 15px 40px;
  font-size: var(--font-size-body);
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.submit-btn:hover {
  background-color: var(--primary);
}
/* Office Details Section */
.office-details-section {
  background-color: #f1f2f2;
  padding: 60px 0;
}
.office-row {
  display: flex;
  gap: 10px;
  margin-top: 50px;
}
.office-column {
  flex: 1;
  background-color: #f1f2f2;
  padding: 30px 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.office-row h2 {
  color: var(--primary);
  font-size: var(--font-size-h2);
  font-weight: 400;
}
.office-column p {
  color: #000;
  font-size: var(--font-size-description);
  line-height: 1.6;
  text-align: center;
}
.contact-info-row {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}
.contact-info-item {
  flex: 1;
  background-color: #f1f2f2;
}
.contact-info-box {
  height: 100%;
  padding: 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.contact-info-box:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.contact-info-box span {
  color: #333333;
  font-size: var(--font-size-description);
  font-weight: 500;
}
.sample-section {
  background-color: var(--primary);
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sample-section h2 {
  color: #fff;
  font-size: var(--font-size-main-heading);
  font-weight: 400;
  text-align: center;
  text-transform: capitalize;
  margin-bottom: 0;
}
/* Our Offices Section */
.our-offices-section {
  background-color: #ffffff;
  padding: 80px 0;
}
.our-offices-section h2 {
  color: var(--primary);
  font-weight: 400;
  text-align: center;
  margin-bottom: 40px;
  text-transform: uppercase;
}
.offices-grid {
  /* display: grid; removed for swiper compatibility */
  /* grid-template-columns: repeat(3, 1fr); removed */
  /* gap: 30px; removed */
  margin: 0 auto;
}
.office-card {
  background-color: #ffffff;
  overflow: hidden;
}
.office-image {
  width: 100%;
}
.office-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

/* Default desktop image display */
.office-image-desktop,
img.office-image-desktop {
  display: block;
}
.office-image-mobile,
img.office-image-mobile {
  display: none;
}
.office-content {
  padding: 25px 0px;
}
.office-content h3 {
  color: var(--primary);
  font-size: var(--font-size-h2);
  font-weight: 500;
}
.office-content p {
  color: #000;
  font-size: var(--font-size-description);
  line-height: 1.6;
  margin-bottom: 15px;
}
.office-contact p {
  color: #000;
  font-size: var(--font-size-description);
  margin-bottom: 0;
}
.office-contact p:last-child {
  margin-bottom: 0;
}
@media (max-width: 1024px) {
  .contact-form-section h1,
  .open-positions-section h2,
  .our-offices-section h2 {
    font-size: var(--font-size-section-heading);
  }
}
/* Mobile Responsive Styles */
@media (max-width: 768px) {
  .contact-form-section h1 {
    font-size: var(--font-size-h2);
  }
  .contact-form-section {
    padding: 40px 0;
  }
  .form-row {
    flex-direction: column;
    gap: 0;
  }
  .form-group {
    margin-bottom: 25px;
  }
  .our-offices-section h2 {
    font-size: var(--font-size-h2);
  }
  .office-details-section {
    padding: 50px 0;
  }
  .office-row {
    flex-direction: column;
    gap: 30px;
  }
  .office-content h3 {
    font-size: var(--font-size-h2);
  }
  .office-content p {
    font-size: var(--font-size-small);
  }
  .office-contact p {
    font-size: var(--font-size-small);
  }
  .contact-info-section {
    padding: 30px 0 40px 0;
  }
  .contact-info-row {
    flex-direction: column;
    gap: 15px;
  }
  .contact-info-box {
    padding: 20px 15px;
  }
  /* Our Offices Section - Mobile */
  .our-offices-section {
    padding: 40px 0;
  }
  .office-content {
    padding: 20px 0px;
  }
  .sample-section h2 {
    padding: 0px;
  }
}
@media (max-width: 575px) {
  .offices-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
  }
  .office-image-desktop,
  img.office-image-desktop {
    display: none !important;
  }
  .office-image-mobile,
  img.office-image-mobile {
    display: block !important;
  }
  .contact-form-section h1 {
    font-size: var(--font-size-subheading);
    margin-bottom: 0px;
    padding-bottom: 0;
  }
  .our-offices-section h2 {
    font-size: var(--font-size-subheading);
    margin-bottom: 20px;
  }
  .office-content h3 {
    font-size: var(--font-size-body);
  }
  .office-row h2 {
    font-size: var(--font-size-body);
  }
  .office-column p {
    font-size: var(--font-size-small);
  }
  .form-group label {
    font-size: var(--font-size-small);
  }
  .submit-btn {
    font-size: var(--font-size-small);
  }
  .sample-section h2 {
    padding: 0px 20px;
    font-size: var(--font-size-subheading);
  }
  .sample-section {
    height: 200px;
  }
}
@media (min-width: 576px) and (max-width: 1500px) {
  .offices-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ========================================
   SINGLE CATEGORIES LANDING PAGE STYLES
   ======================================== */

/* Crown Hero Section */
.crown-hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.crown-hero-image {
  position: relative;
  width: 100%;
  height: 100%;
}

.desktop-crown-hero {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.mobile-crown-hero {
  display: none;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Crown Description Section */
.crown-description-section {
  padding: 80px 0;
}

.crown-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.crown-title {
  font-size: var(--font-size-main-heading);
  font-weight: 300;
  color: var(--primary);
  line-height: 1.2;
}

.crown-description {
  font-size: var(--font-size-subheading);
  color: #000;
  line-height: 25px;
  margin: 0;
  text-align: center;
}

.product-layout {
  display: grid;
  grid-template-columns: 250px 1fr;
  gap: 40px;
  align-items: start;
}

/* Filter Sidebar */
.filter-sidebar {
  padding: 20px;
  height: 700px;
  overflow-y: scroll;
  position: sticky;
  top: 100px;
  scrollbar-color: #bcbec0 #f1f1f1;
  scrollbar-width: thin;
}
.filter-sidebar::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0px;
  width: 2px;
  height: 100%;
  background: #e6e7e8;
  pointer-events: none;
}
/* Chrome, Edge, Safari - Thin light grey scrollbar */
.filter-sidebar::-webkit-scrollbar {
  width: 2px;
}

.filter-sidebar::-webkit-scrollbar-track {
  background: #e6e7e8;
  border-radius: 1px;
}

.filter-sidebar::-webkit-scrollbar-thumb {
  background: #bcbec0;
  border-radius: 1px;
}

.filter-sidebar::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

.filter-title {
  font-size: var(--font-size-subheading);
  font-weight: 500;
  color: #000;
}

.filter-categories {
  margin-bottom: 30px;
}

.filter-link {
  display: block;
  padding: 5px 0;
  color: #000;
  text-decoration: none;
  font-size: var(--font-size-small);
  font-weight: 400;
  transition: color 0.3s ease;
  cursor: pointer;
}

.filter-link:hover {
  color: var(--primary);
}

.filter-link.active {
  color: var(--primary);
  font-weight: 500;
}

.filter-group {
  margin-bottom: 25px;
}

.filter-group-title {
  font-size: var(--font-size-subheading);
  font-weight: 500;
  color: #000;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.filter-options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.filter-checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: var(--font-size-small);
  color: #000;
  font-weight: 500;
}

.filter-checkbox input[type="checkbox"],
.filter-checkbox input[type="radio"] {
  display: none;
}

.checkmark {
  width: 16px;
  height: 16px;
  border: 1px solid #000;
  margin-right: 8px;
  position: relative;
  transition: all 0.3s ease;
}

.filter-checkbox input[type="checkbox"]:checked + .checkmark,
.filter-checkbox input[type="radio"]:checked + .checkmark {
  background-color: var(--primary);
  border-color: var(--primary);
}

.filter-checkbox input[type="checkbox"]:checked + .checkmark::after,
.filter-checkbox input[type="radio"]:checked + .checkmark::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 10px;
  font-weight: bold;
}
@media (max-width: 992px) {
  .filter-title {
    text-align: start;
  }
  .filter-group-title {
    text-align: start;
  }
}
/* Product Grid Section */
.product-grid-section {
  flex: 1;
}

.active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 30px;
  align-items: center;
  padding: 8px;
  border-bottom: 2px solid #d1d3d4;
}

.filter-tag {
  color: #000;
  border-radius: 20px;
  font-size: var(--font-size-small);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-right: 8px;
}

.remove-filter {
  cursor: pointer;
  color: #99999980;
  font-size: 30px;
  line-height: 1;
  transition: color 0.3s ease;
}

.remove-filter:hover {
  color: #231f20;
}

.clear-all-btn {
  background-color: #ffffff;
  border: 1px solid #ccc;
  color: #231f20;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: var(--font-size-small);
  cursor: pointer;
  transition: all 0.3s ease;
  margin-left: auto;
}

.clear-all-btn:hover {
  background-color: #f8f9fa;
  border-color: #999;
}

/* Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.product-item {
  background-color: #ffffff;
  overflow: hidden;
}

.product-image {
  width: 100%;
  border-bottom: 1px solid var(--primary);
  height: 300px;
}
@media (max-width: 1024px) {
  .product-image {
    height: 250px;
  }
}
.product-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.3s ease;
}

.product-text {
  padding: 15px;
  text-align: center;
  font-size: var(--font-size-body);
  font-weight: 300;
  color: #000;
}
.product-display-section {
  padding-bottom: 50px;
}

/* Product Pagination Styles */
.product-pagination {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px 0;
}

.product-pagination .pagination {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
}

.product-pagination .page-item {
  margin: 0;
}

.product-pagination .page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 35px;
  height: 40px;
  padding: 0 16px;
  font-size: var(--font-size-body);
  font-weight: 400;
  color: #000;
  text-decoration: none;
  background-color: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
}

.product-pagination .page-link:hover {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(198, 128, 141, 0.2);
}

.product-pagination .page-item.active .page-link {
  background-color: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  font-weight: 500;
  box-shadow: 0 2px 6px rgba(198, 128, 141, 0.3);
}

.product-pagination .page-item.disabled .page-link {
  background-color: #f5f5f5;
  color: #b0b0b0;
  border-color: #e0e0e0;
  cursor: not-allowed;
  opacity: 0.6;
}

.product-pagination .page-item.disabled .page-link:hover {
  background-color: #f5f5f5;
  color: #b0b0b0;
  border-color: #e0e0e0;
  transform: none;
  box-shadow: none;
}

.product-pagination .page-link span {
  font-size: 18px;
  line-height: 1;
}

/* Mobile Responsive Styles */
@media (max-width: 991.98px) {
  .desktop-crown-hero {
    display: none;
  }

  .mobile-crown-hero {
    display: block;
  }

  .crown-description-section {
    padding: 40px 0;
  }

  .crown-title {
    font-size: var(--font-size-large-heading);
  }

  .crown-description {
    font-size: var(--font-size-small);
  }

  .product-layout {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Mobile Filter Trigger Button */
  .mobile-filter-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: fixed; /* Sticky behavior */
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 990; /* Below the sidebar (9999) but above content */
    padding: 15px;
    background-color: #ffffff;
    border-top: 1px solid #e0e0e0;
    border-left: none;
    border-right: none;
    border-bottom: none;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    color: var(--body);
    text-transform: uppercase;
    border-radius: 0;
    cursor: pointer;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05); /* Shadow for separation */
    transition: all 0.3s ease;
  }

  .mobile-filter-btn:hover {
    background-color: #f9f9f9;
  }

  /* Hide the button when the sidebar is active or site footer is reached */
  .filter-sidebar.active ~ .mobile-filter-btn,
  body.filter-active .mobile-filter-btn,
  body.footer-reached .mobile-filter-btn {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .mobile-filter-btn img {
    width: 16px;
    height: 16px;
    margin-right: 8px;
    display: inline-block;
  }

  .filter-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: #ffffff;
    padding: 0;
    margin: 0;
    border-radius: 0;
    box-shadow: none;
    overflow-y: scroll;
    display: flex;
    flex-direction: column;
    transform: translateY(100%); /* Hidden by default */
    transition: transform 0.3s ease-in-out;
  }

  .filter-sidebar.active {
    transform: translateY(0); /* Visible when active */
  }

  /* Fixed Header Title */
  .filter-sidebar > .filter-title {
    position: sticky;
    top: 0;
    background: #ffffff;
    z-index: 1000;
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
    margin: 0 0 20px 0;
    width: 100%;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.03);
    font-size: 16px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
  }

  /* Content Padding Override */
  .filter-sidebar .filter-categories,
  .filter-sidebar .filter-group {
    padding: 0 20px;
  }

  /* Mobile Actions Footer */
  .mobile-filter-actions {
    position: sticky; /* Sticky relative to the scrolling sidebar */
    bottom: 0;
    width: 100%;
    height: 60px;
    background: #ffffff;
    border-top: 1px solid #e0e0e0;
    display: flex;
    z-index: 10001;
    margin-top: auto; /* Pushes to bottom if content is short */
    flex-shrink: 0; /* Prevents button from shrinking */
  }

  .btn-close-custom {
    flex: 1;
    height: 100%;
    border: none;
    background: #ffffff;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    cursor: pointer;
    transition: background-color 0.2s;
    color: var(--body);
  }

  .btn-close-custom:active {
    background-color: #f0f0f0;
  }

  /* Ensure pseudo-elements are gone */
  .filter-sidebar::before,
  .filter-sidebar::after {
    content: none;
    display: none;
  }

  .product-grid-section {
    order: 1;
  }

  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  @media (max-width: 768px) {
    .product-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 15px;
    }
  }

  .active-filters {
    margin-bottom: 20px;
  }

  .product-pagination {
    margin-top: 40px;
    padding: 15px 0;
  }

  .product-pagination .page-link {
    min-width: 40px;
    height: 40px;
    padding: 0 12px;
    font-size: 14px;
  }

  .product-pagination .pagination {
    gap: 6px;
  }
}

@media (max-width: 575px) {
  .crown-title {
    font-size: var(--font-size-section-heading);
  }

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

  .product-pagination {
    margin-top: 30px;
    padding: 10px 0;
  }

  .product-pagination .page-link {
    min-width: 36px;
    height: 36px;
    padding: 0 10px;
    font-size: 13px;
  }

  .product-pagination .page-link span {
    font-size: 16px;
  }

  .product-pagination .pagination {
    gap: 4px;
  }
}

/* ========================================
   BLOG PAGE STYLES
   ======================================== */

/* Blog Section */
.blog-section {
  padding: 80px 0;
  background-color: #ffffff;
}

/* Blog Header */
.blog-header {
  margin-bottom: 40px;
}
.blog-header h1 {
  font-weight: 300;
  color: var(--primary);
  margin: 0;
  padding-bottom: 0;
  font-size: var(--font-size-main-heading);
}
/* Blog Grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 0 auto;
}

/* Blog Card */
.blog-card {
  background: #f8f8f8;
  overflow: hidden;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
/* Blog Image */
.blog-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  position: relative;
}
.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
/* Blog Content */
.blog-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.blog-content h3 {
  font-size: var(--font-size-body);
  font-weight: 500;
  color: var(--primary);
  line-height: 1.3;
  padding-bottom: 0;
}
.blog-content p:first-of-type {
  font-size: var(--font-size-description);
  color: #000000;
  opacity: 0.502;
  margin: 0;
  font-weight: 400;
}
.blog-content p {
  font-size: var(--font-size-description);
  color: #000;
  line-height: 1.6;
  margin: 0 0 20px 0;
  flex-grow: 1;
}
/* Read More Button */
.blog-read-more {
  border: 1px solid var(--primary);
  border-radius: 0;
}
.blog-read-more:hover {
  background-color: var(--primary);
  color: #ffffff;
  text-decoration: none;
}
@media (max-width: 1024px) {
  .blog-header h1 {
    font-size: var(--font-size-section-heading);
  }
  .blog-header {
    margin-bottom: 40px;
  }
}
@media (max-width: 991px) {
  .blog-grid {
    display: none;
  }
}
/* Blog Responsive Design */
@media (max-width: 992px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
  .blog-section {
    padding: 60px 0;
  }
  .blog-title {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .blog-section {
    padding: 40px 0;
  }
  .blog-header h1 {
    font-size: var(--font-size-section-heading);
  }
  .blog-header {
    margin-bottom: 20px;
  }
  .blog-content {
    padding: 20px;
  }
  .blog-content h3 {
    font-size: var(--font-size-description);
  }
  .blog-content p:first-of-type {
    font-size: var(--font-size-small);
  }
  .blog-content p {
    font-size: var(--font-size-small);
  }
  .blog-read-more {
    padding: 8px 16px;
    font-size: var(--font-size-extra-small);
  }
}
@media (max-width: 575px) {
  .blog-header h1 {
    font-size: var(--font-size-subheading);
  }
}

/* ========================================
   BLOG DETAIL PAGE STYLES
   ======================================== */

/* Blog Detail Hero */
.blog-detail-hero {
  position: relative;
  height: 60vh;
  overflow: hidden;
}

.blog-detail-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Blog Detail Content */
.blog-detail-content {
  padding: 80px 0;
  background-color: #ffffff;
}

.blog-detail-main {
  padding-right: 40px;
}
.blog-detail-section h2 {
  font-size: var(--font-size-main-heading);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--primary);
  padding-bottom: 0;
  text-align: left;
  margin-bottom: 10px;
}
.blog-detail-section h3 {
  font-size: var(--font-size-subheading);
  font-weight: 400;
  color: #000;
  padding-bottom: 0;
  margin-bottom: 10px;
}
.blog-detail-section p {
  font-size: var(--font-size-description);
  color: #000;
  line-height: 1.6;
  margin-bottom: 20px;
}
.blog-detail-section {
  padding: 60px 0;
}
/* Swiper Container */
.related-blogs-swiper {
  padding: 0px 0 60px 0;
}

.related-blogs-swiper .swiper-slide {
  height: auto;
  display: flex;
}

.related-blogs-swiper .swiper-slide .blog-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Responsive Design */
@media (max-width: 992px) {
  .blog-detail-section h2 {
    font-size: var(--font-size-section-heading);
  }
  .blog-detail-section {
    padding: 50px 0;
  }
  .related-blogs-section {
    padding: 50px 0;
  }
}

@media (max-width: 768px) {
  .blog-detail-section h2 {
    font-size: var(--font-size-subheading);
    font-weight: 400;
    text-transform: uppercase;
    color: var(--primary);
    padding-bottom: 0;
  }
  .blog-detail-section h3 {
    font-size: var(--font-size-description);
    font-weight: 400;
    color: #000;
    padding-bottom: 0;
    margin-bottom: 20px;
  }
  .blog-detail-section p {
    font-size: var(--font-size-small);
    color: #000;
    line-height: 1.6;
    margin-bottom: 20px;
  }
  .blog-detail-section {
    padding: 40px 0;
  }
  .related-blogs-section {
    padding: 10px 0;
  }
}

/* ========================================
   EVENTS PAGE STYLES
   ======================================== */

/* Events Section */
.events-section {
  padding: 80px 0;
  background-color: #ffffff;
}
.events-subsection {
  margin-bottom: 80px;
}
.events-subsection:last-child {
  margin-bottom: 0;
}
/* Events Section Title */
.events-subsection h1,
h2 {
  font-size: var(--font-size-main-heading);
  font-weight: 300;
  color: var(--primary);
  text-align: center;
  margin-bottom: 50px;
  text-transform: uppercase;
  padding-bottom: 0;
}
/* Events List */
.events-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
/* Desktop and Mobile Events List Visibility */
.events-list-desktop {
  display: flex;
}
.events-list-mobile {
  display: none;
}
/* Upcoming Events Swiper */
.upcoming-events-swiper {
  width: 100%;
  padding-bottom: 40px;
}
.upcoming-events-swiper .swiper-slide {
  height: auto;
}
.upcoming-events-swiper .swiper-pagination {
  position: relative;
  margin-top: 20px;
}

/* Event Card */
.event-card {
  display: flex;
  background-color: #f8f8f8;
  overflow: visible;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
/* Event Image */
.event-image {
  flex: 0 0 50%;
  width: 50%;
  overflow: hidden;
  position: relative;
}
.event-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}
/* Event Content */
.event-content {
  flex: 0 0 50%;
  width: 50%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: visible;
}

.event-content h3 {
  font-size: var(--font-size-subheading);
  font-weight: 400;
  color: var(--primary);
  line-height: 1.3;
  padding-bottom: 10px;
}
.event-content p:nth-of-type(1) {
  font-size: var(--font-size-description);
  color: #000;
  font-weight: 500;
  margin: 0;
}
.event-content p:nth-of-type(2) {
  font-size: var(--font-size-description);
  color: #000;
  margin: 0 0 10px 0;
  font-weight: 500;
}
.event-content p:nth-of-type(3) {
  font-size: var(--font-size-description);
  color: #000;
  line-height: 1.6;
  margin: 0 0 25px 0;
  flex-grow: 1;
  font-weight: 400;
}
.past-event-content {
  flex: 0 0 50%;
  width: 50%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: visible;
}
.past-event-content h3 {
  font-size: var(--font-size-subheading);
  font-weight: 400;
  color: var(--primary);
  line-height: 1.3;
  padding-bottom: 10px;
}
.past-event-content p:nth-of-type(1) {
  font-size: var(--font-size-description);
  color: #000;
  font-weight: 500;
  margin: 0 0 10px 0;
}

.past-event-content p:nth-of-type(2) {
  font-size: var(--font-size-description);
  color: #000;
  line-height: 1.6;
  margin: 0 0 25px 0;
  flex-grow: 1;
  font-weight: 400;
}
/* Event Buttons */
.event-btn {
  display: inline-block;
  padding: 10px 30px;
  border: 1px solid var(--primary);
  background-color: transparent;
  color: var(--primary);
  text-decoration: none;
  font-size: var(--font-size-description);
  font-weight: 500;
  border-radius: 0;
  transition: all 0.3s ease;
  text-align: center;
  align-self: flex-start;
}
.event-btn:hover {
  background-color: var(--primary);
  color: #ffffff;
}
.event-year-tabs {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start; /* 🔥 critical */
  gap: 8px;
  overflow-x: auto;
  overflow-y: hidden;
  padding-inline: 16px;
  border-bottom: 1px solid #e0e0e0;
  margin-bottom: 40px;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}

.event-year-tabs::-webkit-scrollbar {
  display: none;
}

.event-year-tabs .nav-item,
.event-year-tabs .nav-link {
  flex-shrink: 0;
  white-space: nowrap;
}
.event-year-tabs .nav-item {
  margin-bottom: 0;
}

.event-year-tabs .nav-link {
  border: none;
  border-bottom: 2px solid transparent;
  color: #666;
  font-size: var(--font-size-description);
  font-weight: 400;
  padding: 10px 20px;
  background: transparent;
  transition: all 0.3s ease;
  text-align: center;
  min-width: 60px;
}

.event-year-tabs .nav-link:hover {
  border-bottom-color: var(--primary);
  color: var(--primary);
  background: transparent;
}

.event-year-tabs .nav-link.active {
  border-bottom-color: var(--primary);
  color: var(--primary);
  background: transparent;
  font-weight: 500;
}

.event-year-tabs .nav-link:focus {
  box-shadow: none;
}
@media (max-width: 1024px) {
  .events-subsection h1,
  h2 {
    font-size: var(--font-size-section-heading);
  }
  .events-subsection .nav {
    display: flex;
    margin-left: 0;
  }
}
@media (max-width: 1023px) {
  .event-info-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
  }
}
/* Responsive Design */
@media (max-width: 992px) {
  .events-section {
    padding: 60px 0;
  }
  .event-card {
    gap: 20px;
  }

  .event-image {
    flex: 0 0 50%;
    width: 50%;
  }

  .event-content {
    flex: 0 0 50%;
    width: 50%;
    padding: 25px;
  }
}

@media (max-width: 768px) {
  .events-section {
    padding: 40px 0;
  }
  .events-subsection {
    margin-bottom: 60px;
  }
  .events-subsection h1,
  h2 {
    font-size: var(--font-size-h2);
    margin-bottom: 20px;
  }
  /* Show mobile swiper, hide desktop list */
  .events-list-desktop {
    display: none;
  }
  .events-list-mobile {
    display: block;
  }
  .event-card {
    flex-direction: column;
    gap: 0;
  }
  .event-image {
    flex: 0 0 auto;
    width: 100%;
  }
  .event-content {
    flex: 0 0 auto;
    width: 100%;
    padding: 20px;
  }
  .event-title {
    font-size: var(--font-size-body);
  }
  .event-year-tabs {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    display: flex;
  }
  .event-year-tabs::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
  }
  .event-year-tabs .nav-item {
    flex: 0 0 auto;
    min-width: auto;
  }
  .event-year-tabs .nav-link {
    padding: 8px 15px;
    font-size: var(--font-size-small);
    white-space: nowrap;
  }
  .past-event-content {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .events-subsection {
    margin-bottom: 40px;
  }
  .events-subsection h1,
  h2 {
    font-size: var(--font-size-subheading);
    margin-bottom: 10px;
  }
  .event-content h3 {
    font-size: var(--font-size-body);
  }
  .event-content p:nth-of-type(1) {
    font-size: var(--font-size-small);
  }
  .event-content p:nth-of-type(2) {
    font-size: var(--font-size-small);
  }
  .event-content p:nth-of-type(3) {
    font-size: var(--font-size-small);
  }
  .event-year-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    margin-left: 0;
  }
  .event-year-tabs::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
  }
  .event-year-tabs .nav-link {
    padding: 8px 12px;
    font-size: var(--font-size-small);
  }
  .event-content {
    padding: 15px;
  }
  .event-btn {
    padding: 8px 20px;
    font-size: var(--font-size-small);
  }
  .past-event-content {
    width: 100%;
    padding: 15px;
  }
  .past-event-content p:nth-of-type(1) {
    font-size: var(--font-size-small);
  }
  .past-event-content p:nth-of-type(2) {
    font-size: var(--font-size-small);
  }
}
/* ========================================
   ALL COLLECTION PAGE STYLES
   ======================================== */
.all-collection-page .trust-authenticity-section {
  background-color: #ffffff;
  padding: 50px 0 80px 0;
}
.all-collection-page .trust-authenticity-section .trust-content p {
  color: #000000;
}
.all-collection-page .trust-authenticity-section .trust-content h2 {
  color: var(--primary);
  font-weight: 300;
}
.inspiration-section {
  min-height: 100vh;
  margin-bottom: 0px;
}

@media (min-width: 1599px) {
  .inspiration-section {
    min-height: calc(100vh - var(--header-height));
    margin-bottom: 100px;
  }
  .design-section {
    min-height: calc(100vh - var(--header-height));
  }
}

.inspiration-section h2 {
  color: var(--primary);
  font-size: var(--font-size-main-heading);
  font-weight: 300;
  text-align: center;
  padding-bottom: 0;
  margin-bottom: 10px;
  text-transform: capitalize;
}
.inspiration-section p {
  color: #000000;
  font-size: var(--font-size-description);
  font-weight: 300;
  line-height: 28px;
  margin-bottom: 50px;
  text-align: center;
  padding: 0px 100px;
}
.all-collection-page .necklace-section h1 {
  font-weight: 300;
  text-transform: capitalize;
}
.design-section {
  position: relative;
  padding: 0;
  min-height: 100vh;
  overflow: hidden;
}
.manufacturing-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.manufacturing-section img {
  margin-top: 50px;
}
.design-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 70%;
  background-color: var(--primary);
  z-index: 1;
}
.design-section .container {
  background-color: transparent;
  position: relative;
  z-index: 2;
  padding: 50px 15px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.design-section h2 {
  color: var(--white);
  margin-bottom: 0;
  text-transform: capitalize;
}

.design-section p {
  color: var(--white);
  margin-bottom: 0px;
}

.design-image {
  background-color: transparent;
  position: relative;
  z-index: 2;
}

.design-image img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 768px) {
  .inspiration-section {
    min-height: auto;
    margin-bottom: 50px;
  }
  .inspiration-section p {
    padding: 0px 10px;
  }
  /* Inspiration Section - Reorder: Content first, then image */
  .inspiration-section .container {
    display: flex;
    flex-direction: column;
  }
  .inspiration-section h2 {
    order: 1;
  }
  .inspiration-section p {
    order: 2;
  }
  .inspiration-section img {
    order: 3;
    margin-top: 30px;
    margin-bottom: 0;
  }

  /* Design Section - Reorder: Content first, then image */
  .design-section .container {
    display: flex;
    flex-direction: column;
    padding: 30px 30px 0px 30px;
    gap: 10px;
  }
  .design-section h2 {
    order: 1;
  }
  .design-section p {
    order: 2;
  }
  .design-image {
    order: 3;
    margin-bottom: 0;
  }

  /* Manufacturing Section - Reorder: Content first, then image */
  .manufacturing-section {
    display: flex;
    flex-direction: column;
  }
  .manufacturing-section .container {
    order: 1;
  }
  .manufacturing-section img {
    order: 2;
    margin-top: 30px;
    margin-bottom: 0;
  }
}
@media (max-width: 480px) {
  .inspiration-section h2 {
    font-size: var(--font-size-h3);
  }
  .inspiration-section p {
    font-size: var(--font-size-small);
    line-height: 1.5;
    text-align: center;
    margin-bottom: 0px;
    padding: 0px;
  }
}
/* ========================================
   4C DIAMONDS PAGE STYLES
   ======================================== */
.c4-diamonds-section {
  background-color: var(--primary);
  padding: 80px 0;
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.c4-diamonds-section h2 {
  color: var(--white);
  font-weight: 300;
  text-align: center;
  padding-bottom: 0;
  text-transform: uppercase;
  margin-bottom: 0;
}
.c4-diamonds-section p {
  color: var(--white);
  font-size: var(--font-size-description);
  font-weight: 300;
  line-height: 28px;
  margin-bottom: 50px;
  text-align: center;
  padding: 0px 100px;
}

.c4s {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* Carat Weight Section */
/* .carat-weight-section {
  padding: 50px 0;
  margin-bottom: 50px;
} */
.carat-weight-text {
  padding: 0px 40px;
}
.carat-weight-text h2 {
  font-size: var(--font-size-main-heading);
  font-weight: 400;
  color: var(--primary);
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 0;
  text-align: start;
}

.carat-weight-text p {
  font-size: var(--font-size-description);
  color: var(--body);
  line-height: 1.6;
  margin-bottom: 0;
}
.carat-weight-tabs {
  background-color: #ececec;
  padding: 30px;
}
/* Carat Size Tabs */
.carat-size-tabs {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 0;
  background-color: #fff;
  padding: 8px;
  list-style: none;
  flex-wrap: wrap;
}

.carat-size-tabs .nav-item {
  flex: 1;
  min-width: auto;
}

.carat-size-tabs .nav-link {
  display: block;
  padding: 7px 16px;
  text-align: center;
  font-size: var(--font-size-small);
  font-weight: 400;
  color: #999;
  background-color: transparent;
  border: none;
  border-radius: 0px;
  transition: all 0.3s ease;
  cursor: pointer;
  width: 100%;
  text-transform: uppercase;
}

.carat-size-tabs .nav-link:hover {
  color: var(--primary);
  background-color: rgba(198, 128, 141, 0.1);
}

.carat-size-tabs .nav-link.active {
  background-color: var(--primary);
  color: var(--white);
  font-weight: 500;
  border-bottom: none;
}

.carat-size-tabs .nav-link.active:hover {
  background-color: var(--primary);
  color: var(--white);
}

.diamond-display {
  text-align: center;
  width: 100%;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.diamond-ring-image {
  width: 100%;
  height: 100%;
  display: block;
  margin: 0 auto;
  object-fit: contain;
  object-position: center;
}

/* Disclaimer */
.diamond-disclaimer {
  text-align: center;
}

.diamond-disclaimer p {
  font-size: var(--font-size-description);
  color: #000;
  line-height: 1.5;
  margin-bottom: 0;
  padding-bottom: 20px;
}
.diamond-shapes-section {
  margin-top: 50px;
  background-color: #ececec;
  padding: 50px 0;
}
.diamond-shapes-section h1 {
  color: var(--primary);
  font-weight: 300;
  text-align: center;
  padding-bottom: 0;
  text-transform: uppercase;
  font-size: var(--font-size-main-heading);
}
.diamond-shapes-section p {
  color: #000;
  font-size: var(--font-size-description);
  font-weight: 300;
  line-height: 28px;
  margin-bottom: 50px !important;
  text-align: center;
  padding: 0px 250px;
}

/* Default desktop image display */
.diamond-shape-image-desktop,
img.diamond-shape-image-desktop {
  display: block;
}

.diamond-shape-image-mobile,
img.diamond-shape-image-mobile {
  display: none;
}
@media (max-width: 1024px) {
  .c4-diamonds-section h2,
  .diamond-shapes-section h1 {
    font-size: var(--font-size-section-heading);
    margin-bottom: 15px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .carat-weight-section .col-6 {
    flex: 0 0 50%;
  }
  .carat-weight-section .row {
    margin-left: 0;
    margin-right: 0;
  }
  .carat-size-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .carat-weight-text h2 {
    font-size: var(--font-size-h2);
  }
  .carat-weight-text p {
    font-size: var(--font-size-small);
  }
  .diamond-shapes-section p {
    padding: 0px 40px;
  }
}
/* Responsive Design */
@media (max-width: 768px) {
  .c4-diamonds-section h2 {
    font-size: var(--font-size-h2);
  }
  .carat-weight-text h2 {
    font-size: var(--font-size-h2);
    text-align: center;
  }
  /* .carat-weight-section {
    padding: 40px 0;
  } */

  .carat-weight-section .row {
    display: flex;
    flex-direction: column;
    padding: 0px 20px;
  }

  .carat-weight-section .col-6 {
    width: 100%;
    max-width: 100%;
    margin-bottom: 30px;
  }

  .carat-weight-tabs {
    order: 1;
  }

  .carat-weight-text {
    order: 2;
  }

  .carat-size-tabs {
    justify-content: space-evenly;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
  }
  .carat-size-tabs::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
  }

  .carat-size-tabs .nav-item {
    flex: 0 0 auto;
    min-width: 60px;
  }

  .carat-size-tabs .nav-link {
    padding: 10px 8px;
    font-size: 12px;
    white-space: nowrap;
  }

  .c4-diamonds-section p {
    padding: 0px 20px;
  }
  .diamond-shapes-section h1 {
    font-size: var(--font-size-h2);
  }
  .diamond-shapes-section p {
    padding: 0px 20px;
  }
  .diamond-display {
    height: 300px;
  }
  .diamond-shape-image-mobile,
  img.diamond-shape-image-mobile {
    display: none !important;
  }
  .diamond-shape-image-desktop,
  img.diamond-shape-image-desktop {
    display: block !important;
  }
  .diamond-shapes-text {
    position: static;
  }
  .diamond-shapes-section {
    margin-top: 40px;
    position: static;
  }
}
@media (max-width: 480px) {
  .c4-diamonds-section h2 {
    font-size: var(--font-size-subheading);
    font-weight: 400;
    margin-bottom: 10px;
  }
  .c4-diamonds-section p {
    font-size: var(--font-size-small);
    line-height: "15px";
    padding: 0px;
  }
  .carat-weight-text h2 {
    font-size: var(--font-size-subheading);
    margin-bottom: 10px;
  }
  .carat-weight-text p {
    font-size: var(--font-size-small);
    line-height: "15px";
    text-align: center;
  }
  .diamond-shapes-section p {
    padding: 0px 10px;
  }
  .c4-diamonds-section {
    padding: 40px 0;
    margin-bottom: 10px;
  }
  .carat-weight-text {
    padding: 0px 0px;
  }
  .diamond-disclaimer p {
    font-size: var(--font-size-small);
  }
  .diamond-shapes-section h1 {
    font-size: var(--font-size-subheading);
  }
  .diamond-shapes-section p {
    font-size: var(--font-size-small);
    line-height: 1.5;
    text-align: center;
  }
  .diamond-shapes-section {
    padding: 30px 0;
  }
  .carat-weight-section {
    margin-bottom: 0px;
    margin-top: 50px;
  }
  .diamond-display {
    height: 250px;
  }
  .diamond-display {
    height: 300px;
  }
  .carat-size-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
  }
  .carat-size-tabs::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
  }
  .carat-size-tabs .nav-item {
    min-width: 50px;
  }
  .carat-size-tabs .nav-link {
    padding: 8px 6px;
    font-size: 11px;
  }
  .carat-weight-tabs {
    padding: 20px;
  }
  .diamond-shapes-section {
    background-color: #fff;
    margin-top: 0;
  }
  .diamond-shape-image-desktop,
  img.diamond-shape-image-desktop {
    display: none !important;
  }
  .diamond-shape-image-mobile,
  img.diamond-shape-image-mobile {
    display: block !important;
  }
  .diamond-shapes-text {
    position: absolute;
    top: 38px;
    left: -10px;
    right: -10px;
    padding: 0px 30px;
    z-index: 1;
  }
  .diamond-shapes-section {
    position: relative;
  }
}
/* ========================================
Past Events Page Styles   
======================================== */

.event-info {
  padding: 50px 0;
  background-color: var(--primary);
}

.event-info-container h2 {
  font-size: var(--font-size-body);
  font-weight: 300;
  text-align: center;
  padding-bottom: 0;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 5px;
}
.event-info-container div {
  font-size: var(--font-size-h3);
  font-weight: 300;
  line-height: 28px;
  text-align: center;
  color: var(--white);
}
/* .event-info-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
} */
.event-info-container {
  display: grid;
}
.event-info-subcontainer {
  display: contents;
}
@media (min-width: 1024px) {
  .event-info-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
@media (max-width: 768px) {
}

.event-description {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 50px;
}
.event-description p,
.event-description h2 {
  color: #000;
  font-size: var(--font-size-description);
  font-weight: 300;
  line-height: 28px;
  text-align: left;
}
.event-description h2 {
  padding-bottom: 0;
  font-weight: 500;
  margin-bottom: 10px;
}
.subscribe-section {
  background-color: #f5f5f5;
  padding: 50px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 60px;
}
.subscribe-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
.subscribe-section h2 {
  font-weight: 300;
  text-align: center;
  padding: 0;
  margin: 0;
  color: var(--primary);
  line-height: 1.2;
  text-transform: capitalize;
}
.subscribe-form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
  width: 100%;
  max-width: 500px;
}
.subscribe-input {
  width: 100%;
  height: 50px;
  background-color: #ffffff;
  border: none;
  border-radius: 0;
  padding: 0 20px;
  font-size: 16px;
  color: #000;
  outline: none;
}

.subscribe-input:focus {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.subscribe-btn {
  padding: 10px 30px;
  background-color: var(--primary);
  color: #ffffff;
  border: none;
  border-radius: 3px;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.subscribe-btn:hover {
  background-color: #b88a8e;
}
.captured-moments-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 0;
}
.captured-moments-section h2 {
  color: var(--primary);
  font-size: var(--font-size-main-heading);
  font-weight: 300;
  text-align: center;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 30px;
}
/* Event Showcase Swiper Styles */
.event-showcase-swiper-wrapper {
  position: relative;
  overflow: hidden;
}

.event-showcase-swiper {
  width: 100%;
  height: auto;
}

.event-showcase-swiper .swiper-wrapper {
  display: flex;
  align-items: center;
}

.event-showcase-swiper .swiper-slide {
  width: 100%;
  display: flex;
  align-items: center;
  transition: box-shadow 0.6s ease; /* no transform here */
}

.event-slide-content {
  width: 100%;
  height: 100%;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.6s ease;
}

.event-slide-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media (max-width: 1024px) {
  .subscribe-section h2,
  .captured-moments-section h2 {
    font-size: var(--font-size-section-heading);
  }
  .captured-moments-section {
    padding: 40px 0px 0px 0px;
  }
  .events-subsection h1,
  h2 {
    padding-bottom: 0;
  }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .captured-moments-section {
    padding: 40px 0px 0px 0px;
  }
  .captured-moments-section h2 {
    padding-bottom: 0px;
    font-size: var(--font-size-h2);
    margin-bottom: 0;
  }
  .event-showcase-swiper-wrapper {
    height: 450px;
    min-height: 450px;
  }
  .event-showcase-swiper {
    height: 100%;
  }
  .event-showcase-swiper .swiper-wrapper {
    height: 100%;
    align-items: center;
  }
  /* Center slide - mobile */
  .event-showcase-swiper .swiper-slide-active {
    height: 400px !important;
  }
  /* Side slides - mobile */
  .event-showcase-swiper .swiper-slide:not(.swiper-slide-active) {
    height: 280px !important;
  }
  .event-showcase-swiper .swiper-button-next,
  .event-showcase-swiper .swiper-button-prev {
    width: 40px;
    height: 40px;
  }
  .event-showcase-swiper .swiper-button-next::after,
  .event-showcase-swiper .swiper-button-prev::after {
    font-size: 16px;
  }
  .event-showcase-swiper .swiper-button-prev {
    left: 10px;
  }
  .event-showcase-swiper .swiper-button-next {
    right: 10px;
  }
  .subscribe-section h2 {
    font-size: var(--font-size-h2);
  }
  .event-info-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  /* Neutralize wrapper safely */
  .event-info-subcontainer {
    display: contents;
  }

  .event-info-container > div,
  .event-info-subcontainer > div {
    text-align: center;
  }
}
@media (max-width: 480px) {
  .event-info-container h2 {
    font-size: var(--font-size-small);
    text-align: left;
  }
  .event-info-container div {
    font-size: var(--font-size-body);
    text-align: left;
  }
  .event-showcase-swiper-wrapper {
    height: 400px;
    min-height: 400px;
  }
  /* Center slide - small mobile */
  .event-showcase-swiper .swiper-slide-active {
    height: 350px !important;
  }
  /* Side slides - small mobile */
  .event-showcase-swiper .swiper-slide:not(.swiper-slide-active) {
    height: 240px !important;
  }
  .event-description p,
  .event-description h2 {
    font-size: var(--font-size-small);
    line-height: 1.5;
  }
  .subscribe-section h2 {
    font-size: var(--font-size-h3);
  }
  .subscribe-section {
    padding: 30px;
  }
  .captured-moments-section h2 {
    font-size: var(--font-size-subheading);
  }
}
@media (min-width: 1500px) {
  .captured-moments-section {
    padding: 60px 0;
  }
}
/* ========================================
   SINGLE COLLECTION PAGE STYLES
   ======================================== */
.single-collection-page .product-display-section {
  margin-top: 50px;
}
.single-collection-filter h2 {
  font-size: var(--font-size-h2);
  font-weight: 500;
  color: #000;
  margin-bottom: 10px;
}

/* Product Type Expandable Categories */

.product-type-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: none;
  border: none;
  padding: 8px 0;
  cursor: pointer;
  text-align: left;
  font-size: var(--font-size-small);
  font-weight: 700;
  color: #000;
  transition: color 0.3s ease;
}

.product-type-toggle:hover {
  color: var(--primary);
}

.product-type-toggle > span:first-child {
  flex: 0 0 auto;
}

.product-type-toggle .toggle-icon {
  font-size: 16px;
  font-weight: 400;
  color: #000;
  line-height: 1;
  flex: 0 0 auto;
  margin-left: 4px;
}

.product-type-subcategories {
  display: none;
  padding-left: 20px;
  margin-top: 8px;
  flex-direction: column;
  gap: 8px;
}

.product-type-subcategories.active {
  display: flex;
}

.product-type-subcategories .filter-checkbox {
  font-weight: 400;
  font-size: var(--font-size-small);
}
.remove-selected {
  cursor: pointer;
}
/* ========================================
   CAREER PAGE STYLES
   ======================================== */

/* Open Positions Section */
.open-positions-section {
  padding: 0px 0 60px 0;
  background-color: #fff;
}

.open-positions-section h2 {
  color: var(--primary);
  font-weight: 400;
  text-align: center;
  margin-bottom: 50px;
  text-transform: uppercase;
}

.open-positions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.open-position-card {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 30px 25px;
  text-align: center;
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.open-position-card > div {
  margin-top: auto;
}
.open-position-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}

.open-position-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #000;
  text-align: center;
}

.open-position-card p {
  font-size: 14px;
  color: #333;
  line-height: 1.6;
  margin: 0 0 12px 0;
  text-align: left;
}

.open-position-card p:last-child {
  margin-bottom: 0;
}

.open-position-card p strong {
  font-weight: 600;
  color: #000;
}

/* Responsive styles for Open Positions */
@media (max-width: 1024px) {
  .open-positions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}
@media (max-width: 768px) {
  .open-positions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
  .open-positions-section h2 {
    font-size: var(--font-size-h2);
  }
}
@media (max-width: 575px) {
  .open-positions-section {
    padding: 10px 0;
  }
  .open-positions-grid {
    grid-template-columns: 1fr;
  }
  .open-position-card h3 {
    font-size: var(--font-size-body);
  }
  .open-positions-section h2 {
    font-size: var(--font-size-subheading);
    margin-bottom: 0px;
  }
}
/* ========================================
   LEGAL CONTENT PAGE STYLES
   ======================================== */
.legal-content-section {
  padding: 60px 0;
}
.legal-content-section h1 {
  color: var(--primary);
  font-size: var(--font-size-main-heading);
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
}
.legal-content-section p {
  font-size: var(--font-size-description);
  font-weight: 300;
  line-height: 1.6;
  margin-bottom: 20px;
  text-align: justify;
}
.legal-content-section h2 {
  margin-bottom: 0;
  font-size: var(--font-size-medium-heading);
  text-align: left;
}
@media (max-width: 768px) {
  .legal-content-section h1 {
    font-size: var(--font-size-h2);
  }
  .legal-content-section h2 {
    font-size: var(--font-size-h3);
  }
}
@media (max-width: 575px) {
  .legal-content-section h1 {
    font-size: var(--font-size-subheading);
  }
  .legal-content-section h2 {
    font-size: var(--font-size-body);
  }
  .legal-content-section p {
    font-size: var(--font-size-small);
  }
}
/* ========================================
   END OF STYLESHEET
   ======================================== */

/* ========================================
   OFFICES SWIPER (CONTACT PAGE)
   ======================================== */

/* Desktop & Tablet: Maintain Grid Layout via Swiper Wrapper */
.offices-grid .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* Tablet Override */
@media (max-width: 991.98px) {
  .offices-grid .swiper-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile: Initialize Swiper Styles */
@media (max-width: 575.98px) {
  .offices-grid {
    padding-bottom: 40px; /* Space for pagination */
    overflow: hidden;
  }

  .offices-grid .swiper-wrapper {
    display: flex; /* Restore flex for swiper */
    grid-template-columns: none;
    gap: 0;
  }

  .offices-grid .swiper-slide {
    width: 280px; /* Fixed width or percentage for partial view */
    margin-right: 20px;
    height: auto; /* Equal height */
  }

  /* Pagination Styling */
  .offices-grid .swiper-pagination {
    bottom: 0px;
  }

  .offices-grid .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: #d6d6d6;
    opacity: 1;
  }

  .offices-grid .swiper-pagination-bullet-active {
    background: var(--primary, #94584b);
  }
}

/* PPAGINATION STYLES FOR COLLECTION PAGES */
/* Pagination number default */
/* Pagination numbers */
.collection-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-top: 40px;
}
.collection-pagination .page-number {
  padding: 12px 14px; /* spacing inside */
  background-color: #ffffff;
  border: 1px solid #e6e6e6;
  color: #333;
  border-radius: 10px; /* softer corners */
  font-size: 15px;
  line-height: 1;
  transition: all 0.25s ease;
}

/* Active page – theme color */
.collection-pagination .page-number.active {
  background-color: var(--primary); /* elegant rose theme */
  color: #ffffff;
  border-color: var(--primary);
}

/* Hover effect */
.collection-pagination .page-number:hover {
  background-color: #f3d7dc;
}

/* Prev / Next buttons */
.collection-pagination .page-nav {
  padding: 10px 14px;
  margin: 0 6px;
  background-color: #ffffff;
  color: #999;
  border-radius: 10px;
  font-size: 14px;
  border: 1px solid #e6e6e6;
}

/* Base pagination item */
#product-pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  margin: 0 4px;
  color: #333;
  border-radius: 10px;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.25s ease;
  list-style: none;
  margin-top: 30px;
}
#product-pagination .page-numbers a {
  border: 1px solid #e6e6e6;
}
/* Active page */
#product-pagination .page-numbers.current {
  background-color: var(--primary); /* theme rose */
  color: #ffffff;
  border-color: var(--primary);
}

/* Dots (...) */
#product-pagination .page-numbers.dots {
  border: none;
  background: transparent;
  color: #999;
  cursor: default;
}

/* Next button */
#product-pagination .page-numbers.next {
  padding: 6px 16px;
  color: #999;
}

/* Optional: Prev button if exists */
#product-pagination .page-numbers.prev {
  padding: 6px 16px;
  color: #999;
}
@media (max-width: 576px) {
  .collection-pagination .page-number {
    padding: 8px 10px;
    margin: 0 2px;
    font-size: 12px;
    border-radius: 8px;
  }
  .collection-pagination .page-nav {
    padding: 6px 10px;
    margin: 0 3px;
    font-size: 12px;
    border-radius: 8px;
  }

  #product-pagination .page-numbers {
    padding: 4px 10px;
    margin: 0 2px;
    font-size: 12px;
    border-radius: 8px;
    margin-top: 20px;
  }

  #product-pagination .page-numbers.next,
  #product-pagination .page-numbers.prev {
    padding: 4px 12px;
    font-size: 12px;
  }

  #product-pagination .page-numbers.dots {
    font-size: 12px;
  }
}

/* ========================================
   CSS MARQUEE OVERRIDES (No JS)
   ======================================== */

.client-logos-section {
  width: 100%;
  overflow: hidden;
  padding: 40px 0;
  margin: 40px auto;
}

.client-logos-swiper {
  position: relative;
  width: 100%;
  height: 100px;
  overflow: hidden;
  padding: 0 !important;
}

.client-logos-swiper .swiper-wrapper {
  display: flex !important;
  width: max-content;
  height: 100%;
  animation: marqueeScroll 30s linear infinite; /* Slowed down slightly for elegance */
  will-change: transform;
  /* Pause animation on hover if desired - commented out as requested "continuous loop" */
  /* &:hover { animation-play-state: paused; } */
}

/* Force Slide Styling */
.client-logos-swiper .swiper-slide {
  flex-shrink: 0;
  width: auto; /* Let width be determined by content or padding */
  min-width: 180px;
  max-width: 250px;
  height: 100%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 0 40px; /* Increased padding for better spacing */
}

.client-logos-swiper .swiper-slide .logo-container {
  width: 100%;
  display: flex;
  justify-content: center;
}

.client-logos-swiper .swiper-slide img {
  max-width: 120px;
  max-height: 60px;
  object-fit: contain;
  width: auto;
  user-select: none;
  pointer-events: none;
}

/* Keyframes: Move from 0 to -50% (assuming content is duplicated) */
@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .client-logos-swiper .swiper-slide {
    width: 140px;
    padding: 0 10px;
  }
  .client-logos-swiper .swiper-slide img {
    max-width: 100px;
  }
}
