/**************************************
                General
**************************************/
:root {
    --animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    --animation-duration: 1s;
    --gold: #C6AF89;
  }

*,
*::before,
*::after {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    text-decoration: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

html {
    font-size: 100%;
    box-sizing: inherit;
    scroll-behavior: smooth;
    height: -webkit-fill-available;
}
html.lenis, html.lenis body {
    height: auto;
  }
  
  .lenis.lenis-smooth {
    scroll-behavior: auto !important;
  }
  
  .lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
  }
  
  .lenis.lenis-stopped {
    overflow: hidden;
  }
  
  .lenis.lenis-smooth iframe {
    pointer-events: unset;
  }
html::-webkit-scrollbar {
    width: 6px;
    background-color: #ed8e0046;
}

html::-webkit-scrollbar-thumb {
    background-color: #D2B450;
    border-radius: 50rem;
}

a,
button {
    cursor: pointer;
    border: none;
    outline: none;
    user-select: none;
    background: none;
    box-shadow: none;
}

ol,
ul {
    padding: 0;
    margin: 0;
    list-style-type: none;
}

body {
    font-size: 18px;
    font-family: 'Aeonik TRIAL Regular';
    font-weight: normal;
    color: #000;
}

a,
a:hover,
a:focus {
    color: #D2B450;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'FilsonProRegular';
    font-weight: normal;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
}

p {
    margin-top: 0;
    margin-bottom: 1rem;
}

main {
    overflow: clip;
}

img {
    max-width: 100%;
    height: auto;
    transition: all .5s;
}

.w-100 {
    width: 100% !important;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

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

.container-fluid {
    padding: 0 70px;
}


/* Enable view transitions for navigation */
@media(prefers-reduced-motion: no-preference) {
    @view-transition {
        navigation: auto;
    }
}

/* Basic settings for all animations */
::view-transition-group(*) {
    animation-duration: 0.8s;
    animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
    animation-fill-mode: both;
}
/* ========================
    PARALLAX DEPTH TRANSITION
   ======================== */

::view-transition-old(root) {
    animation: parallaxDepthOut 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

::view-transition-new(root) {
    animation: parallaxDepthIn 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

@keyframes parallaxDepthOut {
    0% { 
        transform: perspective(1000px) translateZ(0px) rotateX(0deg);
        opacity: 1;
        filter: blur(0px) brightness(1);
    }
    50% {
        transform: perspective(1000px) translateZ(-300px) rotateX(-15deg);
        opacity: 0.6;
        filter: blur(5px) brightness(0.7);
    }
    100% { 
        transform: perspective(1000px) translateZ(-600px) rotateX(-30deg);
        opacity: 0;
        filter: blur(15px) brightness(0.3);
    }
}

@keyframes parallaxDepthIn {
    0% { 
        transform: perspective(1000px) translateZ(600px) rotateX(30deg);
        opacity: 0;
        filter: blur(15px) brightness(1.5);
    }
    50% {
        transform: perspective(1000px) translateZ(300px) rotateX(15deg);
        opacity: 0.6;
        filter: blur(5px) brightness(1.2);
    }
    100% { 
        transform: perspective(1000px) translateZ(0px) rotateX(0deg);
        opacity: 1;
        filter: blur(0px) brightness(1);
    }
}


/**************************************
         Animation
**************************************/
/* Keyframes */
@keyframes slideInUp {
    0% {
        opacity: 0;
        transform: translateY(25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes slideInDown {
    0% {
        opacity: 0;
        transform: translateY(-25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes slideInLeft {
    0% {
        opacity: 0;
        transform: translateX(25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes slideInRight {
    0% {
        opacity: 0;
        transform: translateX(-25%);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

@keyframes zoomIn {
    0% {
        opacity: 0;
        transform: scale(0.75);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes zoomReverseIn {
    0% {
        opacity: 0;
        transform: scale(1.25);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

@keyframes flipInY {
    0% {
        opacity: 0;
        transform: perspective(90vw) rotateY(67.50deg);
    }

    100% {
        opacity: 1;
        transform: none;
    }
}

/* Animations */
[data-animation] {
    opacity: 0;
    animation-timing-function: var(--animation-timing-function);
    animation-fill-mode: both;
    animation-duration: var(--animation-duration);
    will-change: transform, opacity;
}

/* Disable animation of the children */
.animations-disabled,
.animations-disabled [data-animation] {
    animation: none !important;
    opacity: 1 !important;
}

/* Slide Animations */
.slideInUp {
    animation-name: slideInUp;
}

.slideInDown {
    animation-name: slideInDown;
}

.slideInLeft {
    animation-name: slideInLeft;
}

.slideInRight {
    animation-name: slideInRight;
}

/* Fade Animations */
.fadeIn {
    animation-name: fadeIn;
}

/* Zoom Animations */
.zoomIn {
    animation-name: zoomIn;
}

.zoomReverseIn {
    animation-name: zoomReverseIn;
}

/* Flip Animations */
.flipInY {
    animation-name: flipInY;
}

.flipOutY {
    animation-name: flipInY;
    animation-direction: reverse;
}
.textarea{
    font-family: 'Helvetica';
}
/**************************************
                Helper Class
**************************************/

.sec-gap {
    padding: 80px 0;
}

.pb-80 {
    padding-bottom: 60px;
}

.mb-20 {
    margin-bottom: 20px;
}
.mb-50{
    margin-bottom: 50px;
}
p {
color: #282828;
font-size: 18px;
font-style: normal;
font-weight: normal;
line-height: 161.111%;
}
.section-title{
    color: #638D6B;
    font-family: 'ABC Diatype';
    font-size: 60px;
    font-style: normal;
    font-weight: normal;
    line-height: 103.333%;
    margin-bottom: 15px;
}
.sub-dec{
    color: #111;
    font-family: 'ABC Diatype';
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 113.333%;
    margin-bottom: 17px;
}
.divider{
    width: 121px;
    height: 9.943px;
    border-radius: 80px;
    border: 1px solid #ABB9AE;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(2px);
    margin-bottom: 15px;
    display: inline-block;
}
strong {
    font-weight: normal;
    font-family: 'Aeonik TRIAL Bold';
}
  
.small-line {
    width: 68px;
    height: 2px;
    background-color: rgb(237, 143, 0);
    display: inline-block;
    margin-left: 6px;
    margin-top: 20px;
    margin-bottom: 24px;
}

.primary-btn {
    color: #121212;
    text-align: center;
    font-family: 'Aeonik TRIAL Bold';
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 122.222%;
    padding: 13px 50px;
    border-radius: 50rem;
    border: 1px solid #C6AF89;
    border-radius: 60px;
    background: #C6AF89;
    transition: all 1s;
    display: inline-block;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

  
.primary-btn:before,
.primary-btn:after {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    scale: 1 0;
    left: 0;
    background: #638D6B;
    z-index: -1;
    transition: all .35s;
    transform-origin: bottom;
    top: 0;
}

.primary-btn:before {
    opacity: .5;
}

.primary-btn:after {
    transition-delay: .2s;
}

.primary-btn:hover:before,
.primary-btn:hover:after {
    scale: 1 1;
}

.primary-btn:hover {
    color: #ffffff;
}

.primary-btn:focus {
    color: currentColor;
}
.outline-btn{
    border: 2px solid #fff;
    background: transparent;
    color: #fff;
    &::after,
    &::before{
        background-color: #F7D86F;
    }

}
.container {
    max-width: 1400px;
}

.form-control {
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 19px;
    display: flex;
    align-items: center;
    text-transform: capitalize;
    color: #000000;
    padding: 12px 15px;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
    border: 1px solid #C1C1C1;
    width: 100%;
    border-radius: 4px;
    outline: none;
}

.form-control:focus {
    border-color: rgb(48, 111, 94);
}

form .btn-group {
    justify-content: center;
}

.form-group {
    margin-bottom: 10px;
}

input,
input:focus {
    outline: none;
    box-shadow: none !important;
}

.form-control::placeholder {
    color: rgba(46, 49, 58, 0.5);
}

.form-group {
    position: relative;
}

.italic {
    font-style: italic;
}


/*******************************
	Menu
*******************************/
header {
    position: fixed;
    width: 100%;
    top: 0;
    padding-top: 17px;
    padding-bottom: 55px;
    z-index: 999;
    .primary-btn{
        padding: 16px 27px;
    }
}
header.sticky {
    background: #096315;
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    animation: slideDown 0.45s ease-out;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.10);
    padding-block: 13px;
    /* .logo-wrap {
    width: 150px;
    height: 150px;
} */
/* .top-bar a{
  color: #000;
} */
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }

    to {
        transform: translateY(0);
    }
}
/* ══ TOP BAR ══ */
.top-bar {
    padding: 17px 0;
}
.top-bar a {
  color: #FFF;
    font-family: 'Aeonik TRIAL Bold';
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 23px;
  transition: color 0.2s;
      display: flex;
    gap: 8px;
}
.top-bar a:hover {
  color: var(--gold);
}
.top-bar .sep {
  color: #ddd;
  margin: 0 14px;
}
.top-bar i {
  margin-right: 5px;
  color: var(--gold);
}

/* ══ NAVBAR ══ */
.main-navbar {
    position: relative;
}
.navbar-inner {
    display: flex;
    align-items: center;
    border-radius: 200px;
    background: #FFF;
    padding: 9px 11px;
    gap: 75px;
}

/* Logo */
.logo-wrap {
  width: 202px;
  height: 200px;
  position: absolute;
  left: 0;
  transition: ease-in-out 0.4s;
}


/* ══════════════════════════════════════
       DESKTOP MENU  (jQuery adds classes)
    ══════════════════════════════════════ */
#desktopMenu {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  justify-content: end;
}
#desktopMenu > li {
  position: relative;
}

/* top-level link */
#desktopMenu > li > a {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 10px 15px;
    text-decoration: none;
    white-space: nowrap;
    position: relative;
    transition: color 0.2s;
    color: #191919;
    font-family: 'Aeonik TRIAL Regular';
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 32px;
}
#desktopMenu > li > a:hover,
#desktopMenu > li.current-menu-item a,
#desktopMenu > li.current-menu-parent a{
  color: #81A688;
}
#desktopMenu > li > a.current-menu-item::after {
  content: "";
position: absolute;
bottom: 8px;
left: 15px;
width: 20px;
height: 1px;
background: #81A688;
}
/* jQuery appends this arrow */
#desktopMenu > li > a .dyn-arrow {
  font-size: 10px;
    transition: transform 0.5s;
    display: inline-block;
    line-height: 1;
    width: 8px;
    height: 8px;
    border-top: 1px solid;
    border-left: 1px solid;
    transform: rotate(222deg);
    margin-left: 2px;

}
#desktopMenu > li:hover > a .dyn-arrow,
#desktopMenu > li.menu-open > a .dyn-arrow {
  transform: rotate(48deg);
  margin-bottom: -7px;
}

/* =====================================================
       DESKTOP DROPDOWN — Infinite depth
       jQuery adds .dd-sub on every nested ul.
       .dd-l1 = first level (drops down)
       .dd-sub = all deeper levels (flies right)
    ===================================================== */

/* L1 — drops DOWN from navbar */
#desktopMenu > li > ul.dd-l1 {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 215px;
  background: #fff;
  border-top: 3px solid var(--gold);
  border-radius: 0 0 6px 6px;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.14);
  padding: 6px 0;
  list-style: none;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: opacity 0.22s, transform 0.22s, visibility 0.22s;
  z-index: 1000;
}
#desktopMenu > li.menu-open > ul.dd-l1 {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* All deeper levels (.dd-sub) — expand inline on click */
#desktopMenu ul.dd-sub {
  position: relative;
  top: auto;
  left: auto;
  min-width: 100%;
  background: #f8f5ef;
  border-top: 1px solid rgba(198, 175, 137, 0.45);
  border-radius: 0;
  box-shadow: none;
  padding: 4px 0 0;
  list-style: none;
  margin: 4px 0 0;
  opacity: 1;
  visibility: visible;
  transform: none;
  transition: none;
  z-index: auto;
  display: none;
}
#desktopMenu li.dd-open > ul.dd-sub {
  display: block;
}

/* Every li inside any dropdown needs position:relative */
#desktopMenu ul.dd-l1 li,
#desktopMenu ul.dd-sub li {
  position: relative;
}

/* Links inside any dropdown level */
#desktopMenu ul.dd-l1 > li > a,
#desktopMenu ul.dd-sub > li > a {
  display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    color: #000;
    text-decoration: none;
    white-space: nowrap;
    border-left: 3px solid transparent;
    transition: background 0.15s, color 0.15s, padding-left 0.15s, border-color 0.15s;
}
#desktopMenu ul.dd-l1 > li > a:hover,
#desktopMenu ul.dd-sub > li > a:hover,
#desktopMenu > li.current-menu-parent ul li.current-menu-item a {
  background: #fdf6e8;
  color: #81A688;
  padding-left: 22px;
  border-left-color: #81A688;
}

/* Right-chevron arrow on links that have a sub */
#desktopMenu ul.dd-l1 > li > a .dyn-sarrow,
#desktopMenu ul.dd-sub > li > a .dyn-sarrow {
  font-size: 10px;
    flex-shrink: 0;
    transition: color 0.5s;
    width: 9px;
    height: 9px;
    border-top: 1px solid;
    border-left: 1px solid;
    transform: rotate(225deg);
    margin-left: 8px;
}
#desktopMenu ul.dd-l1 > li:hover > a .dyn-sarrow,
#desktopMenu ul.dd-sub > li:hover > a .dyn-sarrow,
#desktopMenu ul.dd-l1 > li.dd-open > a .dyn-sarrow,
#desktopMenu ul.dd-sub > li.dd-open > a .dyn-sarrow {
  color: #81A688;
  transform: rotate(315deg);
}

/* =====================================================
       MOBILE MENU CLONE — Infinite depth
       jQuery sets data-depth="N" on each <ul>
       Indentation auto-calculated from depth.
    ===================================================== */
#mobileMenuClone {
  list-style: none;
  margin: 0;
  padding: 0;
}
#mobileMenuClone ul {
  list-style: none;
  margin: 0;
  padding: 0;
  position: static !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
  box-shadow: none !important;
  border-top: none !important;
  border-radius: 0 !important;
  display: none;
}
#mobileMenuClone li {
  border-bottom: 1px solid #f0f0f0;
}

/* Base link style — all levels */
#mobileMenuClone li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-decoration: none;
  transition: color 0.2s, background 0.15s;
  white-space: normal;
  border-left: none !important;
  font-family: 'ABC Diatype';
}
#mobileMenuClone li a::after {
  display: none !important;
}
#mobileMenuClone li a:hover {
  color: #81A688 !important;
  background: #fdf6e8;
}
#mobileMenuClone li a.mob-open{
color: #81A688 !important;
}
/* Depth 0 — top level */
#mobileMenuClone > li > a {
  padding: 13px 20px;
  color: #000000;
  font-size: 14.5px;
  font-weight: 600;
  background: #fff;
}

/* Depth 1+ — indentation via data-depth on ul */
#mobileMenuClone ul[data-depth="1"] > li > a {
  padding: 11px 20px 11px 32px;
  font-size: 13.5px;
  font-weight: 500;
  color: #000000;
  background: #f7f7f7;
}
#mobileMenuClone ul[data-depth="2"] > li > a {
  padding: 10px 20px 10px 46px;
  font-size: 13px;
  color: #000000;
  background: #f0f0f0;
}
#mobileMenuClone ul[data-depth="3"] > li > a {
  padding: 9px 20px 9px 60px;
  font-size: 12.5px;
  color: #000000;
  background: #e9e9e9;
}
#mobileMenuClone ul[data-depth="4"] > li > a {
  padding: 9px 20px 9px 74px;
  font-size: 12px;
  color: #000000;
  background: #e2e2e2;
}
#mobileMenuClone ul[data-depth="5"] > li > a {
  padding: 9px 20px 9px 88px;
  font-size: 12px;
  color: #000000;
  background: #dadada;
}

/* Arrow */
#mobileMenuClone .mob-arr {
  font-size: 11px;
  color: #aaa;
  flex-shrink: 0;
  margin-left: 6px;
  transition: transform 0.25s, color 0.25s;
}
#mobileMenuClone a.mob-open .mob-arr {
  transform: rotate(180deg);
  color: #81A688;
}
#mobileMenuClone .dyn-arrow,
#mobileMenuClone .dyn-sarrow {
  display: none !important;
}

/* Custom Order */
.btn-order {
  background: var(--gold);
  color: #fff;
  border-radius: 6px;
  font-weight: 600;
  font-size: 13.5px;
  padding: 11px 22px;
  text-decoration: none;
  white-space: nowrap;
  margin-left: 14px;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.15s;
}
.btn-order:hover {
  background: var(--gold-d);
  color: #fff;
  transform: translateY(-1px);
}

/* Toggler */
.nav-toggler {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  display: none;
  margin-left: auto;
}
.nav-toggler span {
  display: block;
  width: 25px;
  height: 2px;
  background: #333;
  margin: 5px 0;
  border-radius: 2px;
  transition: 0.3s;
}

/* ══ SIDEBAR ══ */
.sidebar-btns {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 3px;
  .sidebar-btn:nth-child(2) {
    background: #F9F1E3;
    &:hover{
        background: #81A688;
    }
  }
}
.sidebar-btn {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    letter-spacing: 1.2px;
    padding: 16px 17px;
    text-decoration: none;
    transition: background 0.2s;
    border-radius: 6px;
    background: #D4BE9A;
    color: #000;
    font-family: 'Aeonik TRIAL Bold';
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 12px;
    margin-bottom: 10px;
}
.sidebar-btn:hover {
  background: #81A688;
  color: #fff;
}

.wa-btn {
  position: fixed;
  bottom: 40px;
  right: 14px;
  z-index: 999;
}
.wa-btn:hover {
  transform: scale(1.1);
}

/* ══ OFFCANVAS ══ */
.off-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  opacity: 0;
  transition: opacity 0.3s;
}
.off-overlay.show {
  opacity: 1;
}
.off-panel {
  position: fixed;
  top: 0;
  left: -310px;
  width: 300px;
  height: 100%;
  background: #fff;
  z-index: 2001;
  overflow-y: auto;
  transition: left 0.3s ease;
  display: flex;
  flex-direction: column;
}
.off-panel.open {
  left: 0;
}
.off-head {
  background: var(--gold);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
}
.off-head .off-logo {
  color: #000000;
    font-weight: 800;
    font-size: 26px;
    letter-spacing: 1px;
    font-family: 'Aeonik TRIAL Bold';
        font-size: 38px;
    font-weight: 800;
    color: #f4efe7;
    -webkit-text-stroke: 3px #6a4c2b;
    text-shadow: -2px 0 #d9c6a9, -4px 0 #cbb38f, -6px 0 #bda17a, -8px 0 #a98c66;
    letter-spacing: 8px;
}
.off-close {
  border: none;
  color: #fff;
  font-size: 32px;
  cursor: pointer;
  line-height: 1;
  width: 40px;
  height: 40px;
  background: #00000024;
  border-radius: 4px;
}
.off-body {
  padding: 0;
  flex: 1;
}
.off-footer {
  padding: 16px 20px;
  flex-shrink: 0;
  border-top: 1px solid #eee;
  text-align: center;
  .primary-btn{
    margin: 0 auto;
  }
}


/* ══════════════════════════════════════════════════
       MODERN POPUP SYSTEM
       Usage: <a data-popup="popup-id"> any trigger </a>
       Reusable — works for any number of popups
    ══════════════════════════════════════════════════ */

/* Overlay */
.ppu-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(10, 10, 20, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}
.ppu-overlay.ppu-active {
  opacity: 1;
  visibility: visible;
}

/* Modal box */
.ppu-modal {
  position: fixed;
  inset: 0;
  z-index: 9001;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  pointer-events: none;
}
.ppu-box {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.22), 0 0 0 1px rgba(0, 0, 0, 0.06);
  width: 100%;
  max-width: 520px;
  pointer-events: all;
  transform: translateY(28px) scale(0.96);
  opacity: 0;
  transition: transform 0.38s cubic-bezier(0.22, 0.68, 0, 1.2),
    opacity 0.32s ease;
  overflow: hidden;
  position: relative;
}
.ppu-overlay.ppu-active ~ .ppu-modal .ppu-box,
.ppu-box.ppu-show {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Gold accent top bar */
.ppu-accent {
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-d) 100%);
}

/* Header */
.ppu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px 0;
}
.ppu-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-d) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #fff;
  box-shadow: 0 6px 16px rgba(201, 168, 76, 0.4);
  flex-shrink: 0;
}
.ppu-title-wrap {
  margin-left: 14px;
  flex: 1;
}
.ppu-title {
  font-size: 18px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0;
  line-height: 1.2;
}
.ppu-subtitle {
  font-size: 13px;
  color: #888;
  margin: 3px 0 0;
}
.ppu-close-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f4f4f6;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #555;
  transition: background 0.2s, color 0.2s, transform 0.2s;
  flex-shrink: 0;
}
.ppu-close-btn:hover {
  background: #ffe8b0;
  color: var(--gold-d);
  transform: rotate(90deg);
}

/* Divider */
.ppu-divider {
  height: 1px;
  background: #f0f0f0;
  margin: 18px 28px 0;
}

/* Body */
.ppu-body {
  padding: 22px 28px 28px;
}

/* Form rows */
.ppu-row {
  margin-bottom: 16px;
}
.ppu-row:last-child {
  margin-bottom: 0;
}
.ppu-row.ppu-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.ppu-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  margin-bottom: 6px;
}
.ppu-input,
.ppu-select,
.ppu-textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #e8e8ec;
  border-radius: 9px;
  font-size: 14px;
  font-family: "Inter", sans-serif;
  color: #333;
  background: #fafafa;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
}
.ppu-input:focus,
.ppu-select:focus,
.ppu-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
  background: #fff;
}
.ppu-textarea {
  resize: vertical;
  min-height: 90px;
}
.ppu-select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 38px;
  cursor: pointer;
}

/* File upload area */
.ppu-file-area {
  border: 2px dashed #e0e0e8;
  border-radius: 10px;
  padding: 22px;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  background: #fafafa;
}
.ppu-file-area:hover {
  border-color: var(--gold);
  background: #fffdf4;
}
.ppu-file-area i {
  font-size: 28px;
  color: var(--gold);
  display: block;
  margin-bottom: 8px;
}
.ppu-file-area p {
  margin: 0;
  font-size: 13px;
  color: #777;
}
.ppu-file-area p strong {
  color: #333;
}
.ppu-file-area input[type="file"] {
  display: none;
}

/* Brochure preview cards */
.ppu-brochure-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.ppu-brochure-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 10px;
  border: 1.5px solid #efefef;
  background: #fafafa;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  cursor: pointer;
  text-decoration: none;
}
.ppu-brochure-card:hover {
  border-color: var(--gold);
  background: #fffdf4;
  transform: translateX(3px);
}
.ppu-brochure-icon {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: linear-gradient(135deg, #fff3dc 0%, #fde9a0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--gold);
  flex-shrink: 0;
}
.ppu-brochure-info {
  flex: 1;
}
.ppu-brochure-info strong {
  display: block;
  font-size: 14px;
  color: #222;
  font-weight: 600;
}
.ppu-brochure-info span {
  font-size: 12px;
  color: #999;
}
.ppu-brochure-dl {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--gold);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  transition: background 0.2s, transform 0.15s;
}
.ppu-brochure-card:hover .ppu-brochure-dl {
  background: var(--gold-d);
  transform: translateY(-1px);
}

/* Submit button */
.ppu-submit {
  width: 100%;
  padding: 13px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-d) 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  letter-spacing: 0.3px;
  box-shadow: 0 6px 20px rgba(201, 168, 76, 0.35);
  transition: transform 0.2s, box-shadow 0.2s, filter 0.2s;
  position: relative;
  overflow: hidden;
}
.ppu-submit::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0);
  transition: background 0.2s;
}
.ppu-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(201, 168, 76, 0.45);
  filter: brightness(1.05);
}
.ppu-submit:active {
  transform: translateY(0);
}

/* Note text */
.ppu-note {
  font-size: 12px;
  color: #aaa;
  text-align: center;
  margin-top: 12px;
}
.ppu-note i {
  color: var(--gold);
  margin-right: 4px;
}

/* ══ RESPONSIVE ══ */
@media (max-width: 991px) {
  #desktopMenu,
  .btn-order {
    display: none !important;
  }
  .nav-toggler {
    display: block;
  }
  .sidebar-btn {
    padding: 12px 10px;
    font-size: 14px;
}
}
.flex-box {
    display: flex;
    align-items: center;
    gap: 28px;
}
.search-btn {
    width: 30px;
    height: 30px;
    &:hover{
        img{
            transform: scale(1.1);
        }
    }
}
.search-container {
            position: relative;
            z-index: 1000;
        }

        .search-btn.active {
            background: linear-gradient(45deg, #e74c3c, #c0392b);
            transform: rotate(180deg);
        }

        .search-box {
            position: absolute;
            top: 50%;
            right: 0;
            transform: translateY(-50%) scaleX(0);
            transform-origin: right center;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border: 2px solid #C6AF89;
            border-radius: 0;
            width: 400px;
            opacity: 0;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
            z-index: 999;
            display: flex;
            align-items: center;
        }

        .search-box.active {
            transform: translateY(35%) scaleX(1);
            opacity: 1;
        }

        .search-input {
            width: 100%;
            border: none;
            outline: none;
            padding: 18px 48px 18px 16px;
            font-size: 1rem;
            background: transparent;
            color: #191919;
            border-radius: 25px;
        }

        .search-input::placeholder {
            color: #7f8c8d;
        }

        .search-close-btn {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            background: none;
            border: none;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.3s ease;
           	background: #81A688;
        }

        .search-close-btn:hover {
            background: #42694a;
            transform: translateY(-50%) scale(1.1);
        }

        .search-close-btn svg {
            width: 16px;
            height: 16px;
            fill: #FFF;
        }


/************************************* Home Page **************************************/
.hero-banner{
    position: relative;
    .slide-item{
        position: relative;
        &::after{
            content: "";
            position: absolute;
            inset: 0;
/*             background: linear-gradient(115deg, rgba(0, 0, 0, 0.37) 14.96%, rgba(1, 4, 0, 0.46) 85.04%); */
        }
        &::before{
            clip-path: polygon( 0% 20.175%,47.616% 0%,96.964% 51.262%,100% 100%,0% 100%,0% 20.175% );
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 1054px;
            height: 456px;
        }
        .container{
            position: absolute;
            left: 0;
            right: 0;
            bottom: 66px;
            z-index: 1;
        }
        h1{
                color: #FFF;
            font-family: 'ABC Diatype';
            font-size: 85px;
            font-style: normal;
            font-weight: 700;
            line-height: 108%;
        }
        p{
            color: #FFF;
            font-family: 'Aeonik TRIAL Regular';
            font-size: 30px;
            font-style: normal;
            font-weight: 500;
            line-height: 150%;
            span{
                color: #CDB391;
            }
        }
        .banner-bg{
          width: 100%;
          height: 100%;
          object-fit: cover;
        }
    }
    .slick-active{
        .welcome-badge{
            animation: slideInDown .6s ease-in-out both 0.2s;
        }
        h1{
            animation: slideInRight .7s ease-in-out both 0.4s;
        }
        p{
            animation: slideInLeft .8s ease-in-out both 0.6s;
        }
    }
    .slick-dots {
    bottom: 26px;
    left: 9%;
}
.slick-dots li{
    position: relative;
    display: inline-block;
    margin: 0 5px;
    padding: 0;
    cursor: pointer;
    background: #ffffff85;
    width: 9.371px;
    height: 9.371px;
    border-radius: 50%;
    &.slick-active{
        background: #ffffff;
    }
}
}
.welcome-badge {
    border-radius: 80px;
    border: 1px solid #897355;
    background: rgba(255, 255, 255, 0.10);
    backdrop-filter: blur(2px);
    color: #CDB391;
    font-family: 'Aeonik TRIAL Bold';
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 21px;
    text-transform: uppercase;
    padding: 9px 24px;
    display: inline-block;
    margin-bottom: 11px;
}
.slick-dotted.slick-slider {
    margin-bottom: 0px;
}
/***** About *********/
.about{
    padding-top: 120px;
    padding-bottom: 70px;
    position: relative;
    z-index: 1;
}
.exp {
    margin-top: 60px;
    margin-bottom: 50px;
    display: flex;
    align-items: end;
    text-align: left;
    justify-content: end;
    position: relative;
    &::after{
        content: '';
        position: absolute;
        width: 188.09px;
        height: 1px;
        background-color: #000;
        rotate: 314deg;
        right: -181px;
        bottom: 22px;
    }
    &:hover{
        img{
            transform: rotateY(360deg);
        }
    }
}
.about-img2:hover{
  transform: scale(1.06);
}
.number{
    color: #81A688;
    font-family: 'ABC Diatype';
    font-size: 60px;
    font-style: normal;
    font-weight: 700;
    line-height: 115%;
}
.card-title{
    color: #000;
    font-family: 'ABC Diatype';
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%;
}

.about-img-box {
    position: relative;
    margin-bottom: 23px;
    overflow: hidden;
    &:hover{
        img{
            transform: scale(1.1) rotate(3deg);
        }
    }
    img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    &::after{
        content: '';
        position: absolute;
        width: 168px;
        height: 176px;
        background: rgba(18, 60, 24, 0.70);
        top: -39px;
        right: -39px;
    }
}
.counter{
    margin-top: 70px;
    .row .col-lg-3:last-child{
        .counter-box{
            &::after{
                display: none;
            }
        }
    }
}
.counter-box {
    padding: 0 14%;
    position: relative;
    &::after{
        content: '';
        position: absolute;
        width: 106.636px;
        height: 1px;
        background: #81A688;
        transform: rotate(311deg);
        bottom: 46px;
        right: -60px;
    }
    p{

        font-family: 'Aeonik TRIAL Regular';
        line-height: 100% ;
        font-weight: normal;
    }
}
.about-vector{
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}
/* =============== Why Choose Us =============== */
.why-choose-us{
    background: #FFFBF5;
    padding-top: 50px;
    padding-bottom: 100px;
    position: relative;
    z-index: 1;
    padding-left: 13%;
    .col-lg-5 {
    padding-right: 9%;
}
}
.why-choose-box{
    background: #F9F1E3;
    padding: 25px;
    padding-bottom: 50px;
    height: 413px;
    display: flex;
    flex-direction: column;
    justify-content: end;
    align-items: start;
    overflow: hidden;
    transition: all .5s;
    img{
        margin-bottom: 15px;
    }
    p{
      max-height: 0;
      opacity: 0;
      transition: all .5s;
    }
    &:hover{
      background: #E3D2B7;
      p{
        max-height: 150px;
        opacity: 1;
      }
    }
}
.title{
    color: #000;
    font-family: 'ABC Diatype';
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 116.667%;
    margin-bottom: 15px;
}
.bg-gold{
    background: #E3D2B7;
}
.why-choose-vector{
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
}

.featured-products {
  padding: 80px 0;
  text-align: center;
}
.product-tabs {
  margin-bottom: 40px;
}

.tab-btn {
     padding: 17px 26px;
    background: #fff;
    margin: 0 5px;
    cursor: pointer;
    transition: 0.3s;
    border-radius: 7px;
    border: 1px solid #A7A7A7;
    color: #000;
    font-family: 'Aeonik TRIAL Bold';
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 21px;
    transition: all .5s;
    &:hover{
        background: #c89c6d63;
        color: #000;
    }
}

.tab-btn.active {
  background: #c89c6d;
  color: #fff;
  border-color: #c89c6d;
}

.product-slider .product-item {
  padding: 5px;
}

.card {
    border-radius: 0;
    transition: 0.3s;
    background: linear-gradient(0deg, #DFDFDF 0%, #FAFAFA 100%);
    height: 420.172px;
    transition: all .5s;
    &:hover{
      transform: translateY(-4px);
      .product-img{
        img{
          transform: scale(1.1);
        }
      }
    }
}

.product-img {
    height: 244.559px;
    background: linear-gradient(0deg, #DFDFDF 0%, #FAFAFA 100%);
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.product-info {
    height: 175px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 13px;
    .card-title{
        margin-bottom: 15px;
    }
}

.slick-arrow{
    width: 42.905px;
    height: 42.905px;
    background: #9E9E9E;
    transition: all .5s;
    border-radius: 50%;
    color: #FFFFFF;
    z-index: 1;
    &:hover,&:focus{
        background: #81A688;
        color: #000;
    }
}
.slick-prev:before ,.slick-next:before{
   content: '';
    width: 10px;
    height: 10px;
    border-top: 1px solid;
    border-left: 1px solid;
    display: inline-block;
    transform: rotate(135deg);
    margin-right: 5px;
    opacity: 1;
    color: inherit;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}
.slick-arrow.slick-prev::before {
    transform: rotate(316deg);
    margin-left: 8px;
}
/* Industries Served */
.industries-served {
      position: relative;
      padding: 80px 0;
      background-image: url(../img/industry-bg.webp);
      background-repeat: no-repeat;
      background-size: cover;
      overflow: hidden;
      .section-title,.sub-dec{
        color: #FFF;
      }
      .slick-arrow{
        width: 42.905px;
        height: 42.905px;
        background: #ffffff;
        transition: all .5s;
        border-radius: 50%;
        color: #323232;
        z-index: 1;
        &:hover,&:focus{
            background: #81A688;
            color: #323232;
        }
      }
    }
.mb-40{
  margin-bottom: 40px;
}
    .industries-served-card {
      padding: 15px 17px;
      padding-bottom: 24px;
      transition: all .5s;
      border: 1px solid rgba(255, 255, 255, 0.20);
    }
    .industries-served-card:hover {
      background: rgba(255, 255, 255, 0.10);
      .industries-served-card-icon-badge{
        background: #81A688;
        img{
          transform: rotateY(180deg);
        }
      }
    }

    .industries-served-card-img-wrap {
          width: 100%;
          position: relative;
          overflow: hidden;
          height: 297px;
    }

    .industries-served-card-img-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.45s ease;
    }
    .industries-served-card:hover .industries-served-card-img-wrap img { transform: scale(1.06); }
    .industries-served-card-img-wrap::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, transparent 40%, rgba(15,35,15,0.55) 100%);
    }

    .industries-served-card-icon-wrap {
      position: relative;
      width: 122px;
      margin-top: -46px;
      z-index: 3;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-shrink: 0;
      margin-inline: auto;
    }

    .industries-served-card-icon-arc {
          position: absolute;
        top: -10px;
        left: 50%;
        transform: translateX(-50%);
        width: 132px;
        height: 68px;
        border: 2px solid rgba(205, 175, 130, 0.75);
        border-bottom: none;
        border-radius: 88px 88px 0 0;
        pointer-events: none;
        z-index: 4;
        transition: all .5s;
    }

    .industries-served-card-icon-badge {
      width: 112px;
      height: 112px;
      border-radius: 50%;
      background: #C6AF89;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      z-index: 2;
    }
   

    .industries-served-card-label {
      margin-top: 16px;
      padding: 0 12px;
      letter-spacing: 0.3px;
      text-transform: uppercase;
      color: #FFF;
      text-align: center;
      font-family: 'Aeonik TRIAL Bold';
      font-size: 24px;
      font-style: normal;
      font-weight: 700;
      line-height: 30px;
    }
    /* Our Partners */
.our-partners-card{
      position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 24px;
    min-height: 130px;
    border-right: 1px solid #d4d4d4;
    border-bottom: 1px solid #d4d4d4;
    img{
      max-width: 100%;
      max-height: 70px;
      width: auto;
      height: auto;
      object-fit: contain;
      filter: grayscale(100%) opacity(0.6);
    }
    &:hover{
      img{
        filter: grayscale(0%) opacity(1);
        scale: 1.2;
      }
    }
}
img{
  transition: all .5s;
}
.our-partners .row .col:nth-child(6n) .our-partners-card{
    border-right: none;
}
.our-partners .row .col:nth-child(n+13) .our-partners-card{
   border-bottom: none;
}
.cta{
  background-image: url(../img/cta-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
  overflow: hidden;
  .section-title{
    color: #FFF;
    margin-bottom: 30px;
  }
}
.gallery-slider-item{
  position: relative;
  height: 625px;
  overflow: hidden;
  margin: 0 8px;
  img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
  }
  &:hover {
    img{
      transform: scale(1.06);
    }
    a{
      opacity: 1;
      scale: 1;
    }
  }
  a{
    position: absolute;
    inset: 7px;
    background: rgba(0, 0, 0, 0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    scale: .7;
    img{
      width: auto;
      height: auto;
      object-fit: contain;
    }
  }
}
/* FAQ */
.faq{
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-top: 30px;
}
.faq-vector{
  position: absolute;
  left: 0;
  bottom: -44%;
  z-index: -1;
}

    .faq-section-accordion {
      width: 100%;
    }

    .faq-section-item {
      border-bottom: 1px solid #d8d8d4;
    }
    .faq-section-item:first-child {
      border-top: 0;
    }

    .faq-section-question {
      width: 100%;
      background: none;
      border: none;
      outline: none;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 20px 4px;
      cursor: pointer;
      text-align: left;
      gap: 16px;
    }

    .faq-section-question-text {
      transition: color 0.25s;
      color: #000;
      font-family: 'ABC Diatype';
      font-size: 22px;
      font-style: normal;
      font-weight: 700;
      line-height: 29px;
    }

    .faq-section-item-active .faq-section-question-text {
      color: #000000;
    }

    .faq-section-icon {
      flex-shrink: 0;
      width: 22px;
      height: 22px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #555;
      transition: transform 0.35s ease, color 0.25s;
    }

    .faq-section-icon svg {
      width: 14px;
      height: 14px;
      stroke: currentColor;
      fill: none;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .faq-section-item-active .faq-section-icon {
      transform: rotate(90deg);
      color: #000000;
    }

    .faq-section-answer {
      display: none;
      overflow: hidden;
    }

    .faq-section-answer-inner {
          padding: 0 4px 20px;
    color: #373737;
    font-family: 'Aeonik TRIAL Regular';
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    }
    /*********** Footer **************/
    .site-footer {
      background: #E9D8BC;
      padding: 70px 0 0;
      p,a{
        transition: all .5s;
    color: #000;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 36px;
      }
      a{
        &:hover{
          color: #738B77;
        }
      }
    }

    /* ── Logo area ── */
    .site-footer-logo-wrap {
      display: flex;
      align-items: center;
      justify-content: center;
      padding-right: 20px;
    }

    .site-footer-logo {
      width: 130px;
      height: 130px;
    }

    /* ── Column headings ── */
    .site-footer-heading {
          margin-bottom: 18px;
          color: #000;
          font-family: 'ABC Diatype';
          font-size: 20px;
          font-style: normal;
          font-weight: 700;
          line-height: 29px;
          &::after{
            content: '';
            width: 22px;
            height: 2px;
            background: #738B77;
            display: block;
          }
    }


    .site-footer-links a {
      transition: color 0.2s;
    color: #000;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    line-height: 36px;
    }

    .site-footer-links a:hover {
      color: #738B77;
    }


    .site-footer-contact-block {
      margin-bottom: 20px;
      p{
        margin: 0;
        a{
          color: #000;
        }
      }
      .site-footer-contact-label{
        font-family: 'Aeonik TRIAL Bold';
      }
    }

    /* ── Social icons ── */
    .site-footer-social {
      display: flex;
      gap: 12px;
      margin-top: 4px;
    }

    .site-footer-social-link {
      width: 46px;
      height: 46px;
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      text-decoration: none;
      transition: all .5s;
    }

    .site-footer-social-link:hover {
      background: #81A688;
      transform: translateY(-2px);
      color: #fff;
      img{
        filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(351deg) brightness(106%) contrast(101%);
      }
    }


    /* ── Bottom bar ── */
    .copyright {
      border-top: 1px solid rgba(0,0,0,0.1);
      margin-top: 36px;
      padding: 16px 0;
      display: flex;
      justify-content: space-between;
      p{
      color: #000000;
      margin-bottom: 4px;
      }
      a{
        color: #b5893a;
      text-decoration: none;
      font-weight: 500;
      text-decoration: underline;
      }
    }
/* Inner Page */
.inner-banner.hero-banner {
    & .slide-item {
        &::before {
            width: 856px;
            height: 232px;
        }
    }
}
.valuable-partner{
  .our-partners-card {
        height: 170px;
    img {
        max-width: 100%;
        max-height: 100%;
        width: auto;
        height: auto;
        object-fit: contain;
        filter: unset;
    }
}
.row .col:nth-child(n+7) .our-partners-card {
    border-bottom: 1px solid #d4d4d4;;
}
.row .col:nth-child(n+13) .our-partners-card {
    border-bottom: 0;
}
}

/* About */
.about-about{
  background: #F8F8F8;
}
.mission-vission{
  position: relative;
  .row:not(:last-child) {
    margin-bottom: 150px;
  }
  .img-box {
    position: relative;
    &::before{
            content: '';
            position: absolute;
            width: 352.506px;
            height: 203.537px;
            background: #C6AF89;
            bottom: -30px;
            left: 20px;
            z-index: -1;
    }
    img{
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    &.right-img{
      &::before{
       right: 20px;
      left: auto;
      }
    }
}
}
.line-design{
    width: 47%;
    margin-left: auto;
    text-align: right;
    margin-top: 60px;
    &.left{
        text-align: left;
        margin-left: 0;
    }
}

.line{
    display:inline-block;
    height:4px;
    background:#b89b6b;
}

.line.long{
    width:100%;
    margin-bottom:0px;
}

.line.short{
    width:200px;
}
.core-values {
    background: #FFFBF5;
    position: relative;
    z-index: 1;
    padding-top: 78px;
    padding-bottom: 140px;
    .core-value-vector{
      position: absolute;
      bottom: 0;
      left: 0;
      z-index: -1;
    }
    .core-value-vector2{
      position: absolute;
      bottom: 0;
      right: 0;
      z-index: -1;
    }
}
.core-values-card{
  background: #FFF;
  box-shadow: 0 5px 14px 0 rgba(0, 0, 0, 0.15);
  padding: 36px 28px;
  text-align: center;
  height: 273.797px;
  transition: all .5s;
  &:hover{
    transform: translateY(-4px);
    .core-values-icon{
        img{
            transform: rotateY(360deg);
        }
    }
  }
}
.core-values-icon{
  margin-bottom: 25px;
}
.core-values-content{
  h4{
    color: #000;
    text-align: center;
    font-family: 'Aeonik TRIAL Bold';
    font-size: 21px;
    font-style: normal;
    font-weight: normal;
    line-height: 119.048%;
  }
}
.founder-box {
    background: #C6AF89;
    box-shadow: -50px 0px 0 0 #C6AF89, 40px 0px 0 0 #C6AF89;
    padding: 50px 0;
    .col-lg-4{
      text-align: center;
      h4{
        color: #FFF;
    font-family: 'ABC Diatype';
    font-size: 30px;
    font-style: normal;
    font-weight: 700;
    line-height: 25px;
    margin-bottom: 20px;
    margin-top: 15px;
      }
      p{
        color: #fff;
      }
    }
    .section-title,p{
      color: #fff;
    }
    h5,h6{
      color: #FFF;
      font-family: 'ABC Diatype';
      font-size: 20px;
      font-style: normal;
      font-weight: 700;
      line-height: 125%;
      margin-bottom: 19px;
    }
}
.timeline-box {
    border: 3px solid #C6AF89;
    background: #FAF5EC;
     flex: 0 0 100%;
     transition: ease-in-out .5s;
    .img-box {
    height: 100%;
    img{
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
}
&:hover{
    box-shadow: 0 5px 14px 0 rgba(0, 0, 0, 0.15);
}
}
.timeline-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 50px;
    h3{
      color: #000;
    font-family: 'ABC Diatype';
    font-size: 54px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    margin-bottom: 25px;
    }
    .card-title {
    color: #282828;
    font-family: 'Aeonik TRIAL Regular';
    font-style: normal;
    font-weight: normal;
    line-height: 141.667%;
}
}
 /* ---------- timeline markers (interactive bar) ---------- */
        .timeline-bar {
            position: relative;
            margin: 3rem 0 2rem 0;
            padding: 6px 0;
        }

        .timeline-line {
            position: absolute;
            top: 15px;
            left: 0;
            width: 100%;
            height: 4px;
            background: #D9D9D9;
            border-radius: 10px;
            box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
        }

        .markers-row {
            display: flex;
            justify-content: center;
            position: relative;
            z-index: 5;
            gap: 18px;
        }

        .marker {
            display: flex;
            flex-direction: column;
            align-items: center;
            cursor: pointer;
            transition: all 0.2s;
            padding: 0 2px;
            &:hover{
                .dot-indicator{
                    transform: scale(1.1);
                }
            }
        }

        .marker .dot-indicator {
            width: 18px;
            height: 18px;
            background: #C6AF89;
            box-shadow: 0 0 0 3px rgb(198 175 137 / 20%);
            border-radius: 50%;
            transition: 0.2s;
            margin-bottom: 3px;
        }

        .marker.active .dot-indicator {
            border-color: #ffdada;
        }

        .marker .year-label {
            font-weight: 600;
            font-size: 1rem;
            color: #868686;
            padding: 4px 8px;
            border-radius: 40px;
            backdrop-filter: blur(2px);
            transition: 0.2s;
        }

        .marker.active .year-label {
            color: rgb(0, 0, 0);
        }
        .slider-wrapper {
            width: 100%;
            overflow: hidden;
            cursor: grab;
            transition: all 0.2s;
        }

        .slider {
            display: flex;
            flex-wrap: nowrap;
            width: 100%;
            will-change: transform;
        }
        .company-timeline {
    margin-bottom: 90px;
}

.global-presence{
  background: #C6AF89;
  .section-title{
    color: #fff;
  }
  .container{
    position: relative;
  }
  .country-box{
    position: absolute;
    border: 1px solid #E0E0E0;
    background: rgba(255, 255, 255, 0.10);
    padding: 15px;
    width: 238px;
    right: 0;
    bottom: 50px;
  }
}
.country-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    transition: all .5s;
    &:hover{
        transform: translateX(10px);
    }
    img{
      width: 43px;
      height: 43px;
      border-radius: 50%;
      img{
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
    }
    p{
      margin: 0;
      color: #fff;
    }
}
.award-item {
    border: 1px solid #000;
    background: lightgray 0px -1.9px / 100% 101.262% no-repeat;
    box-shadow: 0 14px 24px 0 rgba(0, 0, 0, 0.15);
    transition: all .5s;
    &:hover{
        transform: scale(1.1);
    }
    img{
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
}
.contact-map{
  iframe{
    width: 100%;
    height: 750px;
    border: 0;
    display: block;
  }
}
.service-banner.hero-banner {
    & .slide-item {
        h1 {
            width: 48%;
        }
        &::before {
            clip-path: polygon(0% 21.057%, 47.616% 0%, 96.964% 29.86%, 100% 100%, 0% 100%, 0% 21.057%);
            width: 1000.071px;
            height: 350.51px;
        }
    }
}
.video-play-button {
  position: absolute;
    z-index: 10;
    box-sizing: content-box;
    display: block;
    width: 32px;
    height: 44px;
    border-radius: 50%;
    padding: 18px 20px 18px 28px;
}

.video-play-button:before {
  content: "";
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 55px;
  height: 55px;
  background: #C6AF89;
  border-radius: 50%;
  animation: pulse-border 1100ms ease-out infinite;
}

.video-play-button:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 60px;
  height: 60px;
  background: #C6AF89;
  border-radius: 50%;
  transition: all 200ms;
}

.video-play-button span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  border-left: 19px solid #fff;
	border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  top: 10px;
  left: 5px;
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}
.service-details{
  position: relative;
  z-index: 1;
  .service-details-content-wrap{
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    padding: 50px;
    padding-left: 0;
  }
  .service-details-image-wrap{
    height: 100%;
    overflow: hidden;
        display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    &:after{
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
/*         background: rgba(0, 0, 0, 0.5); */
    }
    &:hover{
        img{
            transform: scale(1.1) rotate(3deg);
        }
    }
    img{
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
  }
}
.svector{
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
}
.service-details-2{
  background: #F3F5F5;
  .service-details-content-wrap{
    padding: 50px;
    padding-left: 50px;
    padding-right: 28%;
  }
}
.service-content-areas {
    background: #FFFBF5;
    padding-top: 120px;
    padding-bottom: 100px;
    .section-title{
      margin-bottom: 30px;
    }
    ul{
      li{
        position: relative;
        padding-left: 22px;
        margin-bottom: 18px;
        
        &::before{
          content: '';
          position: absolute;
          left: 0;
          top: 6px;
          width: 11.771px;
          height: 11.771px;
          border-radius: 11.771px;
          background: #B38F53;
          box-shadow: 0 0 0 2.5px #c6af8970;
        }
      }
    }
}
.quality-policies{
  background: #fff;
}
.warranty-box{
  border: 1px solid #C6AF89;
background: #FFFBF5;
padding: 40px 20px;
ul{
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 20px;
  li{
    padding: 0;
    &::before{
      display: none;
    }
  }
}
.title{
  position: relative;
  .line{
    content: '';
    width: 109.872px;
    height: 1px;
    background: #C6AF89;
  }
}
}
.warrnaty-img{
    display: grid;
  gap: 16px;
  grid-template-columns: 1.8fr 1fr;
}
.enquiry-page{
  position: relative;
  z-index: 1;
  .enquiry-vector{
    width: 100%;
    position: absolute;
    bottom: 0;
    z-index: -1;
  }
   .page-wrapper {
      width: 100%;
    }

    /* TABS */
    .tab-nav {
      display: flex;
      gap: 0;
      margin-bottom: 0;
      justify-content: center;
    }

    .tab-btn {
      padding: 10px 28px;
        cursor: pointer;
        text-transform: uppercase;
        transition: background 0.2s, color 0.2s;
        border-radius: 7px 7px 0 0;
        border: 1px solid #A7A7A7;
        background: #F0E5D3;
        border-bottom: 0;
        width: 318px;
        height: 73px;
    }

    .tab-btn.active {
      background: #C6AF89;
      color: #fff;
    }

    .tab-btn:hover:not(.active) {
      background: #bfb49f;
    }

    /* FORM CARD */
    .form-card {
        padding: 40px;
        border: 1px solid #C6AF89;
        background: #FFFBF5;
    }

    .form-title {
      text-align: center;
        margin-bottom: 60px;
        color: #81A688;
        font-family: 'Aeonik TRIAL Bold';
        font-size: 49px;
        font-style: normal;
        font-weight: 700;
        line-height: 28px;
        text-decoration-line: underline;
        text-decoration-style: solid;
        text-decoration-skip-ink: auto;
        text-decoration-thickness: auto;
        text-underline-offset: auto;
        text-underline-position: from-font;
        text-transform: uppercase;
    }

    .form-subtitle {
        margin-bottom: 24px;
        text-decoration: underline;
        color: #262626;
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 30px;
        text-decoration-line: underline;
        text-decoration-style: solid;
        text-decoration-skip-ink: auto;
        text-decoration-thickness: auto;
        text-underline-offset: auto;
        text-underline-position: from-font;
    }

    .tab-panel { display: none; }
    .tab-panel.active { display: block; }

    .form-group {
      margin-bottom: 22px;
    }

    .form-row {
      display: flex;
      gap: 14px;
      margin-bottom: 14px;
    }

    .form-row .form-group {
      flex: 1;
      margin-bottom: 0;
    }

    label {
              display: block;
        margin-bottom: 8px;
        color: #000;
        font-size: 16px;
        font-style: normal;
        font-weight: 400;
        line-height: 13px;
        text-transform: uppercase;
    }

    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea {
      width: 100%;
        padding: 20px 12px;
        font-size: 16px;
        color: #333;
        outline: none;
        transition: border-color 0.2s, box-shadow 0.2s;
        border-radius: 6px;
        border: 1px solid #C6AF89;
        background: #FFF;
        font-family: 'Aeonik TRIAL Regular';
    }

    input::placeholder, textarea::placeholder {
      color: #8C8C8C;
      text-transform: uppercase;
      letter-spacing: 0.04em;
    }

    input:focus, textarea:focus {
      border-color: #b5a48a;
      box-shadow: 0 0 0 2px rgba(181,164,138,0.15);
      background: #fff;
    }

    .checkbox-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 6px 12px;
      margin-bottom: 30px;
    }

    .checkbox-item {
      display: flex;
        align-items: center;
        gap: 7px;
        cursor: pointer;
        color: #3D3D3D;
        font-size: 17px;
        font-style: normal;
        font-weight: 400;
        line-height: 33px;
        margin: 0;
    }

    .checkbox-item input[type="checkbox"] {
      width: 13px;
      height: 13px;
      accent-color: #C6AF89;
      cursor: pointer;
      flex-shrink: 0;
    }
    
.primary-btn:hover{
  background-color: #81A688;
  color: #fff;
}
}
.contact-page{
  position: relative;
  z-index: 1;
  .primary-btn:hover{
  background-color: #81A688;
  color: #fff;
}
&::before{
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 45%;
  height: 100%;
  background: #F8F8F8;
  z-index: -1;
}
.contact-vector{
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.sub-dec {
    color: #111;
    font-family: 'ABC Diatype';
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 135%;
    margin-bottom: 20px;
}
}
.contact-page-form {
position: relative;
    }
    .contact-page-form input[type="text"],
    .contact-page-form input[type="email"],
    .contact-page-form input[type="tel"],
    .contact-page-form textarea {
      width: 100%;
    padding: 17px 12px;
    outline: none;
    transition: border-color 0.2s;
    margin-bottom: 12px;
    display: block;
    border-radius: 6px;
    border: 1px solid #D4D4D4;
    background: #FFF;
    color: #000;
    font-size: 16px;
    font-style: normal;
    line-height: 13px;
    font-family: 'Aeonik TRIAL Regular';
    }

    .contact-page-form input::placeholder,
    .contact-page-form textarea::placeholder {
      color: #000000;
    }

    .contact-page-form input:focus,
    .contact-page-form textarea:focus {
      border-color: #81A688;
      background: rgb(255, 255, 255);
    }

    .contact-page-form .form-row {
      display: flex;
      gap: 10px;
    }

    .contact-page-form .form-row input {
      flex: 1;
    }

    .contact-page-form textarea {
      resize: vertical;
    margin-bottom: 14px;
    font-family: 'Aeonik TRIAL Regular';
    font-weight: normal;
    }

    /* Radio */
    .reply-row {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 18px;
      font-size: 13px;
      color: #444;
    }

    .radio-item {
      display: flex;
      align-items: center;
      gap: 5px;
      cursor: pointer;
      font-size: 13px;
      color: #444;
    }

    .radio-item input[type="radio"] {
      accent-color: #C6AF89;
    }
.contact-page-form label{
  color: #000;
font-size: 20px;
font-style: normal;
font-weight: 400;
line-height: 165%;
display: block;
}


    .location-info-list {
      padding-top: 10px;
      display: flex;
      flex-direction: column;
      gap: 0;
      padding-left: 6%;
    }

    .location-info-item {
      display: flex;
      gap: 20px;
      padding: 28px 0;
      border-bottom: 1px solid #81A688;
    }

    .location-info-item:first-child {
      padding-top: 0;
    }

    .location-icon {
      flex-shrink: 0;
      width: 36px;
      height: 36px;
      display: flex;
      align-items: flex-start;
      justify-content: center;
      padding-top: 2px;
    }


    .location-info-content h3 {
          margin-bottom: 5px;
    color: #000;
    font-family: 'Aeonik TRIAL Bold';
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 28px;
    }

    .location-info-content :is( .company-name, .label) {
      text-transform: uppercase;
      margin-bottom: 8px;
      color: #000;
      font-family: 'Aeonik TRIAL Bold';
      font-size: 18px;
      font-style: normal;
      font-weight: 700;
      line-height: 29px;
    }

    .location-info-content p,
    .location-info-content a {
    text-decoration: none;
    color: #242424;
    font-family: 'Aeonik TRIAL Regular';
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 29px;
    }
    .location-info-content p {
         margin-bottom: 5px;
      a{
      color: #242424;
      &:hover{
        color: #81A688;
        text-decoration: none;
      }
    }
    }
    .location-info-content a {
      color: #8aab96;
    }

    .location-info-content a:hover {
      color: #7a9e87;
      text-decoration: underline;
    }
.blog-listing-item{
  position: relative;
  background: #F4F4F4;
  border-bottom: 3.8px solid #81A688;
  text-align: center;
  transition: all .5s;
  img{
    width: 100%;
    height: 264px;
    object-fit: cover;
  }
  &:hover{
    border-bottom: 3.8px solid #C6AF89;
    transform: translateY(-5px);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  }
}
.blog-listing-content {
    padding: 20px;
}
.tag {
    color: #81A688;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    margin-bottom: 9px;
    display: inline-block;
}
.blog-date {
    color: #585858;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 26px;
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: auto;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
}
.blog-listing-title {
    color: #000;
    text-align: center;
    font-family: 'ABC Diatype';
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: 131.818%;
    margin-bottom: 30px;
    a{
      color: #000;
    }
    &:hover{
      a{
        color: #81A688;
      }
    }
}

.pagination{
    border-top: 1px solid #E2E0E0;
    padding-top: 30px;
    margin-top: 30px;
    .row .col-md-6:last-child{
        text-align: right;
        a{
          justify-content: flex-end;
        }
    }
h4{
    color: #C6AF89;
    font-family: 'Aeonik TRIAL Bold';
    font-size: 17px;
    font-style: normal;
    font-weight: 700;
    line-height: 9px;
    margin-bottom: 20px;
}
a{
        display: flex;
        align-items: center;
        gap: 10px;
        color: #000;
        font-family: 'ABC Diatype';
        font-size: 17px;
        font-style: normal;
        font-weight: 700;
        line-height: 111%;
    &:hover{
        color:rgb(210, 180, 80);
    }
    img{
      object-fit: cover;
      width: 76.08px;
      height: 49.2px;
    }
    span{
        width: 65%;
    }
}
}
.recent-post {
    border: 1px solid #C6AF89;
    background: #FFFBF5;
    padding: 18px;
    margin-bottom: 35px;
    h3{
      color: #000;
      font-family: 'ABC Diatype';
      font-size: 20px;
      font-style: normal;
      font-weight: normal;
      line-height: 145%;
      position: relative;
      &::after{
       content: '';
            width: 33.426px;
            height: 2px;
            background: #C6AF89;
            display: inherit;
            margin-bottom: 24px;
      }
    }
}
.recent-post-item{
  margin-bottom: 26px;
  &:last-child{
    margin-bottom: 0;
  }
  a{
    display: flex;
    align-items: center;
    gap: 13px;
    img{
      width: 76.08px;
      height: 49.2px;
      object-fit: cover;
    }
    h4{
      color: #000;
      font-family: 'ABC Diatype';
      font-size: 17px;
      font-style: normal;
      font-weight: 700;
      line-height: 19px; 
    }
    &:hover{
      h4{
        color: #81A688;
      }
    }
  }
}
.category-list {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    a{
      color: #000;
        font-family: 'ABC Diatype';
        font-size: 17px;
        font-style: normal;
        font-weight: 700;
        line-height: 111%;
        border-bottom: 1px solid #C6AF89;
        padding-bottom: 6px;
        &:hover{
          color: #81A688;
          border-bottom: 1px solid #81A688;
        }
    }
}
.blog-details-banner{
    background: #81A688;
    position: relative;
    padding-inline: 176px;
}
.featured-image {
    position: relative;
    overflow: hidden;
    &::after{
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.47);
    }
    img{
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .container{
      position: absolute;
      inset: 0;
      display: flex;
      flex-direction: column;
      align-items: start;
      justify-content: center;
      z-index: 1;
      padding-top: 10%;
    }
    .tag{
      color: #C6AF89;
      font-family: 'Aeonik TRIAL Bold';
      font-size: 21px;
      font-style: normal;
      font-weight: normal;
      line-height: 123.81%;
      margin-bottom: 14px;
    }
    h1{
      color: #FFF;
font-family: 'ABC Diatype';
font-size: 48px;
font-style: normal;
font-weight: normal;
line-height: 112.5%;
margin-bottom: 30px;
width: 50%;
    }
    .blog-date{
      color: #fff;
    }
}
.blog-details-content{
  h2,h3,h4 {
    color: #000;
    font-family: 'ABC Diatype';
    font-size: 29px;
    font-style: normal;
    font-weight: 700;
    line-height: 100%;
    margin-bottom: 8px;
}
h3{
font-size: 26px;
}
h4{
  font-size: 22px;
  margin-bottom: 20px;
}
ul,ol{
  margin-bottom: 30px;
  list-style-type: disc;
 padding-left: 20px;
  li{
    color: #000;
    font-family: 'Aeonik TRIAL Bold';
    font-style: normal;
    font-weight: normal;
    line-height: 161.111%;
    margin-bottom: 10px;
    font-size: 17px;
     &::marker{
    color: #81A688;
  }
  }
}
ol{
  list-style-type: number;
}
}
.sidebar-cta {
    padding: 60px 22px;
    text-align: center;
    background-image: url(../img/blog-slidebar-cta-img.webp);
    background-repeat: no-repeat;
    background-size: cover;
    background-repeat: no-repeat;
    img{
      margin-bottom: 20px;
    }
    h4 {
    color: #FFF;
    text-align: center;
    font-family: 'ABC Diatype';
    font-size: 29px;
    font-style: normal;
    font-weight: 700;
    line-height: 137.931%;
    margin-bottom: 29px;
}
}
.sub-category-banner.inner-banner.hero-banner {
    & .slide-item {
        &::before {
            width: 1136px;
            height: 256px;
        }
    }
    h1{
      width: 50%;
    }
}
.sub-category-listing{
  position: relative;
  z-index: 1;
  .sub-category-vector{
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
  }
  .card {
    border-radius: 0;
    transition: 0.3s;
    height: 100%;
    border: 2px solid #C6AF89;
    background: #FFF;
    padding: 5px 8px;
    &:hover{
        .product-info{
            .card-title{
                color: #81A688;
            }
        }
    }
}
.product-img {
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 199.885px;
    background: #F4F4F4;
}
.product-info {
   display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        border-radius: 0;
        margin: 25px 8px;
        text-align: center;
        height: auto;
        padding: 0;
        .card-title {
        margin-bottom: 0;
        line-height: 120.833%;
        margin-bottom: 20px;
    }
}
}
.testimonial-card{
  border: 2px solid #C6AF89;
    background: #FFFBF5;
    padding: 40px;
    padding-bottom: 15px;
    transition: all .5s;
    img{
      margin-bottom: 6px;
    }
    .testimonial-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 10px;
}
.testimonial-author-name {
    color: #000;
    font-family: 'Aeonik TRIAL Bold';
    font-size: 18px;
    font-style: normal;
    font-weight: 700;
    line-height: 13px;
    text-transform: uppercase;
    margin-bottom: 10px;
    position: relative;
    &::before{
      content: '';
      width: 32px;
      height: 2px;
      background: #C6AF89;
      display: block;
      margin-bottom: 10px;
    }
}
.testimonial-author-company {
    color: #7D7D7D;
    font-family: 'Aeonik TRIAL Regular';
    font-size: 16px;
    font-style: italic;
    font-weight: 400;
    line-height: 9px;
    margin: 0;
    margin-top: 16px;
}
&:hover{
    background: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
}
 .audio-testimonials {
    background: #F8F1E7;
    position: relative;
    z-index: 1;
    .tvector{
      position: absolute;
      bottom: 0;
      right: 0;
      z-index: -1;
    }

.audio-grid {
      display: grid; 
      grid-template-columns: repeat(3, 1fr);
      gap: 16px; 
      margin: 0 auto;
    }

    .audio-card {
    border-radius: 0;
    padding: 20px 18px;
    border: 2px solid #C6AF89;
    background: #FFF;
    transition: all .5s;
    &:hover{
        transform: translateY(-4px);
        box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);

    }
    }

    .card-top { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }

    .play-btn {
      border-radius: 50%;
    border: 2px solid #C6AF89;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    outline: none;
    transition: background 0.2s;
    width: 55px;
    height: 55px;
    }
    .play-btn:hover { background: #f5ede6; }
    .play-btn svg { 
          width: 22px;
    height: 16px;
    fill: #C6AF89;
    }
    .play-btn .icon-play  { display: block; margin-left: 2px; }
    .play-btn .icon-pause { display: none; }
    .play-btn.playing .icon-play  { display: none; }
    .play-btn.playing .icon-pause { display: block; }

    .card-title {
          color: #000;
        font-family: 'Aeonik TRIAL Bold';
        font-size: 18px;
        font-style: normal;
        font-weight: 700;
        line-height: 13px;
     }

    .waveform-row { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
    .duration  { font-size: 11px; color: #888; flex-shrink: 0; min-width: 26px; }
    .total-dur { font-size: 11px; color: #888; flex-shrink: 0; min-width: 26px; }

    /* canvas-based waveform */
    .waveform-wrap {
      flex: 1; height: 36px; position: relative; cursor: pointer; overflow: hidden;
    }
    .waveform-canvas { width: 100%; height: 100%; display: block; }

    /* progress overlay */
    .wave-progress {
      position: absolute; top: 0; left: 0;
      width: 0%; height: 100%;
      background: rgba(198,175,137,0.25);
      pointer-events: none;
      transition: width 0.1s linear;
    }

    .card-divider { border: none; border-top: 1px solid #ede7e0; margin-bottom: 10px; }
    .card-footer  { display: flex; align-items: center; justify-content: space-between; }
    .client-name  { 
        color: #000;
        font-family: 'Aeonik TRIAL Bold';
        font-size: 18px;
        font-style: normal;
        font-weight: 700;
        line-height: normal;
        text-transform: uppercase;
     }
    .client-label { font-size: 15px; color: #7D7D7D; font-style: italic; }

    .note-btn {
        border-radius: 50%;
        border: 2px solid #81A688;
        background: transparent;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        outline: none;
        width: 40px;
        height: 40px;
    }
    .note-btn svg { 
      width: 26px;
        height: 20px;
        fill: none;
        stroke: #81A688;
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
     }
   }
.product-banner.inner-banner.hero-banner {
    h1 {
        width: 55%;
    }
    & .slide-item {
        .container {
            bottom: 40px;
        }
        &::before {
            width: 1136px;
            height: 256px;
        }
    }
}
.product-content-sec{
  .section-title{
    color: #000;
  }
}

.product-links{
  background: #FFFBF5;
  position: relative;
  z-index: 1;
  .product-link-vector{
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: -1;
  }
  .section-title{
    color: #000;
  }
   .product-card-link {
        border-radius: 0;
        border: 0;
        overflow: hidden;
        background: #FFF;
        box-shadow: 0 4px 40px 0 rgba(0, 0, 0, 0.18);
    }

    .card-header {
        display: grid;
        grid-template-columns: 1fr 2fr;
        padding: 32px 35px;
        background: #F6F5F4;
    }

    .card-header span {
        color: #000;
        font-family: 'Aeonik TRIAL Bold';
        font-size: 26px;
        font-style: normal;
        font-weight: 700;
        line-height: 21px;
    }

    .product-row {
        display: grid;
        grid-template-columns: 1fr 2fr;
        align-items: center;
        padding: 13px 35px;
        border-bottom: 0;
        transition: background 0.15s;
    }

    .product-row:last-child {
      border-bottom: none;
    }

    .product-row:hover {
      background: #faf8f4;
    }

    .product-link-info {
      display: flex;
      align-items: center;
      gap: 14px;
    }

    .product-img {
      border-radius: 50%;
      background: #fff;
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
      width: 83px;
      height: 83px;
      border: 1px solid #D6D6D6;
      box-shadow: inset 0 0 0 5px #F8EEDF;
      padding: 12px;
    }

    .product-img img {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .product-name {
        color: #000;
        font-family: 'Aeonik TRIAL Bold';
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: 105%;
    }

    .link-box {
      display: flex;
      align-items: center;
    }

    .link-input {
        width: 100%;
        padding: 22px 30px;
        outline: none;
        transition: border-color 0.15s, box-shadow 0.15s;
        cursor: pointer;
        border-radius: 13px;
        border: 1px solid #C6AF89;
        background: #FFF;
        box-shadow: 0 4px 25px 0 rgba(0, 0, 0, 0.10);
        color: #000;
        font-family: 'Aeonik TRIAL Regular';
        font-size: 20px;
        font-style: normal;
        font-weight: 400;
        line-height: 21px;
        transition: all .5s;
        &:hover{
            background: #C6AF89;
        }
    }

    .link-input:focus {
      border-color: #2a7aad;
      box-shadow: 0 0 0 2px rgba(42,122,173,0.12);
    }
    .product-card-link {
      border-left: 42px solid #5A775E;
      padding-bottom: 50px;
    }
}
.mb-50{
  margin-bottom: 50px;
}

.brand-page-grid{
height:100vh;
display:grid;
grid-template-columns:1fr 1fr;
grid-template-rows:1fr 1fr;
position:relative;
}

/* GRID ITEM */

.brand-page-item{
position:relative;
overflow:hidden;
z-index: 1;
}

.brand-page-item img{
width:100%;
height:100%;
object-fit:cover;
filter:brightness(.65);
transition:transform .8s ease;
}

/* IMAGE ZOOM */

.brand-page-item:hover img{
transform:scale(1.12);
}

/* OVERLAY */

.brand-page-item::before{
content:"";
position:absolute;
inset:0;
transition:.5s;
z-index: 2;
}
.brand-page-grid{
  .brand-page-item{
    &:nth-child(1){
      &::before{
        background: rgba(12, 26, 11, 0.70);
      }
      &:hover::before{
        opacity:1;
      }
    }
    &:nth-child(2){
      &::before{
        background: rgba(65, 41, 9, 0.70);
      }
      &:hover::before{
        opacity:1;
      }
    }
    &:nth-child(3){
      &::before{
        background: rgba(65, 41, 9, 0.50);
      }
      &:hover::before{
        opacity:1;
      }
    }
    &:nth-child(4){
      &::before{
        background: rgba(12, 26, 11, 0.50);
      }
      &:hover::before{
        opacity:1;
      }
    }
  }
}
/* TEXT BUTTON */

.brand-page-text{
position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 15px 16px;
    text-decoration: none;
    letter-spacing: .5px;
    transition: all .5s;
    z-index: 3;
    width: 355px;
    height: 102px;
    border: 1px solid #FFF;
    color: #FFF;
    text-align: center;
    font-family: 'Aeonik TRIAL Regular';
    font-size: 36px;
    font-style: normal;
    font-weight: 400;
    line-height: 36px;
    &:hover,&:focus{
        color: #81A688;
        background: #ffffff !important;
    }
}

/* TEXT HOVER EFFECT */

.brand-page-item:hover .brand-page-text{
transform:translate(-50%,-50%) scale(1.07);
background:rgba(255,255,255,.12);
backdrop-filter:blur(4px);
box-shadow:0 0 20px rgba(255,255,255,.4);
}

/* CENTER LOGO */

.brand-page-center-logo{
position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 4;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
}
.logo-box{
width: 284px;
height: 281px;
aspect-ratio: 94/93;
background:#fff;
border-radius:50%;
display:flex;
flex-direction:column;
align-items:center;
justify-content:center;
text-align:center;
padding:0px;
z-index:10;
box-shadow:0 15px 40px rgba(0,0,0,.5);
animation:brandPulse 3s infinite;
&:hover{
    img{
        transform: rotateY(360deg);
    }
}
}

.brand-page-center-logo a{
color: #FFF;
font-size: 22px;
font-style: normal;
font-weight: 400;
line-height: 104.545% ;
text-decoration-line: underline;
text-decoration-style: solid;
text-decoration-skip-ink: none;
text-decoration-thickness: auto;
text-underline-offset: auto;
text-underline-position: from-font;
&:hover{
  color: #81A688;
}
}

/* LOGO PULSE */

@keyframes brandPulse{

0%{
box-shadow:0 0 0 0 rgba(255,255,255,.4);
}

70%{
box-shadow:0 0 0 25px rgba(255,255,255,0);
}

100%{
box-shadow:0 0 0 0 rgba(255,255,255,0);
}

}

/* RESPONSIVE */

@media (max-width:768px){

.brand-page-grid{
grid-template-columns:1fr;
grid-template-rows:repeat(4,300px);
height:auto;
}

    .brand-page-center-logo {
        position: relative;
        text-align: center;
        background-image: url(../img/banner.webp);
        background-repeat: no-repeat;
        background-size: cover;
        &::after{
          content: "";
          position: absolute;
          inset: 0;
          background: rgba(0, 0, 0, 0.5);
          z-index: -1;
        }
    }

}

/* Product Details */
.product-details-banner {
    background: #096315;
    height: 180px;
}
.product-details{
  background-image: url(../img/product-details-bg.webp);
  background-repeat: no-repeat;
  background-size: cover;
	strong,b{
		font-family: inherit;
		font-weight: normal;
	}
}
.gallery-col { display: flex; flex-direction: column; gap: 24px; }
.gallery-col{
.slick-arrow {
    background: #c6af89;
}
	.slick-next {
    right: 5px;
}
	.slick-prev {
    left: 5px;
}
}
    .main-img-wrap {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    aspect-ratio: 1 / 0.85;
    cursor: zoom-in;
    transition: box-shadow .3s;
    border: 1px solid rgba(0, 0, 0, 0.22);
    background: #FFF;
    box-shadow: 0 4px 26px 0 rgba(0, 0, 0, 0.08);
    }
    .main-img-wrap:hover { box-shadow: 0 12px 36px rgba(44,36,22,0.16); }

    .main-img-wrap img {
      width: 100%; height: 100%;
      object-fit: contain;
      padding: 24px;
      transition: opacity .35s ease, transform .35s ease;
    }
    .main-img-wrap img.fade-out { opacity: 0; transform: scale(0.96); }
    .thumbs { position:relative; }

    .thumb {
          border-radius: 0;
    overflow: hidden;
    cursor: pointer;
    transition: border-color .22s, transform .22s, box-shadow .22s;
    flex-shrink: 0;
    border: 1px solid rgba(0, 0, 0, 0.22);
    background: #FFF;
    box-shadow: 0 4px 26px 0 rgba(0, 0, 0, 0.08);
    width: 163px;
    height: 145px;
    }
    .thumb img { width: 100%; height: 100%; object-fit: contain; padding: 6px; }
    .thumb:hover { border-color: var(--gold); transform: translateY(-2px); box-shadow: 0 4px 14px rgba(201,168,76,0.18); }
    .thumb.active { border-color: var(--green); box-shadow: 0 0 0 3px rgba(58,107,74,0.18); }

    .info-col { 
      display: flex; 
      flex-direction: column; 
      gap: 0; 
		.info-head{
			 border-bottom: 1px solid #A0A0A0;
    padding-bottom: 20px;
    margin-bottom: 22px;
		}
      h1 {
    color: #000;
    font-family: 'ABC Diatype';
    font-size: 33px;
    font-style: normal;
    font-weight: 700;
    line-height: 40px;
   margin-bottom:10px;
}
h4 {
    color: #000;
    font-family: 'Aeonik TRIAL Bold';
    font-size: 24px;
    font-style: normal;
    font-weight: 700;
    line-height: 21px;
    margin-bottom: 10px;
}
.btn-group {
    display: flex;
    gap: 20px;
    .primary-btn:last-child{
      background: #5A775E;
      color: #fff;
      display: flex;
      gap: 10px;
      padding-inline: 30px;
      &::after,&::before{
        background: #C6AF89;
      }
    }
}
    }

    .model-tag {
          letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 9px;
    color: #000;
    font-family: 'Aeonik TRIAL Bold';
    font-size: 20px;
    font-style: normal;
    font-weight: 700;
    line-height: 27px;
    }

    .divider { height: 1px; background: var(--border); margin: 0 0 20px; }

    .details-list { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 9px; }

    .details-list li {
          display: flex;
    align-items: baseline;
    gap: 10px;
    color: #282828;
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    margin-bottom: 6px;
    }

    .dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: var(--gold);
      margin-top: 5px; flex-shrink: 0;
    }

    .product-table{
width:100%;
border-collapse:collapse;
font-family:Arial, sans-serif;
font-size:14px;
border:1px solid #bda074;
}

.product-table thead{
background:#bda074;
color:#fff;
}

.product-table th{
  padding: 29px;
  text-align: left;
  border: 0;
  color: #FFF;
  font-family: 'Aeonik TRIAL Bold';
  font-size: 22px;
  font-style: normal;
  font-weight: 700;
  text-align: center;
  line-height: 30px;
  white-space: break-spaces;
	border: 1px solid #000;
}
.product-table{
  tbody tr{
    td:first-child,td:last-child{
      font-family: 'Aeonik TRIAL Regular';
      font-style: normal;
      font-weight: 400;
    }
  }
}
.product-table td{
    padding: 29px 20px;
    border: 1px solid #cfcfcf;
    background: #ffffff;
    color: #000;
    font-family: 'Aeonik TRIAL Regular';
    font-size: 22px;
	text-align: center;
    font-style: normal;
    font-weight: 400;
    line-height: 21px;
	border: 1px solid #000;
	white-space: nowrap;
}

.product-table tbody tr:nth-child(even) td{
background:#ffffff;
}

.product-table td:first-child{
width:80px;
text-align:center;
font-weight:600;
}

.product-table td:last-child{
text-align:center;
font-weight:600;
}

.product-table td:nth-child(2){
    color: #000;
    font-family: 'Aeonik TRIAL Regular';
    font-style: normal;
    font-weight: 400;
}

.product-details-tabs{
  .tab-btn {
        text-transform: unset;
        width: auto;
        height: 73px;
    }
    .form-card {
        background: #ffffff;
    }
}
.related-products{
  background: #FFFBF5;
}


/* ════════════════════════════════════════════════════
    MOBILE ACCORDION — all rules scoped inside .mobile-accordion
════════════════════════════════════════════════════ */

.mobile-accordion {
    display: block;
    padding: 0px 10px 10px;
    border-radius: 10px;
    border: 1px solid #C6AF89;
    background: #FFF;
    box-shadow: 0 14px 26px 0 rgba(0, 0, 0, 0.05);
}

        .mobile-accordion .m-title {
                text-align: center;
                border: 1px solid #c0a070;
                padding: 20px 16px;
                margin-bottom: 12px;
                border-radius: 7px;
                background: #C6AF89;
                color: #000;
                font-family: 'Aeonik TRIAL Bold';
                font-size: 22px;
                font-style: normal;
                font-weight: 700;
                line-height: 21px;
        }

        .mobile-accordion .acc-item {
            margin-bottom: 6px;
            border-radius: 7px;
            overflow: hidden;
            box-shadow: 0 1px 4px rgba(0,0,0,0.08);
        }

        .mobile-accordion .acc-trigger {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 8px;
            padding: 14px 11px;
            border: none;
            border-radius: 0;
            cursor: pointer;
            text-align: left;
            transition: filter 0.15s;
            font-family: 'Aeonik TRIAL Bold';
            font-size: 18px;
            font-style: normal;
            font-weight: 700;
            line-height: 23px;
        }
        .mobile-accordion .acc-trigger:hover { filter: brightness(0.93); }

        .mobile-accordion .acc-trigger.lvl1 {     
            color: #fff;
            border-radius: 7px 7px 0 0;
            background: #5A775E; 
        }
        .mobile-accordion .acc-trigger.lvl2 { 
            border-radius: 7px;
            border: 2px solid #A4C9AC;
            background: #C6E3CC;
            color: #000;
            padding-inline: 20px;
            .chev {
                width: 28px;
                height: 28px;
                background: #9BC5A1;
                color: #fff;
            }
         }

        .mobile-accordion .acc-trigger .chev {
                flex-shrink: 0;
                width: 32px;
                height: 32px;
                display: flex;
                align-items: center;
                justify-content: center;
                border-radius: 50%;
                background: #709274;
                font-size: 11px;
                transition: transform 0.28s ease;
        }
        .mobile-accordion .acc-trigger.open .chev { transform: rotate(180deg); }

        .mobile-accordion .acc-panel {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.32s ease;
            background: #fff;
        }
        .mobile-accordion .acc-panel.open { max-height: 2000px; }

        .mobile-accordion .acc-panel-inner {
            padding: 6px 10px 8px 14px;
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .mobile-accordion .acc-leaf {
                display: block;
                padding: 10px 13px;
                text-decoration: none;
                transition: filter 0.15s;
                border-radius: 7px;
                border: 2px solid #C6AF89;
                background: #FFF4E1;
                color: #000;
                font-family: 'Aeonik TRIAL Bold';
                font-size: 18px;
                font-style: normal;
                font-weight: 700;
                line-height: 21px;
                text-align: center;
                &.active{
                    border-radius: 7px;
                    border: 2px solid #C6AF89;
                    background: #C6AF89;
                }
        }
        .mobile-accordion .acc-leaf:hover { filter: brightness(0.93); }

        .industrial-packaging {
            padding: 60px;
    .tree-wrap .root {
    border-radius: 7px;
        background: #C6AF89;
        color: #000;
        font-family: 'Aeonik TRIAL Bold';
        font-size: 22px;
        font-style: normal;
        font-weight: 700;
        line-height: 21px;
        min-width: unset;
        max-width: unset;
        padding: 28px 57px;
}
.tree-wrap .header-green { 
    border-radius: 7px;
        border: 5px solid #3C523F;
        background: #5A775E;
        color: #FFF;
        font-family: 'Aeonik TRIAL Bold';
        font-size: 20px;
        font-style: normal;
        font-weight: 700;
        line-height: 21px;
        padding: 17px 18px;
        max-width: 250px;
        min-width: unset;
        }
        .tree-wrap .sub-header {
    border-radius: 7px;
        border: 5px solid #A4C9AC;
        background: #C6E3CC;
        color: #000;
        font-family: 'Aeonik TRIAL Bold';
        font-size: 16px;
        font-style: normal;
        font-weight: 700;
        line-height: 19px;
        padding: 17px 20px;
}
.tree-wrap .item {
            border-radius: 7px;
        border: 2px solid #C6AF89;
        background: #FFF4E1;
        color: #000;
        font-family: 'Aeonik TRIAL Bold';
        font-size: 14px;
        font-style: normal;
        font-weight: normal;
        line-height: normal;
        padding: 12px 9px;
}
}

.our-partners {
    background: #fff;
}

.title-lg{
color: #000;
font-family: 'Aeonik TRIAL Bold';
font-size: 40px;
font-style: normal;
font-weight: 700;
line-height: 100%;
margin-bottom: 10px;
}

.new-arrival{
    background: #F4EEE5;
    .section-title{
        text-align: center;
        color: #000;
    }
    .product-img {
    height: 212.559px;
    background: none;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.card {
    background: #FFFFFF;
    height: auto;
    display: block;
}
.product-info {
    height: 80px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 14px 13%;
    .card-title {
        margin-bottom: 15px;
        color: #000;
        text-align: center;
        font-family: 'ABC Diatype';
        font-size: 24px;
        font-style: normal;
        font-weight: 700;
        line-height: 29px;
    }
}
}
.product-content-sec {
    position: relative;
    z-index: 1;
    .product-link-vector {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 20%;
}
}
.info-col{
	h5{
		font-family: 'Aeonik TRIAL Bold';
		margin-bottom: 16px;
		margin-top: 14px;
	}
}
/******************************* Responsive ********************************/
/* =========================================================
   ULTRA WIDE SCREENS (2K / Large Desktop)
   ========================================================= */
@media (min-width: 1800px) {
  
}

/* =========================================================
   LAPTOP LARGE (1600px)
   ========================================================= */
@media (max-width: 1600px) {
 .why-choose-us {
    padding-left: 7%;
}
.title {
    font-size: 25px;
}
.why-choose-box {
    padding: 18px;
    padding-bottom: 25px;
}
.gallery-slider-item {
    height: 490px;
}
.blog-details-banner {
    padding-inline: 60px;
}

}

/* =========================================================
   1920px @125% SCALING (1536px viewport)
   ========================================================= */
@media (max-width: 1536px) {
  .why-choose-us {
    padding-left: 5%;
}
.title {
    font-size: 25px;
}
.why-choose-box {
    padding: 18px;
    padding-bottom: 25px;
}
.gallery-slider-item {
    height: 490px;
}
.blog-details-banner {
    padding-inline: 50px;
}

}


/* =========================================================
   LAPTOP STANDARD (1440px / 1366px)
   ========================================================= */
@media (max-width: 1366px) {
 .container {
    max-width: 1200px;
}
.product-table th {
    padding: 20px;
    font-size: 20px;
    line-height: 24px;
}
.hero-banner {
    & .slide-item {
        &::before {
            width: 750px;
            height: 380px;
        }
        h1 {
            font-size: 70px;
        }
        p {
            font-size: 26px;
        }
    }
    .slick-dots {
        bottom: 26px;
        left: 10%;
    }
}
.sub-dec {
    font-size: 28px;
}
p {
    font-size: 15.5px;
}
.counter-box {
    p {
        font-size: 17px;
    }
}
.section-title {
    font-size: 56px;
}
.why-choose-us {
    .col-lg-5 {
        padding-right: 2%;
    }
}
.title {
    font-size: 22px;
    margin-bottom: 6px;
}
.why-choose-box {
    padding: 12px;
    padding-bottom: 20px;
    height: 320px;
    p{
      margin: 0;
    }
}
.gallery-slider-item {
        height: 438px;
    }
    
.contact-map {
    iframe {
        height: 540px;
    }
}
.site-footer {
    p, a {
        font-size: 14px;
        line-height: 30px;
    }
}
.faq-section-question-text {
    font-size: 18px;
}
.faq-section-answer-inner {
    font-size: 16px;
}
#desktopMenu > li > a {
    padding: 10px 10px;
    font-size: 16px;
}
.navbar-inner {
    gap: 40px;
}
.inner-banner.hero-banner {
    & .slide-item {
        &::before {
            width: 530px;
            height: 214px;
        }
    }
}
.hero-banner.inner-banner.service-banner{
  & .slide-item {
        .container {
            bottom: 20px;
        }
        &::before {
          width: 690px;
          height: 240px;
        }
    }
}
.service-details-2 {
    .service-details-content-wrap {
        padding-right: 13%;
    }
}
.hero-banner {
    & .slide-item {
        .container {
            bottom: 46px;
        }
    }
}
.blog-details-content {
    h2 {
        font-size: 24px;
    }
    h3 {
        font-size: 21px;
    }
    h4{
      font-size: 18px;
    }
        & ul, & ol {
        li {
            font-size: 15px;
        }
    }
}
.recent-post-item {
    & a {
        h4 {
            font-size: 14px;
        }
    }
}
.recent-post {
    h3 {
        font-size: 18px;
    }
}
.category-list {
    a {
        font-size: 14px;
    }
}
.sidebar-cta {
    h4 {
        font-size: 25px;
    }
}
.sub-category-listing {
    & .product-info {
        margin: 18px 8px;
        .primary-btn {
            font-size: 15px;
            padding: 13px 30px;
            margin-top: 15px;
        }
        .card-title {
            margin-bottom: 0;
            line-height: 120.833%;
            font-size: 20px;
        }
    }
}
.sub-category-banner.inner-banner.hero-banner {
    & .slide-item {
        &::before {
            width: 800px;
            height: 210px;
        }
    }
}

.product-details-tabs {
    .tab-btn {
        height: 64px;
        font-size: 20px;
        padding: 10px 17px;
    }
}
.product-links {
    .product-name {
        font-size: 18px;
        padding-right: 20px;
    }
}
.product-links {
    .link-input {
        padding: 15px 18px;
        font-size: 18px;
    }
}
.new-arrival {
    & .product-info {
        .card-title {
            margin-bottom: 8px;
            font-size: 18px;
            line-height: 22px;
        }
    }
}

.mobile-accordion .acc-trigger .chev {
    width: 25px;
    height: 25px;
}

}

/* =========================================================
   1920px @150% SCALING (1280px viewport)
   ========================================================= */
@media (max-width: 1280px) {
 
}

/* =========================================================
   TABLET LANDSCAPE
   ========================================================= */
@media (max-width: 1199.98px) {
     .navbar-inner {
        gap: 18px;
    }
    #desktopMenu > li > a {
        padding: 10px 6px;
        font-size: 14.5px;
    }
    .top-bar {
    padding: 17px 10px;
    }
    .hero-banner {
        & .slide-item {
            &::before {
                width: 580px;
                height: 340px;
            }
            h1 {
                font-size: 60px;
            }
        }
    }
        .sub-dec {
        font-size: 22px;
    }
    .counter-box {
        p {
            font-size: 18px;
        }
    }
    .section-title {
        font-size: 50px;
    }
    .title {
        font-size: 18px;
        margin-bottom: 6px;
    }
    .why-choose-box {
        p {
            margin: 0;
            line-height: 130%;
        }
    }
    .tab-btn {
    font-size: 18px;
    padding: 16px 16px;
}
.slick-next {
    right: -6px;
}
.slick-prev {
    left: -6px;
}
    .gallery-slider-item {
        height: 332px;
    }
        .blog-details-banner {
        padding-inline: 0px;
    }
    .featured-image {
    .container {
        padding-top: 20%;
    }
        h1 {
        width: 70%;
    }
}
.sub-category-listing {
    .product-info {
        padding: 0px 6px;
            height: auto;
            margin: 25px 8px;
        }
    }
.sub-category-listing {
    .product-img {
        height: 150.885px;
    }
}
.enquiry-page {
    .form-title {
      font-size: 34px;
    }
}
.product-details{
    .primary-btn{
      padding: 13px 31px;
    }
}
}

/* =========================================================
   TABLET PORTRAIT
   ========================================================= */
@media (max-width: 991.98px) {
	.flex-box {
		margin-left: auto;
	}
	.search-box{
		width: 300px;
	}
  header {
    .primary-btn {
        padding: 16px 27px;
        margin-left: auto;
        margin-right: 70px;
    }
}
    .nav-toggler {
        display: block;
        position: absolute;
        right: 20px;
    }
        .hero-banner {
        & .slide-item {
          height: 670px;
          text-align: center;
        }
    }
    .hero-banner {
        & .slide-item {
            &::before {
                width: 115%;
                height: 400px;
            }
        .container {
            left: 10%;
            right: 10%;
            bottom: 66px;
            z-index: 1;
            width: auto;
        }
        }
    }
    .about {
    padding-top: 40px;
    padding-bottom: 70px;
}
.exp {
    margin-top: 60px;
    margin-bottom: 50px;
    justify-content: center;
}
.about{
  .section-title,
  .sub-dec {
    text-align: center;
  }
  .divider {
    margin-left: auto;
    display: block;
    margin-right: auto;
}
.counter-box {
    padding: 0 4%;
    position: relative;
            p {
            font-size: 15px;
        }
}
.number {
    font-size: 44px;
}
}
.why-choose-us {
        padding-left: 5%;
        padding-right: 5%;
    }
      .tab-btn {
        font-size: 15px;
        padding: 13px 14px;
        margin: 0 3px;
    }
    .card-title {
    font-size: 22px;
    line-height: 97.167%;
}  
.industries-served-card-label {
    margin-top: 16px;
    padding: 0 12px;
    letter-spacing: 0.3px;
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 0;
}
.industries-served-card-img-wrap {
    height: 200px;
}
.sec-gap {
    padding: 40px 0;
}
.section-title {
        font-size: 40px;
    }
        .contact-map {
        iframe {
            height: 380px;
        }
    }
    #mobileMenuClone > li > a {
    padding: 13px 20px;
    color: #000000;
    background: #fff;
}
#mobileMenuClone li a{
font-size: 20.5px;
}
.bi-chevron-down{
      display: inline-block;
    line-height: 1;
    width: 8px;
    height: 8px;
    border-top: 1px solid;
    border-left: 1px solid;
    transform: rotate(225deg);
}
#mobileMenuClone ul[data-depth="1"] > li > a,
#mobileMenuClone ul[data-depth="2"] > li > a,#mobileMenuClone ul[data-depth="3"] > li > a{
    font-size: 18.5px;
    font-weight: normal;
    font-family: 'Aeonik TRIAL Bold';
    padding-block: 15px;
}
    .inner-banner.hero-banner {
              & .slide-item {
            height: 380px;
            text-align: center;
                        &::before {
                width: 105%;
                height: 184px;
            }
        }
    }
    .valuable-partner {
    .our-partners-card {
        height: 130px;
        padding: 15px 10px;
    }
}
.mission-vission {
    .img-box {
        position: relative;
        margin-bottom: 20px;
    }
    .container .row:last-child{
      .col-lg-6:last-child{
        order: -1;
      }
    }
}
.core-values {
    padding-top: 50px;
    padding-bottom: 110px;
}

.core-values-card {
    padding: 20px 10px;
    height: 228.797px;
}
.core-values-content {
    h4 {
        font-size: 18px;
    }
}
.founder-box {
    text-align: center;
}
.timeline-box{
  .col-md-6{
    width: 100%;
  }
}
.markers-row {
    gap: 6px;
}
.hero-banner.inner-banner.service-banner {
    & .slide-item {
        h1 {
            width: 100%;
        }
        &::before {
          width: 105%;
          height: 190px;
        }
    }
}
.service-details {
    .service-details-content-wrap {
        padding: 30px;
        padding-left: 0;
    }
}
    .service-details-2 {
        .service-details-content-wrap {
            padding: 30px;
            padding-left: 30px;
            padding-right: 15px;
        }
    }
    .quality-policies {
    padding-top: 30px;
    padding-bottom: 30px;
}
.contact-page {
    &::before {
        width: 100%;
        height: 57%;
        background: #F8F8F8;
        z-index: -1;
    }
}
.contact-page-form {
    position: relative;
    margin-bottom: 100px;
}
    .featured-image {
        height: 600px;
    }
        .featured-image {
        .container {
            padding-top: 26%;
        }
                h1 {
            width: 80%;
        }
    }
    .hero-banner.inner-banner.sub-category-banner {
                & .slide-item {
            .container {
                left: 3%;
                right: 3%;
                bottom: 40px;
                z-index: 1;
                width: auto;
            }
        }
            h1 {
        width: 80%;
    }
    }
    .audio-testimonials {
    .audio-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
.testimonial-card {
    padding: 20px;
    padding-bottom: 15px;
}
    .sub-category-banner.inner-banner.hero-banner {
        & .slide-item {
            &::before {
                width: 107%;
                height: 160px;
            }
        }
    }
    .hero-banner.inner-banner.sub-category-banner {
        h1 {
            width: 100%;
        }
    }
        .product-details-tabs {
        .tab-btn {
            height: 64px;
            font-size: 17px;
            padding: 10px 14px;
        }
    }
    .product-table th {
    padding: 24px;
    font-size: 20px;
}
.product-table td {
    padding: 23px 8px;
    font-size: 20px;
}
.product-table {
    & tbody tr {
        td:first-child, td:last-child {
            font-size: 22px;
        }
    }
}
.product-table td:nth-child(2) {
    font-size: 18px;
}
.product-table td {
    font-size: 20px;
}
.product-links {
    .product-card-link {
        border-left: 10px solid #5A775E;
    }
    .card-header span {
        font-size: 22px;
    }
    .product-row {
        padding: 10px 12px;
        grid-template-columns: 1fr 1.5fr;
    }
}
}

/* =========================================================
   MOBILE LARGE
   ========================================================= */
@media (max-width: 767.98px) {
 
}

/* =========================================================
   MOBILE SMALL
   ========================================================= */
@media (max-width: 575.98px) {
.logo-wrap {
    width: 80px;
    height: 80px;
}
	.search-btn{
		img {
			width: 20px;
		}
	}
	.flex-box {
    gap: 5px;
}
	    .search-box {
        width: 310px;
		transform: translateY(-50%) scaleY(0);
			right: -170px;
    }
	    .search-box.active {
        transform: translateY(60%) scaleY(1);
    }
	.search-input {
    padding: 12px 48px 12px 12px;
}
header {
  padding-top: 12px;
    padding-bottom: 20px;
    .primary-btn {
        padding: 12px 18px;
        margin-left: auto;
        margin-right: 35px;
        font-size: 14px;
    }
}
header.sticky {
    padding-block: 11px;
    padding-bottom: 4px;
}
    .nav-toggler {
        display: block;
        position: absolute;
        right: 5px;
    }
    #mobileMenuClone li a {
        font-size: 16.5px;
    }
    #mobileMenuClone ul[data-depth="1"] > li > a, #mobileMenuClone ul[data-depth="2"] > li > a, #mobileMenuClone ul[data-depth="3"] > li > a,
    #mobileMenuClone ul[data-depth="4"] > li > a {
        font-size: 15.5px;
        padding-block: 12px;
    }
    .off-head {
    padding: 10px 20px;
}
    .hero-banner {
        & .slide-item {
            height: 570px;
            .container {
                left: 5%;
                right: 5%;
                bottom: 66px;
            }
                        h1 {
                font-size: 34px;
            }
            p {
                font-size: 18px;
            }
                        &::before {
                width: 115%;
                height: 350px;
            }
        }
        .slick-dots {
            bottom: 26px;
            left: 0;
        }
    }
    .welcome-badge {
    font-size: 14px;
}
    .section-title {
        font-size: 30px;
        margin-bottom: 10px;
    }
    .sub-dec {
        font-size: 17px;
    }
        .exp {
        margin-top: 25px;
        margin-bottom: 30px;
        justify-content: center;
        .card-title {
        font-size: 19px;
        line-height: 97.167%;
    }
    }
    .about-img2 {
    display: none;
}
.about-img-box {
    &::after {
        width: 91px;
        height: 80px;
        top: -20px;
        right: -10px;
    }
}

.counter{
    margin-top: 70px;
    .row .col-lg-3:nth-child(2){
        .counter-box{
            &::after{
                display: none;
            }
        }
    }
}
.counter-box {
    &::after {
        transform: rotate(274deg);
    }
}
.why-choose-box {
    height: 280px;
    margin-bottom: 15px;
}
.why-choose-us {
    padding-top: 30px;
    padding-bottom: 40px;
}
.featured-products {
    padding: 30px 0;
    text-align: center;
}
    .tab-btn {
        font-size: 15px;
        padding: 13px 14px;
        margin: 3px 3px;
    }
.industries-served {
    padding: 30px 0;
}
.mb-40 {
    margin-bottom: 16px;
}
.industries-served-card-img-wrap {
        height: 280px;
    }
.our-partners-card {
    padding: 10px 2px;
    min-height: 100px;
    border-right: 1px solid #d4d4d4;
    border-bottom: 1px solid #d4d4d4;
}
.our-partners .row .col:nth-child(6n) .our-partners-card {
    border-right: 1px solid #d4d4d4;
}
.our-partners .row .col:nth-child(7) .our-partners-card,
.our-partners .row .col:nth-child(8) .our-partners-card,
	.our-partners .row .col:nth-child(n+13) .our-partners-card{
    border-bottom: 1px solid #d4d4d4;
}
.faq-section-question-text {
        font-size: 16px;
        line-height: normal;
    }
        .contact-map {
        iframe {
            height: 300px;
        }
    }
    .site-footer {
    padding: 30px 0 0;
}
.site-footer-heading {
    font-size: 16px;
}
p.site-footer-contact-text {
    line-height: 25px;
    font-size: 12.5px;
}
.site-footer{
.copyright {
    flex-wrap: wrap;
    p{
      font-size: 13px;
    }
}
}
.wa-btn {
    bottom: 10px;
    right: 4px;
    z-index: 999;
}
.site-footer-logo-wrap{
  img{
    width: 150px;
  }
}
  .valuable-partner {
      .our-partners-card {
          height: 90px;
          padding: 6px 5px;
      }
  }
  .valuable-partner {
    .row .col:nth-child(n+13) .our-partners-card {
        border-bottom: 1px solid #d4d4d4;
    }
}
  .valuable-partner {
    .row .col:last-child .our-partners-card {
        border-bottom: 0;
    }
}
.inner-banner.hero-banner {
        & .slide-item {
            height: 200px;
            text-align: center;
            &::before {
                width: 105%;
                height: 100px;
            }
        }
                & .slide-item {
            .container {
                left: 5%;
                right: 5%;
                bottom: 20px;
            }
        }
    }
    p,body {
        font-size: 14.5px;
    }
    .mission-vission {
    .row:not(:last-child) {
        margin-bottom: 30px;
    }
}
.mission-vission {
    & .img-box {
        &::before {
            width: 140.506px;
            height: 195.537px;
            bottom: -20px;
        }
    }
}
.line-design {
    margin-top: 30px;
}
.founder-box {
    h5, h6 {
        font-size: 15px;
        margin-bottom: 12px;
    }
}
.founder-box {
    padding: 30px 0;
}
.founder-box {
    & .col-lg-4 {
        h4 {
            font-size: 24px;
            margin-bottom: 8px;
        }
    }
}
.mb-50 {
    margin-bottom: 20px;
}
.timeline-content {
    padding: 15px;
    h3 {
        font-size: 34px;
        margin-bottom: 5px;
    }
        .card-title {
        line-height: 141.667%;
        font-size: 18px;
    }
}
.markers-row {
        gap: 9px 6px;
        flex-wrap: wrap;
    }
    .timeline-line {
    width: 100%;
    height: 60px;
    background: #d9d9d900;
    border-radius: 10px;
    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
    border-bottom: 4px solid #d9d9d9;
    border-top: 4px solid #d9d9d9;
}
.global-presence {
    .country-box {
      background: #c6af89ba;
        padding: 2px;
            width: 96px;
            right: auto;
            bottom: -33px;
    }
}
.country-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
        img {
        width: 20px;
        height: 20px;
        border-radius: 50%;
    }
}
.service-banner.hero-banner {
    & .slide-item {
        h1 {
            width: 100%;
        }
    }
}
.hero-banner.inner-banner.service-banner {
        & .slide-item {
            &::before {
                width: 110%;
                height: 115px;
            }
        }
    }
.service-details {
  padding-top: 30px;
    .service-details-content-wrap {
        height: 100%;
        padding: 30px 0;
        padding-left: 0;
    }
    .row .col-md-6:last-child{
      order: -1;
    }
}
.service-details-2{
padding: 30px 0;
.row .col-md-6:last-child{
      order: 2;
    }
            .service-details-content-wrap {
            height: 100%;
            padding: 30px 15px;
            padding-left: 15px;
        }
}
.service-content-areas {
    padding-top: 30px;
    padding-bottom: 30px;
}
.contact-page {
    .sub-dec {
        font-size: 15px;
        line-height: 135%;
        margin-bottom: 20px;
    }
}
.contact-page-form input[type="text"], .contact-page-form input[type="email"], .contact-page-form input[type="tel"], .contact-page-form textarea {
    font-size: 14px;
}
.contact-page-form {
        position: relative;
        margin-bottom: 60px;
    }
        .contact-page {
        &::before {
            width: 100%;
            height: 55%;
            background: #F8F8F8;
            z-index: -1;
        }
    }
.location-info-list {
    padding-left: 0;
}
.location-info-item {
    gap: 10px;
}
.location-info-content p, .location-info-content a {
    font-size: 16px;
}
.blog-listing-title {
    font-size: 18px;
    margin-bottom: 21px;
}
.blog-listing-content {
    padding: 10px 15px;
}
    .featured-image {
      height: 380px;
        h1 {
            width: 94%;
            font-size: 30px;
        }
    }
        .blog-details-content {
        h2 {
            font-size: 22px;
        }
                h3 {
            font-size: 18px;
        }
                h4 {
            font-size: 16px;
            margin-bottom: 15px;
        }
                & ul, & ol {
            li {
                font-size: 14px;
                line-height: normal;
            }
        }
    }
    .pagination {
    a {
        display: flex;
        flex-direction: column;
        align-items: start;
        gap: 10px;
        font-size: 12px;
        span {
            width: 100%;
        }
    }
        & .row .col-md-6:last-child {
        a {
            justify-content: flex-end;
            align-items: end;
        }
    }
}
.recent-post {
    padding: 12px;
    margin-bottom: 25px;
}
    .hero-banner.inner-banner.sub-category-banner {
        h1 {
            width: 100%;
        }
            & .slide-item {
        &::before {
            width: 115%;
            height: 110px;
        }
    }
    }
        .sub-category-listing {
        .product-img {
            height: 130.885px;
            padding: 4px;
        }
        .product-info {
            padding: 0px 8px;
            height: auto;
            margin: 8px 0px;
            border-radius: 10px;
            .card-title {
                margin-bottom: 0;
                line-height: 120.833%;
                font-size: 14px;
            }
        }
    }
        .sub-category-listing {
        & .product-info {
            .primary-btn {
                font-size: 14px;
                padding: 9px 20px;
                margin-top: 15px;
            }
        }
    }
    .title-lg {
    font-size: 24px;
}

    .hero-banner.inner-banner.sub-category-banner {
        & .slide-item {
            .container {
                left: 3%;
                right: 3%;
                bottom: 26px;
                z-index: 1;
                width: auto;
            }
        }
    }
        .audio-testimonials {
        .audio-grid {
            grid-template-columns: repeat(1, 1fr);
        }
    }
    .audio-testimonials {
    .client-name {
        font-size: 16px;
    }
}
.brand-page-text {
    padding: 15px 16px;
    width: 290px;
    height: 102px;
    font-size: 26px;
    line-height: normal;
}
.enquiry-page {
    .form-title {
      font-size: 24px;
      margin-bottom: 30px;
    }
    .form-card {
        padding: 7px;
    }
    .form-subtitle {
        font-size: 18px;
        margin-bottom: 15px;
    }
    label {
        font-size: 14px;
    }
    input[type="text"], input[type="email"], input[type="tel"], textarea {
        padding: 14px 11px;
        font-size: 14px;
    }
        .form-group,.form-row .form-group {
        margin-bottom: 15px;
    }
        .form-row {
        display: block;
        margin-bottom: 15px;
    }
    .checkbox-grid {
        grid-template-columns: 1fr;
        margin-bottom: 20px;
    }
    .checkbox-item {
        font-size: 12px;
        line-height: 20px;
        margin: 0;
    }
        .tab-btn {
        padding: 7px 4px;
        width: 160px;
        height: 50px;
        font-size: 13px;
    }
}
.product-details-banner {
    height: 80px;
}
    .info-col {
        h1 {
            font-size: 30px;
			margin-bottom: 2px;
        }
    h4 {
        font-size: 18px;
    }
    }
	.info-col {
    .info-head {
        padding-bottom: 10px;
        margin-bottom: 15px;
    }
}
    .details-list li {
    gap: 6px;
    font-size: 14.5px;
    margin-bottom: 6px;
}
.info-col {
    .btn-group {
        display: flex;
        gap: 20px;
        flex-wrap: wrap;
    }
}
.primary-btn{
  font-size: 15px;
}
.enquiry-page {
    .tab-nav {
        display: flex;
        gap: 0px;
        margin-bottom: 0;
        justify-content: center;
        flex-wrap: wrap;
    }
    .tab-btn{
      margin-bottom: 0;
    }
}
.product-table td {
    padding: 8px 2px;
}
.product-table {
        & tbody tr {
            td:first-child, td:last-child {
                font-size: 13px;
            }
        }
    }
    .product-table td:nth-child(2) {
        font-size: 12px;
    }
        .product-table td {
        font-size: 12px;
        line-height: normal;
    }
.product-table td:first-child {
    width: 55px;
    text-align: center;
    font-weight: 600;
}
.product-table th {
        padding: 5px;
        font-size: 14px;
    }
        .product-links {
        .product-row {
            padding: 10px 12px;
            display: block;
        }
        .link-input {
            padding: 7px 10px;
            font-size: 14px;
            overflow: hidden;
            margin-top: 10px;
            line-height: normal;
        }
            .card-header {
        padding: 16px 10px;
        background: #F6F5F4;
    }
    .card-header span {
            font-size: 18px;
        }
                .product-name {
            font-size: 16px;
            padding-right: 20px;
        }
    }
    .faq-section-question {
    padding: 10px 4px;
}
    
.mobile-accordion .m-title {
        padding: 12px 16px;
        font-size: 16px;
    }
}


















/* Mobile / Tablet — switch to accordion */
        @media screen and (max-width: 992px) {
            body { background: #f7f6f2; padding: 0; }
            .tree-wrap        { display: none; }
            .mobile-accordion { display: block; }
            .product-banner.inner-banner.hero-banner {
    & .slide-item {
                  height: 420px;
                          &::before {
            width: 120%;
            height: 220px;
        }
        .container {
            bottom: 40px;
            left: 15px;
            right: 15px;
        }
        h1 {
        width: 100%;
    }
    }
    
}
.industrial-packaging {
    padding-top: 30px;
    padding-bottom: 30px;
    padding-inline: 15px;
}
        }

        /* Small mobile adjustments */
        @media screen and (max-width: 480px) {
            .mobile-accordion .acc-trigger { font-size: 15px; padding: 10px 12px; }
            .mobile-accordion .acc-leaf    { font-size: 14px; }
            .mobile-accordion .acc-trigger.lvl2 {
    padding: 6px 12px;
}
                .product-banner.inner-banner.hero-banner {
        & .slide-item {
            height: 250px;
                        &::before {
                width: 120%;
                height: 136px;
            }
        }
    }
    .industrial-packaging {
            padding-top: 30px;
        padding-bottom: 30px;
        background: #fff;
}
.sec-gap {
        padding: 30px 0;
    }
.mobile-accordion {
    padding: 0px 10px 10px;
}
.product-content-sec {
    background: #fff;
}
        }

/*ul li*/
.ppt-ul {
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
	margin-bottom: 10px;
}

.ppt-ul li {
    position: relative;
    margin: 0 0 10px;
    padding-left: 22px;
    font-size: 20px;
    line-height: 1.35;
    font-weight: 500;
    color: #000;
}

.ppt-ul li:last-child {
    margin-bottom: 0;
}

.ppt-ul li::before {
    content: "";
    position: absolute;
    top: 11px;
    left: 0;
    width: 8px;
    height: 8px;
    background: #5f8b67;
    border-radius: 50%;
}

/* Large tablet */
@media (max-width: 991px) {
    .ppt-ul {
        margin-top: 16px;
		margin-bottom: 9px;
    }

    .ppt-ul li {
        font-size: 18px;
        line-height: 1.4;
        padding-left: 20px;
        margin-bottom: 8px;
    }

    .ppt-ul li::before {
        width: 7px;
        height: 7px;
        top: 10px;
    }
	.product-table th {
    white-space: nowrap;
}
	.product-table td {
    white-space: normal;
}
}

/* Mobile */
@media (max-width: 767px) {
    .ppt-ul {
        margin-top: 14px;
		margin-bottom: 5px;
    }

    .ppt-ul li {
        font-size: 16px;
        line-height: 1.5;
        padding-left: 18px;
        margin-bottom: 7px;
    }

    .ppt-ul li::before {
        width: 6px;
        height: 6px;
        top: 9px;
    }
}

/* Small mobile */
@media (max-width: 480px) {
    .ppt-ul li {
        font-size: 15px;
        line-height: 1.5;
        padding-left: 16px;
    }

    .ppt-ul li::before {
        top: 8px;
        width: 6px;
        height: 6px;
    }
}
#menuSource {
    display: none;
}
.wpcf7-form p {
    display: block;
}

.wpcf7 br {
    display: none;
}

.form-row {
    display: flex;
    gap: 10px; 
}

.form-row p {
    flex: 1;
    margin: 0;
}

.form-row input {
    width: 100%;
}
.is-search-submit svg {
  display: none !important;
}
.is-search-submit svg path {
  display: none !important;
}
.is-search-icon {
	display: none !important;
}
.is-form-style button.is-search-submit {
  display: none !important;
  pointer-events: none !important;
}
.product-table-box{
	overflow-x: auto;
}

/* .product-table {
    width: 100% !important;
    max-width: 100% !important;
    border-collapse: collapse !important;

    display: block !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
}

.product-table thead,
.product-table tbody {
    display: table;
    width: max-content;
    min-width: 100%;
}

.product-table tr {
    display: table-row;
}

.product-table th,
.product-table td {
    border: 1px solid #000;
    padding: 6px;
    text-align: center;
    vertical-align: middle;
    white-space: normal; 
    word-break: break-word;
    font-size: 11px;
}

 */

.strap-spec-table {
    width: 100%;
    max-width: 650px;
    border-collapse: collapse;
    font-size: 16px;
}

.strap-spec-table th,
.strap-spec-table td {
    border: 1px solid #222;
    padding: 8px 10px;
    text-align: left;
    vertical-align: middle;
}

.strap-spec-table th {
    font-weight: 600;
    background: #fff;
}

.strap-spec-table td {
    background: #fff;
}


.break-space td{
	white-space: break-spaces;
}