@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

:root{
    --primary-colour: #D2AC2B;
    --secondary-colour: #242424;
}

.primary-text{
    color:var(--primary-colour);
}

.secondary-text{
    color:var(--secondary-colour);
}

.primary-bg{
    background-color:var(--primary-colour);
}

.primary-outline{
    border-color:var(--primary-colour);
}

.secondary-bg{
    background-color:var(--secondary-colour);
}

.btn-outline-secondary:hover {
    background-color: #eee!important;
}



html, body {
    margin: 0;
    padding: 0;
}


body, caption, span, h1, h2, h3, h4, h5, h6{
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;    
}


p {
    font-size: clamp(1rem, 1vw, 2rem);
}

:lang(en) {
    font-family: "Montserrat", sans-serif;
}


p:lang(en) {
    font-weight: 300;
}


h1, h2, h3 {
    font-family: "Montserrat", sans-serif;
    font-weight: 900;
}


h1 {
    text-transform: uppercase;
}

h1, h2, h3, h4, h5, h6{
    margin: 0 0 25px 0;
    font-weight: 700;
}

a {
    font-weight: 400;
    text-decoration: none;
    color:#000;
}

a:hover {
    color: var(--primary-colour);
}


.site-logo {
    position: absolute;
    left: 5vw;
    top: 50%;
    transform: translateY(-50%);
    z-index:2;
}

.pill-btn-wrapper{
    justify-content: center;
    display: flex;
}

.pill-btn {
    background-color: var(--primary-colour);
    color: var(--secondary-colour);
    text-align: center;
    border: 1px #000;
    border-radius: 50px;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    min-height: 48px;
    padding: 12px 25px;
    font-family: Lato, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 18px;
    transition: color .3s, background-color .3s ease-in-out;
    display: flex;
}


/* Top Hightlight Banner */
.tp_hl_bn .swiper-slide {
    overflow: hidden;
    aspect-ratio: 20 / 1;
    min-height: 60px;
}

.tp_hl_bn .swiper-slide img {
    height: 100%;
}


.tp_hl_bn .container {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.tp_hl_bn .pill-btn {
    position: absolute;
    right: 10%;
    top: 50%;
    transform: translateY(-50%);
}


img.custom-logo {
    width: clamp(95px, 10vw, 120px);
    height: auto;
}

span.display-name {
    color: #fff;
}

.widget-title{
    text-align:center;
    text-transform:uppercase;
}

.text-shadow{
text-shadow: 1px 1px 5px #000;
}



#frontpage-sidebar1 a, #product-archive-sidebar a {

    font-size: medium;

    font-weight: 600;

}

hr {
   border: 0;
    height: 1px;
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.75));
}



header {
    z-index: 10;
    width: 100%;
    background-color: var(--primary-colour);
    position: relative;
    display:flex;
}

header, header a, header i{
    color: #fff;
}

ul.menu {
    padding: 0;
}


#frontpage-sidebar1 a, #product-archive-sidebar a {
    font-size: medium;
    font-weight: 600;
}


header .logo-tag {
    margin: 0;
    padding: 0 0 0 calc(clamp(95px, 10vw, 120px) + 6vw);
    align-items: center;
    display:flex;
    min-height: 65px;
    gap: 2%;
}

header .logo-tag h6 {
    font-size: clamp(0.7rem, 1vw, 1.2rem);
    margin: auto 0;
}

header .logo-tag .since {
    font-size: clamp(0.5rem, 0.8vw, 1rem);
    background-color: #fff;
    color: var(--primary-colour);
    padding: 1% 2%;
    border-radius: 50%;
    font-weight: bold;
    display: inline-block;
    width: 15%;
    text-align: center;
    min-width: 60px;
    height: fit-content;
}

.hotkey .menu-item > a { text-decoration: none; }

.menu-icon--hotkey-menu {
    width: 50px;
    height: auto;
}


.menu-label--hotkey-menu{
    line-height: 1.2;
    display: block;
    color: var(--secondary-colour);
    font-size: clamp(0.8rem, 1vw, 1.2rem);
}


#menu-hotkey-menu {
  margin: 1em 0;
  display: flex;
  justify-content: space-between;
  list-style: none;
  gap: 1px;
  max-width: 1024px;
  overflow-x: auto;      /* enable horizontal scrolling */
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE and Edge (legacy) */
}

/* Chrome, Safari, and other WebKit browsers */
#menu-hotkey-menu::-webkit-scrollbar {
  display: none;
}




#menu-hotkey-menu li {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    justify-content: center;
    flex: 0 0 auto;
    margin: 0.5em;
}


.head-menu {
    background-color: var(--secondary-colour);
    display: flex;
    align-items: center;
    min-height:65px;
    justify-content: space-between;
}

.head-menu a, .head-menu i {
    color: #fff;
}


@media only screen and (max-width: 767px) {

    header .logo-tag {
        width: 100%;
        padding:0 2% 0 calc(clamp(95px, 10vw, 120px) + 6vw);
    }

    header .head-menu {
        display:none;
    }
    .head-menu {
        width:100%;
        padding:0 3%;
        position:relative;
    }
}

@media only screen and (min-width: 768px) {

    header .logo-tag {
        width: 60%;
    }

    header .logo-tag h6 {
        width:70%;
    }

    header .head-menu {
        width: fit-content;
        min-width: 40%;
        padding: 0 5vw 0 2vw;
    }

    .mobile{
        display:none;
    }

    header .menu-user-wrap a {
        font-size:clamp(0.8rem, 1vw, 1.5rem);
    }

}


@media only screen and (min-width: 1024px) {

    header .logo-tag {
        width: 70%;
    }

    header .logo-tag h6 {
        width:60%;
    }

    header .head-menu {
        min-width: 30%;
    }

}


/* Mobile-only bar visibility */
.mobile-only { display: flex; align-items: center; gap: 8px; }
@media (min-width: 768px){ .mobile-only { display: none !important; } }

/* Only one overlay visible at each breakpoint */
@media (max-width: 767px){
  .sb-overlay.is-desktop { display: none !important; }
}
@media (min-width: 768px){
  .sb-overlay.is-mobile { display: none !important; }
}

/* Optional: backdrop element for the shared overlay skin */
.sb-backdrop{
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,.55);
  border: 0;
}



.menu-icon--top-menu {
    width: 20px;
}


.menu-title--top-menu {
    display: flex;
    column-gap: 5%;
}

span.menu-title.menu-title--top-menu:hover, .lang-item a:hover{
    color:#fff;
}


footer {
    background-color:#fff;
    color:var(--secondary-colour);
    padding:3em 0;
}

footer a, footer span{
    color:var(--secondary-colour);
}

footer h1, footer h2, footer h3, footer h4, footer h5, footer h6 {
    color: var(--secondary-colour);
}

footer td {
    color: var(--secondary-colour)!important;
}

footer .sub-menu {
    list-style: none;
    padding: 0;
}

footer .sub-menu li:before{
    display: none;
}

.footer-title {
    color:var(--secondary-colour);
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: small;
    margin-bottom:1em;
}

.footer-title:before {
    content: '|';
    margin: 0 10px 0 0;
    color: var(--primary-colour);
    font-size: x-small;
    vertical-align: text-top;
}

.page-title {
    font-family: Gilroy-Extra Bold;
    font-size: clamp(16px, 10vw, 80px);
    line-height: 1;
    text-transform: uppercase;
    display: inline-block;
}

.page-title span {
    display: block;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.dropdown-toggle img {
    height: 20px;
    margin-right: 10px;
}

.dropdown-menu {
    display: none;
    position: absolute;
    left: 0;
    top: 80%;
    z-index: 10;
    width: 100%;
    max-height: 300px;
    overflow-y: auto;
    background-color: #2b2f33;
    border: 0;
    border-radius: 0 10px 10px 0;
}

.dropdown-menu.open {
    display: block;
}

.dropdown-item {
    padding: 10px;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.dropdown-item img {
    height: 20px;
    margin-right: 10px;
}

.dropdown-item:hover {
    background-color: #009696;
}

.dropdown-arrow {
    margin-left: auto;
}



.divider {
    display: flex;
    align-items: center;
    color: #414448;
    padding: 0 5px;
    font-weight: lighter;
    user-select: none;
    font-size: 2em;
}


#service-archive{
    margin:3em 0 1em 0;
}


#service-archive .service-items{
    position:relative;
}

#service-archive img {
    filter: brightness(0.5) grayscale(0.1);
}


.thumbnail-caption {
    position: absolute;
    bottom: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    padding: 5% 2%;
    text-align: center;
}

.page-featured-image{
    margin:3em 0 1em 0;
}

.page-featured-image img.responsive-featured-image {
    width: 100%;
    height: auto;
    display: block;
}

.round-border{
    border-radius: 10px;
    overflow:hidden;
}


.thumbnail-container {
    width: 90%;
    position: relative;
    z-index: 1;
}

.thumbnail-container .round-border:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid #eee;
    border-radius: 10px;
    right: -10%;
    bottom: -10%;
    z-index: -1;
}

.overlay:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #2e3192;
    opacity: 0.5;
    z-index: -1;
}


.object-cover {
    object-fit: cover;
}
.thumbnail-wrapper img {
    width: 100%;
    height: 100%;
    display: block;
}

.latest-videos{
    margin: 5em auto;
}

.menu-logo {
    margin: 0em 2em 2em 2em;
    z-index: 1;
    position: relative;
}


.green-checked {
    list-style-type: none;
    padding-left: 1.5em; /* spacing for icon */
    position: relative;
}

.green-checked::before {
    content: '\f00c'; /* Font Awesome checkmark icon */
    font-family: 'Font Awesome 6 Free'; /* or 'FontAwesome' */
    font-weight: bold;
    color: #47e513;
    position: absolute;
    left: 0;
    top: 0.1em;
}



.post-header img{
    object-fit: cover;
    object-position: center;
    width:100%;
    height:100%;
    filter: grayscale(1) brightness(0.5);
}


.post-header .entry-title {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    width: 90%;
    text-align: center;
}

.post-container {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    color: #24252a;
    padding:0;
    height:100%;
}

.post-container .text-box{
    padding:5%;
}

.post-container h2{
    color: #24252a;
    margin: 0 0 10px 0;
    text-align: center;
}


#tag-filter-bar {
    margin: 2em 0;
}

#tag-filter-bar a {
    padding: 0.5em;
    background-color: var(--primary-colour);
    margin: 0.5em;
    border-radius: 7px;
    font-size: small;
    font-weight: bold;
}


#menu-header-menu-2{
    list-style: none;
}

#menu-header-menu-2 li :before {
    content: '\f054';
    font-family: 'FontAwesome';
    margin-right: 1em;
    color: var(--primary-colour);
}

#menu-header-menu-2 li {
    margin-bottom:1em;
}


.services-widget-list a {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
}

.box-item {
    position: relative;
    padding: 3em 1em 5em 1em;
    height: 100%;
}

.text-box ul {
    list-style: none;
}

.text-box li:before {
    content: '\f054';
    font-family: 'FontAwesome';
    margin-right: 0.5em;
    position: absolute;
    left: 3em;
}


.overall-effect .text-box{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
}


.header-search { background-color: unset; border: 0; }

/* Overlay: shows instantly (no animation) */
.sb-overlay {
  position: absolute;
  inset: 0;
  background-color: var(--primary-colour);
  z-index: 1;
  display: none;        /* hidden by default */
}
.sb-overlay.sb-open { display: flex; }

/* Layout inside the overlay */
.sb-container {
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 2%;
    align-items: center;
    width: 100%;
    padding: 0 5vw 0 calc(clamp(95px, 10vw, 120px) + 6vw);
}

/* Search field “grow from right” animation */
.sb-field {
  position: relative;
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 999px;
  height: 44px;
  padding: 0 16px;
  outline: 2px solid transparent;
  outline-offset: 2px;
  box-shadow: 0 0 0 1px rgba(255,255,255,0.28) inset;
  margin: 0;

  /* start collapsed when overlay just opened */
  transform-origin: right center;
  transform: scaleX(0);
  opacity: 0;
  will-change: transform, opacity;
  transition: transform .28s ease, opacity .2s ease;
}

/* when we add .sb-animate, the field grows in from the right */
.sb-overlay.sb-animate .sb-field {
  transform: scaleX(1);
  opacity: 1;
}

.sb-field:focus-within {
  box-shadow: 0 0 0 3px rgba(255,255,255,0.4) inset;
}

.sb-input {
  border: 0; outline: 0; width: 100%;
  font: 500 16px/1.1 system-ui, sans-serif;
  color: #0a1a2b; background: transparent;
}
.sb-input::placeholder { color: #9aa3b2; }

.sb-btn {
    height: 44px;
    padding: 0 18px;
    border: 0;
    background: transparent;
    color: #666;
    cursor: pointer;
    font-weight: 600;
}

.sb-btn i{
    color: #666;
}

.sb-btn:hover { background: rgba(255,255,255,.4); }

.sb-close {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 2px solid #fff;
    display: inline-grid;
    place-items: center;
    color: #fff;
    background: rgba(255, 255, 255, .2);
    cursor: pointer;
    font-size: 20px;
    font-weight: bold;
}

.sb-close:hover { background: rgba(255,255,255,.4); }


a.menu-user, a.menu-logout {
    text-decoration: underline;
    margin-left: 0.5em;
}


.vm-lang{
    padding: 5%;
    border: 1px solid #d0d5dd;
    border-radius: 1vw;
    background: transparent;
    color: #fff;
    font-size: clamp(0.8rem, 1.2vw, 2rem);
}
.vm-lang option { color: var(--secondary-colour); }
.menu-item-lang .vm-lang-wrap { margin-left:8px; }



  .filw-swiper{position:relative}
  .filw-swiper .swiper-wrapper{align-items:stretch}
  .filw-swiper .swiper-slide{height:auto}
  .filw-item{display:block;overflow:hidden;border-radius:12px}
  .filw-item img{display:block;width:100%;height:auto;transition:transform .25s ease}
  .filw-item:hover img{transform:scale(1.04)}
  .filw-fallback{display:block;width:100%;padding-top:66%;background:#f3f3f3;border:1px solid #eee;border-radius:12px}
  .filw-pagination{position:relative;margin-top:8px}
  .filw-nav .filw-prev,.filw-nav .filw-next{
    position:absolute;top:50%;transform:translateY(-50%);width:34px;height:34px;border-radius:50%;
    background:rgba(0,0,0,.45);z-index:5;cursor:pointer
  }
  .filw-nav .filw-prev{left:6px}
  .filw-nav .filw-next{right:6px}
  .filw-nav .filw-prev::after,.filw-nav .filw-next::after{
    content:'';display:block;width:0;height:0;border-top:7px solid transparent;border-bottom:7px solid transparent;margin:10px auto
  }
  .filw-nav .filw-prev::after{border-right:8px solid #fff;margin-left:12px}
  .filw-nav .filw-next::after{border-left:8px solid #fff;margin-right:12px}


.semi-info {
    padding: 2%;
    background-color: #fff;
    border-radius: 10px;
    display: flex;
    margin: 1em 0;
    box-shadow: 0 0 10px rgb(0, 0, 0, 0.2);
}


.post-content {
    padding: 4em 3% 3%;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgb(0, 0, 0, 0.2);
    position: relative;
}

span.d-day {
    font-size: clamp(1rem, 7vw, 2rem);
    font-weight: bold;
    line-height: 1;
}

sup.d-suf {
    font-size: clamp(1rem, 1vw, 1.8rem);
}


.d-month, .d-year {
    font-size: clamp(1rem, 1vw, 2rem);
    font-weight: bold;
    text-transform: uppercase;
    line-height: 1;
}


.category-tag {
    background-color: var(--primary-colour);
    padding: 0.2em 1.2em 0.2em 1.8em;
    text-transform: uppercase;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.2em;
    position: absolute;
    left: -10px;
    top: 1em;
}


/* Use FA icon as the bullet for ul.a */
.highlight { list-style:none; padding-left:1.25em; }
.highlight li{ position:relative; }

/* Works with FA6 (and falls back to FA5 if that's what's loaded) */
.highlight li::before{
  content:"\f105";              /* angle-right */
  font-family:"Font Awesome 6 Free","Font Awesome 5 Free";
  font-weight:900;              /* solid weight */
  position:absolute;
  left:-1.25em;                 /* aligns with padding-left on ul */
  top:.15em;                    /* tweak vertical alignment */
  line-height:1;
  speak:none;                   /* accessibility nicety */
  /* optional styling */
  font-size:0.95em;
  color:var(--primary-colour);
}

#menu-management-menu {
    padding: 0.5em 0 0.5em calc(clamp(94px, 25vw, 160px) + 1em);
    background-color: #fff;
    list-style: none;
    display: flex;
    margin: 0;
}

#menu-management-menu li {
    margin: 0 2%;
}





.circle-wrap:after {
    content: '';
    position: absolute;
    width: 35px;
    aspect-ratio: 1 / 1;
    background-color: #000;
    z-index: -1;
    border-radius: 50%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.circle-wrap{
    position:relative;
    z-index:1;
}


.chat-button { position: fixed; right: 25px; bottom: calc((var(--i) * 70px)); /* each button stacked above */ opacity: 1; /* visible immediately */ transform: scale(1); z-index: 999; cursor: pointer; } .contact-icon { width: 60px; height: 60px; display: flex; justify-content: center; align-items: center; border-radius: 60px; }



@media (max-width: 767px) {
  #contact-buttons {
    display: none;
    position: fixed;
    bottom: 80px; /* above bottom nav */
    right: 25px;
    z-index: 1050;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  #contact-buttons.show {
    display: flex !important;
  }

  .chat-button {
    width: 60px;
    height: 60px;
    border-radius: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;

    /* Start hidden for animation */
    opacity: 0;
    transform: translateY(30px) scale(0.9);
  }

  #contact-buttons.show .chat-button {
    animation: slideUp 0.35s ease forwards;
  }

  @keyframes slideUp {
    from { opacity: 0; transform: translateY(30px) scale(0.9); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
  }

  /* Stagger each button */
  #contact-buttons.show .chat-button:nth-child(1) { animation-delay: 0.05s; }
  #contact-buttons.show .chat-button:nth-child(2) { animation-delay: 0.15s; }
  #contact-buttons.show .chat-button:nth-child(3) { animation-delay: 0.25s; }
  #contact-buttons.show .chat-button:nth-child(4) { animation-delay: 0.35s; }
  #contact-buttons.show .chat-button:nth-child(5) { animation-delay: 0.45s; }
}

/* Keep your icon scaling effect */
#chat-icon {
  transition: transform 0.3s ease;
}



.stack-container img {
    max-height: 47vw;
    display: block;
    margin: auto;
    max-width: 100%;
}


.footer-menu a {
    color: var(--primary-colour)!important;
}



/* ====== Footer Contact Buttons (scoped) ====== */
#cb-contact-buttons { position: fixed; right: 25px; bottom: 25px; z-index: 3000; }
.cb-chat-button     { position: fixed; right: 25px; bottom: calc(var(--i) * 70px); z-index: 3001; }
.cb-contact-icon    { width: 56px; height: 56px; border-radius: 50%; display: grid; place-items: center; box-shadow: 0 12px 20px rgba(0,0,0,.15); }

/* WhatsApp Popover */
#cb-wa-popover { position: fixed; right: 92px; bottom: 120px; z-index: 3050; }
@media (max-width: 767.98px) {
  #cb-wa-popover { right: 12px; left: 12px; bottom: 80px; }
}
.cb-wa-popover-inner { background:#fff; border-radius:12px; box-shadow:0 10px 30px rgba(0,0,0,.15); overflow:hidden; min-width:280px; max-width:360px; }
.cb-wa-popover-header { display:flex; align-items:center; justify-content:space-between; padding:.75rem 1rem; border-bottom:1px solid #eee; }
.cb-wa-popover-close { border:0; background:transparent; font-size:1.25rem; line-height:1; cursor:pointer; }
.cb-wa-popover-list { display:flex; flex-direction:column; padding:.25rem; }
.cb-wa-item { display:flex; gap:.75rem; align-items:center; padding:.6rem .75rem; border-radius:8px; text-decoration:none; color:inherit; }
.cb-wa-item:hover { background:#f7f7f7; }
.cb-wa-icon { font-size:1.4rem; color:#25D366; flex:0 0 auto; }
.cb-wa-meta { display:flex; flex-direction:column; min-width:0; }
.cb-wa-pic { font-weight:600; color:#111; }
.cb-wa-lang { font-size:.85rem; color:#555; }
.cb-show { display:block !important; }

/* Show floating buttons by default on ≥ md */
#cb-contact-buttons { display:block; }
@media (max-width: 767.98px){
  #cb-contact-buttons { display:none; }
  #cb-contact-buttons.cb-show { display:block !important; }
}


.grid-container .grid-item h5 {
    font-size: clamp(1rem, 1.5vw, 1.5rem);
}




footer .logo-tag {
    background-color: #f6e8cd;
    padding: 3% 3% 3% clamp(4rem, 7.5vw, 4.5rem);
    border-radius: 0 18px 18px 0;
    text-align: start;
    margin: auto 0 auto clamp(3rem, 7.5vw, 4.5rem);
}

footer .logo-tag h6 {
    font-size: clamp(0.7rem, 1vw, 1.1rem);
    margin:0;
    color:#000;
}

footer .logo-tag .caption {
    font-size: clamp(0.7rem, 1vw, 1.1rem);
    color:var(--primary-colour);
}

footer .logo-tag .since {
    font-size: clamp(0.5rem, 0.8vw, 1rem);
    color: #fff;
    background-color: var(--primary-colour);
    padding: 2% 8%;
    border-radius: 50%;
    font-weight: bold;
    line-height: 3;
}


#menu-management-menu li a{
    font-size: clamp(0.8rem, 1vw, 1rem);
}


/* ========== Base menu styling ========== */
.menu { list-style: none; margin: 0; padding: 0; display: flex; gap: 1rem; }
.menu > li { position: relative; }
.menu a { display: inline-flex; align-items: center; gap: .4em; text-decoration: none; padding: .6rem .8rem; }

/* Caret for items with children */
.menu .menu-item-has-children > a::after {
    content: "▾";
    font-size: 1.5em;
    line-height: 1;
    transition: transform .2s ease;
    color: #666;
}

/* Dropdown panel */
.menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    list-style: none;
    margin: 8px 0 0;
    padding: .4rem 0;
    background: #fff;
    border-radius: 0 0 .5rem .5rem;
    display: none;
    z-index: 50;
}

/* Submenu items */
.menu .sub-menu > li > a {
  display: block;
  padding: .55rem;
}
.menu .sub-menu > li > a:hover { background: rgba(0,0,0,.04); }

/* Open state toggled by JS */
.menu li.open > a::after { transform: rotate(180deg); }
.menu li.open > .sub-menu { display: block; }

/* Optional: mobile-friendly vertical layout below 768px */
@media (max-width: 768px) {
  .menu { flex-direction: column; gap: 0; }
  .menu > li { width: fit-content; }
  .menu .sub-menu {
    position: static;
    box-shadow: none;
    border: 0;
    margin: 0;
  }
}


#header-menu {
    margin: auto 0;
    width: auto;
    display: flex;
    column-gap: 25%;
    list-style: none;
    padding: 0;
}


ul.navigation-menu{
    list-style: none;
}

.navigation-menu li {
    font-size: large;
}



.vm-sp-open{padding:.6rem 1rem;border-radius:10px;border:0;background:#111;color:#fff;cursor:pointer}
.vm-sp-modal[hidden]{display:none}
.vm-sp-modal{position:fixed;inset:0;background:rgba(0,0,0,.6);display:flex;align-items:center;justify-content:center;z-index:9999}
.vm-sp-dialog{background:#fff;max-width:560px;width:92%;padding:1rem 1.2rem;border-radius:16px;position:relative}
.vm-sp-close{position:absolute;top:.5rem;right:.6rem;border:0;background:transparent;font-size:26px;cursor:pointer}
.vm-sp-qr img{max-width:100%;height:auto;border-radius:12px;border:1px solid #eee}
.vm-sp-actions{display:flex;gap:.75rem;align-items:center;margin-top:.5rem}
.vm-sp-submit{padding:.5rem .9rem;border-radius:8px;border:0;background:#1a1449;color:#fff;cursor:pointer}
.vm-sp-status{font-size:.95rem}
.vm-sp-hint{font-size:.9rem;color:#666}




#menu-management-menu li a{
    font-size: clamp(0.8rem, 1vw, 1rem);
}


/* ========== Base menu styling ========== */
.menu { list-style: none; margin: 0; padding: 0; display: flex; gap: 1rem; }
.menu > li { position: relative; }
.menu a { display: inline-flex; align-items: center; gap: .4em; text-decoration: none; padding: .6rem .8rem; }

/* Caret for items with children */
.menu .menu-item-has-children > a::after {
    content: "\f107";
    font-size: small;
    line-height: 1;
    transition: transform .2s ease;
    color: var(--primary-colour);
    font-family: fontawesome;
}

/* Dropdown panel */
.menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    list-style: none;
    margin: 8px 0 0;
    padding: .4rem 0;
    background: #fff;
    border-radius: 0 0 .5rem .5rem;
    display: none;
    z-index: 50;
}

/* Submenu items */
.menu .sub-menu > li > a {
  display: block;
  padding: .55rem;
}
.menu .sub-menu > li > a:hover { background: rgba(0,0,0,.04); }

/* Open state toggled by JS */
.menu li.open > a::after { transform: rotate(180deg); }
.menu li.open > .sub-menu { display: block; }

/* Optional: mobile-friendly vertical layout below 768px */
@media (max-width: 768px) {
  .menu { flex-direction: column; gap: 0; }
  .menu > li { width: fit-content; }
  .menu .sub-menu {
    position: static;
    box-shadow: none;
    border: 0;
    margin: 0;
  }
}

#menu-management-menu {
    padding: 0.5em 0 0.5em calc(clamp(94px, 25vw, 160px) + 1em);
    background-color: #fff;
    list-style: none;
    display: flex;
    margin: 0;
}

#menu-management-menu li {
    margin: 0 2%;
}


.vmpp-thumb-wrap {
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.vmpp-thumb-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.btn.disabled, .btn:disabled, fieldset:disabled .btn{
    opacity:1;
}




/* Card Setup */


.our-services-container{
max-width: 1500px;
width:100%;
margin:5em 2%;
}

.service-card {
    overflow: hidden; 
    cursor: pointer;
    /* Optional: Smooth transition for card shadow if you keep it */
    transition: box-shadow 0.3s ease; 
    height: 100%; /* Important for equal-height columns in a Bootstrap row */
}

/* Image Wrapper for Positioning */
.card-image-wrapper {
    position: relative;
    overflow: hidden;
    height: 300px; /* Fixed height for consistent card size */
}

.card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease; /* For a subtle zoom effect on hover */
}

/* The Overlay Layer (Initial State - showing only title) */
.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    /* Start the height at a small value, enough to show the title */
    min-height: 50px; 
    background-color: var(--primary-colour);
    display: flex;
    align-items: flex-end; /* Push content to the bottom */
    transition: height 0.4s ease-out, background 0.4s ease-out;
    z-index: 2;
}

.overlay-content {
    width: 100%;
    text-align: center;
}

/* Initially hide the description text */
.overlay-desc {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: opacity 0.3s ease 0.1s, max-height 0.4s ease;
    font-size:small;
}

/* *** HOVER EFFECT *** */

/* When hovering over the service-card */
.service-card:hover .card-overlay {
    /* Expand the height to cover the whole image wrapper */
    height: 100%; 
    /* Optional: Slightly darker background on full hover */
    background: rgba(0, 0, 0, 0.50);
}

.service-card:hover .overlay-desc {
    /* Show the description */
    opacity: 1;
    max-height: 250px; /* Sufficient height to show the text */
}

/* Optional: Slight image zoom on hover */
.service-card:hover .card-image {
    transform: scale(1.05);
}