@charset "UTF-8";
/* ==========================================
   HOARDING CLEANUP HEADER NAVIGATION (FULL)
========================================== */
.site-header .navbar {
  padding: 0;
}
.site-header .navbar-nav .nav-item {
  position: relative;
}
.site-header .navbar-nav {
  /* --------------------------
     TOP LEVEL LINKS
  -------------------------- */
}
.site-header .navbar-nav .nav-link {
  font-size: 16px;
  font-weight: 500;
  padding: 22px 18px;
  color: #6c757d;
  transition: color 0.2s ease;
}
.site-header .navbar-nav .nav-link:hover, .site-header .navbar-nav .nav-link:focus {
  color: #2563eb;
}
.site-header .navbar-nav .active > .nav-link,
.site-header .navbar-nav .nav-link.active {
  color: #2563eb !important;
}
.site-header .navbar-nav {
  /* --------------------------
     CARET (Figma SVG)
  -------------------------- */
}
.site-header .navbar-nav .nav-link.dropdown-toggle::after {
  border: 0 !important;
  content: "" !important;
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 8px;
  vertical-align: middle;
  background-color: currentColor;
  -webkit-mask: url(../images/icons/chevron-down.svg) no-repeat center/contain;
  mask: url(../images/icons/chevron-down.svg) no-repeat center/contain;
  transition: transform 0.2s ease;
}
.site-header .navbar-nav {
  /* Rotate chevron when open:
     - Desktop hover will be handled in desktop media query
     - Click/tap uses aria-expanded which works on mobile */
}
.site-header .navbar-nav .nav-link.dropdown-toggle[aria-expanded=true]::after {
  transform: rotate(180deg);
}
.site-header .navbar-nav {
  /* --------------------------
     DROPDOWN MENU (BASE)
  -------------------------- */
}
.site-header .navbar-nav .dropdown-menu {
  display: none;
  z-index: 1000;
}
.site-header .navbar-nav .dropdown-menu.show {
  display: block;
}
.site-header .navbar-nav {
  /* --------------------------
     SUBMENU ITEMS (BASE)
  -------------------------- */
}
.site-header .navbar-nav .dropdown-item {
  padding: 12px 22px;
  font-size: 16px;
  font-weight: 500;
  color: #6c757d;
  transition: color 0.2s ease, background-color 0.2s ease;
  position: relative;
}
.site-header .navbar-nav .dropdown-item:hover, .site-header .navbar-nav .dropdown-item:focus {
  background: transparent;
  color: #2563eb;
}
.site-header .navbar-nav {
  /* --------------------------
     SUBMENU ITEMS (Figma underline style)
  -------------------------- */
}
.site-header .navbar-nav .dropdown-item {
  padding: 12px 22px;
  font-size: 16px;
  font-weight: 500;
  color: #6c757d;
  transition: color 0.2s ease;
  position: relative;
  background: transparent;
}
.site-header .navbar-nav .dropdown-item:hover, .site-header .navbar-nav .dropdown-item:focus {
  color: #2563eb;
}
.site-header .navbar-nav .dropdown-item {
  /* underline for every item */
}
.site-header .navbar-nav .dropdown-item::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 6px;
  height: 1px;
  background: rgba(15, 23, 42, 0.12); /* subtle gray line */
}
.site-header .navbar-nav {
  /* Optional: remove underline on LAST item if your Figma has no last line */
}
.site-header .navbar-nav .dropdown-menu li:last-child > .dropdown-item::after {
  display: none;
}
.site-header .navbar-nav {
  /* Current submenu item */
}
.site-header .navbar-nav .dropdown-menu .current-menu-item > .dropdown-item,
.site-header .navbar-nav .dropdown-menu .current_page_item > .dropdown-item {
  color: #2563eb;
}
.site-header .navbar-nav {
  /* Current item underline becomes blue */
}
.site-header .navbar-nav .dropdown-menu .current-menu-item > .dropdown-item::after,
.site-header .navbar-nav .dropdown-menu .current_page_item > .dropdown-item::after {
  background: #2563eb;
}
.site-header .navbar-nav {
  /* Divider between submenu items */
}
.site-header .navbar-nav .dropdown-item + .dropdown-item {
  border-top: 1px solid rgba(15, 23, 42, 0.06);
}
.site-header .navbar-nav {
  /* Current submenu item (WordPress classes) */
}
.site-header .navbar-nav .dropdown-menu .current-menu-item > .dropdown-item,
.site-header .navbar-nav .dropdown-menu .current_page_item > .dropdown-item {
  color: #2563eb;
}
.site-header .navbar-nav {
  /* Underline on current submenu item */
}
.site-header .navbar-nav .dropdown-menu .current-menu-item > .dropdown-item::after,
.site-header .navbar-nav .dropdown-menu .current_page_item > .dropdown-item::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 8px;
  height: 1px;
  background: #2563eb;
}
.site-header {
  /* ==============================
     TOP LEVEL HOVER + OPEN STATE
  ============================== */
  /* Hover on parent */
}
.site-header .nav-item:hover > .nav-link {
  color: #2563eb !important;
}
.site-header {
  /* When dropdown is open (Bootstrap adds .show on li) */
}
.site-header .dropdown.show > .nav-link {
  color: #2563eb !important;
}
.site-header {
  /* Active page */
}
.site-header .current-menu-item > .nav-link,
.site-header .current-menu-ancestor > .nav-link,
.site-header .current_page_item > .nav-link,
.site-header .current_page_ancestor > .nav-link {
  color: #2563eb !important;
}

/* =========================================================
   DESKTOP (>= 992px): Floating dropdown + triangle + hover open
========================================================= */
@media (min-width: 992px) {
  .site-header .navbar-nav {
    /* Dropdown positioning */
  }
  .site-header .navbar-nav .dropdown-menu {
    position: absolute;
    top: calc(100% + 10px);
    /* centered under parent (your current style) */
    left: 50%;
    transform: translateX(-50%);
    min-width: 260px;
    padding: 18px 0;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
  }
  .site-header .navbar-nav {
    /* Popper override */
  }
  .site-header .navbar-nav .dropdown-menu[data-bs-popper] {
    left: 50% !important;
    transform: translateX(-50%) !important;
    top: calc(100% + 10px) !important;
  }
  .site-header .navbar-nav {
    /* Triangle pointer */
  }
  .site-header .navbar-nav .dropdown-menu::before {
    content: "";
    position: absolute;
    top: -9px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 9px solid transparent;
    border-right: 9px solid transparent;
    border-bottom: 9px solid rgba(0, 0, 0, 0.08);
    z-index: 2;
  }
  .site-header .navbar-nav .dropdown-menu::after {
    content: "";
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-bottom: 8px solid #fff;
    z-index: 3;
  }
  .site-header .navbar-nav {
    /* Hover bridge: prevents flicker when moving mouse down */
  }
  .site-header .navbar-nav .dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 14px;
  }
  .site-header .navbar-nav {
    /* Hover open and stay open */
  }
  .site-header .navbar-nav .dropdown:hover > .dropdown-menu {
    display: block;
  }
  .site-header .navbar-nav .dropdown-menu:hover {
    display: block;
  }
  .site-header .navbar-nav {
    /* Rotate chevron on hover-open */
  }
  .site-header .navbar-nav .dropdown:hover > .nav-link.dropdown-toggle::after {
    transform: rotate(180deg);
  }
  .site-header .navbar-nav {
    /* Disable click to toggle on desktop (prevents double-open) */
  }
  .site-header .navbar-nav .dropdown > .nav-link.dropdown-toggle {
    pointer-events: none;
  }
}
/* =========================================================
   MOBILE (< 992px): Bootstrap-like dropdown inside collapse
========================================================= */
@media (max-width: 991.98px) {
  .site-header .navbar-nav {
    /* Make dropdown a normal nested list (professional mobile look) */
  }
  .site-header .navbar-nav .dropdown-menu {
    position: static !important;
    left: auto !important;
    top: auto !important;
    transform: none !important;
    width: 100%;
    min-width: 0;
    margin: 0;
    padding: 6px 0;
    border: 0;
    border-radius: 10px;
    box-shadow: none;
    background: transparent;
  }
  .site-header .navbar-nav {
    /* Remove desktop triangle pointer */
  }
  .site-header .navbar-nav .dropdown-menu::before,
  .site-header .navbar-nav .dropdown-menu::after {
    display: none !important;
  }
  .site-header .navbar-nav {
    /* Mobile spacing */
  }
  .site-header .navbar-nav .nav-link {
    padding: 14px 18px;
  }
  .site-header .navbar-nav {
    /* Indented submenu items */
  }
  .site-header .navbar-nav .dropdown-item {
    padding: 10px 18px 10px 34px;
    font-size: 16px;
    color: #6c757d;
  }
  .site-header .navbar-nav {
    /* Separators between submenu items */
  }
  .site-header .navbar-nav .dropdown-item + .dropdown-item {
    border-top: 1px solid rgba(15, 23, 42, 0.08);
  }
  .site-header .navbar-nav {
    /* Current submenu underline on mobile (same as desktop) */
  }
  .site-header .navbar-nav .dropdown-menu .current-menu-item > .dropdown-item::after,
  .site-header .navbar-nav .dropdown-menu .current_page_item > .dropdown-item::after {
    left: 34px;
    right: 18px;
    bottom: 6px;
  }
}
.navbar .nav-link:focus,
.navbar .dropdown-toggle:focus {
  outline: none !important;
  box-shadow: none !important;
}

/* =========================================================
   992px–1199.98px: keep header layout stable (no wrap)
========================================================= */
@media (min-width: 992px) and (max-width: 1199.98px) {
  .site-header {
    /* Keep everything on one row */
  }
  .site-header .navbar {
    flex-wrap: nowrap !important;
    align-items: center;
  }
  .site-header {
    /* Let the collapse take remaining width, but keep centered */
  }
  .site-header #hoardingPrimaryMenu.navbar-collapse {
    flex: 1 1 auto !important;
    justify-content: center !important;
    min-width: 0; /* important for flex overflow behavior */
  }
  .site-header {
    /* Keep menu items in one line */
  }
  .site-header #hoardingPrimaryMenu .navbar-nav {
    flex-wrap: nowrap !important;
    white-space: nowrap !important;
    gap: 2px; /* optional small spacing control */
  }
  .site-header {
    /* Reduce link padding so it fits between 992–1199 */
  }
  .site-header #hoardingPrimaryMenu .nav-link {
    padding: 18px 12px !important; /* tighter than 22px 18px */
    font-size: 15px;
    white-space: nowrap !important;
  }
  .site-header {
    /* CTA block (your d-none d-lg-flex ...) */
  }
  .site-header .d-none.d-lg-flex.align-items-center.gap-2.ms-3 {
    flex: 0 0 auto;
    white-space: nowrap;
    gap: 10px !important;
    margin-left: 12px !important;
  }
  .site-header {
    /* Slightly smaller buttons in this range */
  }
  .site-header .d-none.d-lg-flex.align-items-center.gap-2.ms-3 .btn {
    padding: 10px 14px !important;
    font-size: 14px;
    white-space: nowrap;
  }
}
/* ==========================================
   HEADER LOGO FIX (Responsive)
========================================== */
.site-header .custom-logo-link {
  display: inline-flex;
  align-items: center;
  line-height: 0; /* remove extra inline spacing */
}

.site-header .custom-logo {
  display: block;
  width: auto !important;
  height: 56px !important; /* default logo height */
  max-height: 56px !important;
  max-width: 180px !important; /* prevents wide logos */
  -o-object-fit: contain;
     object-fit: contain;
}

/* Tablet */
@media (max-width: 991.98px) {
  .site-header .custom-logo {
    height: 48px !important;
    max-height: 48px !important;
    max-width: 160px !important;
  }
}
/* Mobile */
@media (max-width: 575.98px) {
  .site-header .custom-logo {
    height: 42px !important;
    max-height: 42px !important;
    max-width: 140px !important;
  }
}
/* =========================
   FOOTER BASE
========================= */
.site-footer {
  background: linear-gradient(180deg, #0b1220 0%, #0a1630 100%);
  color: rgba(255, 255, 255, 0.85);
}

.site-footer .container {
  padding-left: 24px;
  padding-right: 24px;
}

/* =========================
   TITLES
========================= */
.site-footer .footer-widget .widget-title,
.site-footer h5 {
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  margin: 0 0 14px 0;
}

/* =========================
   LIST RESET
========================= */
.site-footer ul,
.site-footer ol {
  list-style: none !important;
  padding-left: 0 !important;
  margin: 0 !important;
}

.site-footer .footer-widget li,
.site-footer .list-unstyled li {
  margin: 0 0 10px 0;
}

/* =========================
   LINKS
========================= */
.site-footer a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  transition: all 0.2s ease;
}

.site-footer a:hover,
.site-footer a:focus {
  color: #fff;
  text-decoration: none;
}

.site-footer .current-menu-item > a {
  color: #fff;
}

/* =========================
   MENUS
========================= */
.site-footer .menu {
  margin: 0;
  padding: 0;
}

.site-footer .menu li a {
  display: inline-block;
  line-height: 1.6;
}

/* =========================
   BRAND TEXT
========================= */
.site-footer .footer-description,
.site-footer p {
  color: rgba(255, 255, 255, 0.55);
}

.footer-brand-name {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
}

.footer-description {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 0;
}

/* =========================
   SOCIAL
========================= */
.site-footer .footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.2s ease;
}

.site-footer .footer-social a:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

/* =========================
   DIVIDER
========================= */
.site-footer hr {
  border-color: rgba(255, 255, 255, 0.12);
  opacity: 1;
}

/* =========================
   BOTTOM BAR
========================= */
.site-footer .footer-bottom a {
  color: rgba(255, 255, 255, 0.65);
}

.site-footer .footer-bottom a:hover {
  color: #fff;
}

/* =========================================
   < 992px => 2 COLUMN LAYOUT
   Row 1: Brand + Contact
   Row 2: Quick Links + Services
========================================= */
@media (max-width: 991.98px) {
  .site-footer {
    padding-top: 32px !important;
  }
  /* Make columns 2 per row */
  .site-footer .row.g-4.pb-4 > .col-12.col-lg-3 {
    flex: 0 0 50% !important;
    width: 50% !important;
  }
  /* ORDER to match:
     Row 1: Brand, Contact
     Row 2: Quick, Services
  */
  .site-footer .row.g-4.pb-4 > .col-12.col-lg-3:nth-child(1) {
    order: 1;
  } /* Brand */
  .site-footer .row.g-4.pb-4 > .col-12.col-lg-3:nth-child(4) {
    order: 2;
  } /* Contact */
  .site-footer .row.g-4.pb-4 > .col-12.col-lg-3:nth-child(2) {
    order: 3;
  } /* Quick Links */
  .site-footer .row.g-4.pb-4 > .col-12.col-lg-3:nth-child(3) {
    order: 4;
  } /* Services */
  /* Align content LEFT (looks best on 2-col) */
  .site-footer .footer-social {
    justify-content: flex-start !important;
  }
  /* Bottom centered */
  .site-footer .footer-bottom {
    text-align: center !important;
  }
  .site-footer .footer-bottom .list-inline {
    padding-left: 0 !important;
    margin: 10px 0 0 !important;
  }
  .site-footer .footer-bottom .list-inline-item {
    margin: 0 10px !important;
  }
}
/* =========================================
   <= 567px => 1 COLUMN + CENTERED
========================================= */
@media (max-width: 567.98px) {
  /* All footer columns full width */
  .site-footer .row.g-4.pb-4 > .col-12.col-lg-3 {
    flex: 0 0 100% !important;
    width: 100% !important;
  }
  /* Center text in all columns */
  .site-footer .row.g-4.pb-4 > .col-12.col-lg-3 {
    text-align: center !important;
  }
  /* Center brand row (logo + name) */
  .site-footer .row.g-4.pb-4 > .col-12.col-lg-3:nth-child(1) .d-flex.align-items-center {
    justify-content: center !important;
  }
  /* Center social icons */
  .site-footer .footer-social {
    justify-content: center !important;
  }
  /* Make menu items feel centered nicely */
  .site-footer .menu li a {
    display: inline-block;
  }
  /* Bottom bar centered (already, but keep safe) */
  .site-footer .footer-bottom {
    text-align: center !important;
  }
  .site-footer .footer-bottom .list-inline-item {
    margin: 0 10px !important;
  }
  .wp-block-social-links {
    justify-content: center !important;
  }
}
/* =========================================
   FOOTER BOTTOM LINKS — FIGMA STYLE
========================================= */
/* Make bottom bar layout match figma */
.site-footer .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

/* Left copyright stays left */
.site-footer .footer-copyright {
  margin: 0;
}

/* Right side container */
.site-footer .footer-bottom-links {
  margin-left: auto;
}

/* Works for BOTH: wp_nav_menu and widget menu */
.site-footer .footer-bottom-links ul,
.site-footer .footer-bottom-menu,
.site-footer .footer-bottom-widget ul {
  display: flex !important;
  align-items: center;
  gap: 22px;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

/* Remove li spacing that may create vertical gaps */
.site-footer .footer-bottom-links li,
.site-footer .footer-bottom-menu li,
.site-footer .footer-bottom-widget li {
  margin: 0 !important;
  padding: 0 !important;
}

/* Link style */
.site-footer .footer-bottom-links a,
.site-footer .footer-bottom-menu a,
.site-footer .footer-bottom-widget a {
  color: rgba(255, 255, 255, 0.7) !important;
  text-decoration: none !important;
  font-size: 14px;
  line-height: 1;
  white-space: nowrap;
}

.site-footer .footer-bottom-links a:hover,
.site-footer .footer-bottom-menu a:hover,
.site-footer .footer-bottom-widget a:hover {
  color: #fff !important;
}

/* Optional divider " | " like figma */
.site-footer .footer-bottom-links li + li::before,
.site-footer .footer-bottom-menu li + li::before,
.site-footer .footer-bottom-widget li + li::before {
  content: "|";
  color: rgba(255, 255, 255, 0.25);
  margin-right: 22px;
}

/* =========================================
   MOBILE: Stack + Center
========================================= */
@media (max-width: 567.98px) {
  .site-footer .footer-bottom {
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  .site-footer .footer-bottom-links {
    margin-left: 0;
  }
  .site-footer .footer-bottom-links ul,
  .site-footer .footer-bottom-menu,
  .site-footer .footer-bottom-widget ul {
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
  }
  /* Smaller spacing for the "|" divider on mobile */
  .site-footer .footer-bottom-links li + li::before,
  .site-footer .footer-bottom-menu li + li::before,
  .site-footer .footer-bottom-widget li + li::before {
    margin-right: 14px;
  }
}
.footer-badge {
  background-color: #155DFC;
  padding: 12px;
  border-radius: 10px;
}

/* =========================
   FIX: Widget Social Icons (WP Social Links block)
========================= */
.site-footer .wp-block-social-links {
  gap: 10px;
}

.site-footer .wp-block-social-links .wp-social-link a {
  width: 38px !important;
  height: 38px !important;
  border-radius: 8px !important;
  background: rgba(255, 255, 255, 0.06) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
}

/* Make the icon itself white (some themes force black via SVG fill) */
.site-footer .wp-block-social-links .wp-social-link svg {
  fill: rgba(255, 255, 255, 0.7) !important;
}

.site-footer .wp-block-social-links .wp-social-link:hover a {
  background: rgba(255, 255, 255, 0.12) !important;
}

.site-footer .wp-block-social-links .wp-social-link:hover svg {
  fill: #fff !important;
}

/* =========================
   FOOTER CONTACT ICON LIST
========================= */
.site-footer .footer-contact-list {
  margin: 0;
  padding: 0;
}

.site-footer .footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.site-footer .footer-contact-icon {
  flex: 0 0 24px;
  width: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #4ea1ff;
  font-size: 22px;
  line-height: 1;
  margin-top: 2px;
}

.site-footer .footer-contact-content {
  flex: 1 1 auto;
}

.site-footer .footer-contact-content a {
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.site-footer .footer-contact-content a:hover {
  color: #fff;
}

/* alignment support */
.site-footer .footer-contact-item.justify-center {
  justify-content: center;
}

.site-footer .footer-contact-item.justify-end {
  justify-content: flex-end;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 14px;
}

.footer-contact-icon {
  font-size: 22px;
  color: #4ea1ff;
  flex-shrink: 0;
}

.footer-contact-text {
  line-height: 1.5;
}

@media (max-width: 567.98px) {
  .footer-contact-list {
    text-align: center;
  }
  .footer-contact-item {
    justify-content: center;
  }
}
/* Hide titles when Hide Title checkbox is enabled */
.hc-hide-title .entry-title,
.hc-hide-title .page-title,
.hc-hide-title .elementor-widget-theme-post-title,
.hc-hide-title .elementor-widget-post-title,
.hc-hide-title .elementor-page-title {
  display: none !important;
}

.hc-page-hero {
  padding: 70px 0 35px;
  text-align: center;
  background: #f8f9fb;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.hc-page-title {
  font-size: 42px;
  font-weight: 700;
  line-height: 1.15;
  margin: 0;
  color: #111;
  display: inline-block;
  position: relative;
}

.hc-page-title::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  margin: 16px auto 0;
  border-radius: 3px;
  background: #155DFC;
}

.hc-page-content .entry-content {
  max-width: 1320px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.75;
  color: #444;
}

/* Make Gutenberg content match Bootstrap container width */
.hc-page-content .entry-content > * {
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0px;
  padding-right: 0px;
}

/* Wide blocks slightly wider (optional) */
.hc-page-content .entry-content > .alignwide {
  max-width: 1320px; /* bootstrap container-xl */
}

/* Full blocks truly full width */
.hc-page-content .entry-content > .alignfull {
  max-width: none;
  width: 100vw;
  margin-left: 50%;
  transform: translateX(-50%);
  padding-left: 0;
  padding-right: 0;
}

.hc-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.hc-testimonial-slider {
  position: relative;
  padding-bottom: 42px;
}

.hc-testimonial-slider .swiper-slide {
  height: auto;
}

.hc-testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  min-height: 260px;
  border-radius: 16px;
  background: #fff;
  padding: 28px;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
}

.hc-testimonial-card__stars {
  margin-bottom: 18px;
  font-size: 22px;
  line-height: 1;
  letter-spacing: 2px;
  color: #ff9800;
}

.hc-testimonial-card__quote {
  margin-bottom: 20px;
  color: #374b63;
  font-size: 20px;
  line-height: 1.75;
  font-style: italic;
}

.hc-testimonial-card__meta {
  margin-top: auto;
}

.hc-testimonial-card__name {
  margin-bottom: 4px;
  color: #0b4e81;
  font-size: 22px;
  line-height: 1.2;
  font-weight: 700;
}

.hc-testimonial-card__location {
  color: #6b7280;
  font-size: 16px;
  line-height: 1.4;
}

.hc-testimonial-slider .swiper-pagination {
  position: static;
  margin-top: 18px;
  text-align: center;
}

.hc-testimonial-slider .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  opacity: 1;
  background: #bfc7cf;
}

.hc-testimonial-slider .swiper-pagination-bullet-active {
  background: #55c3e6;
}

.hc-swiper-button {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  z-index: 3;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #0b4e81;
}

.hc-swiper-button-prev {
  left: -16px;
}

.hc-swiper-button-next {
  right: -16px;
}

.hc-swiper-button span {
  font-size: 18px;
  line-height: 1;
}

@media (max-width: 1024px) {
  .hc-testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .hc-testimonial-card__quote {
    font-size: 18px;
  }
  .hc-testimonial-card__name {
    font-size: 20px;
  }
}
@media (max-width: 767px) {
  .hc-testimonial-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .hc-testimonial-card {
    min-height: auto;
    padding: 22px;
  }
  .hc-testimonial-card__quote {
    font-size: 16px;
    line-height: 1.7;
  }
  .hc-testimonial-card__name {
    font-size: 18px;
  }
  .hc-swiper-button {
    display: none;
  }
}
/* ==============================
   SINGLE POST HERO STYLE
============================== */
.hc-post-hero {
  text-align: center;
}

/* Responsive */
@media (max-width: 991px) {
  .hc-post-title {
    font-size: 44px;
  }
}
@media (max-width: 576px) {
  .hc-post-title {
    font-size: 32px;
  }
}
/* ==========================================
   PAGINATION (Theme-wide)
========================================== */
.hc-pagination {
  display: flex;
  justify-content: center;
  padding: 40px 0;
}

.hc-pagination__list {
  list-style: none;
  display: flex;
  gap: 10px;
  margin: 0;
  padding: 0;
  align-items: center;
}

.hc-pagination__item a,
.hc-pagination__item span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 14px;
  border-radius: 10px;
  border: 1px solid rgba(15, 23, 42, 0.15);
  text-decoration: none;
  font-weight: 600;
  line-height: 1;
  background: #fff;
  color: #0f172a;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

/* Active page */
.hc-pagination__item.is-active span,
.hc-pagination__item .current {
  background: #2563eb;
  border-color: #2563eb;
  color: #fff;
}

/* Hover */
.hc-pagination__item a:hover {
  border-color: #2563eb;
  color: #2563eb;
}

/* Disabled prev/next */
.hc-pagination__item span.dots {
  border: 0;
  min-width: auto;
  padding: 0 6px;
  background: transparent;
}

/* Make arrow buttons square */
.hc-pagination__item:first-child a,
.hc-pagination__item:last-child a {
  width: 44px;
  padding: 0;
}

/* Ensure SVG is centered */
.hc-pagination__item svg {
  width: 20px;
  height: 20px;
  display: block;
  transform: translateX(0.5px); /* optical centering */
}

/* ==========================================
   BLOG / ARCHIVE (ALL POSTS PAGE)
========================================== */
/* home page css */
.hc-archive-title {
  font-size: 34px;
  font-weight: 800;
  margin: 0 0 6px;
  color: #0f172a;
}

.hc-archive-desc {
  color: #64748b;
  font-size: 15px;
  line-height: 1.6;
  max-width: 70ch;
}

/* Card */
.hc-card {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hc-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.1);
}

.hc-card__thumb img {
  display: block;
  aspect-ratio: 16/10;
  -o-object-fit: cover;
     object-fit: cover;
}

.hc-card__thumb--placeholder {
  aspect-ratio: 16/10;
  background: rgba(15, 23, 42, 0.06);
}

.hc-card__body {
  padding: 18px 18px 16px;
}

.hc-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: #64748b;
  margin-bottom: 10px;
}

.hc-card__dot {
  color: rgba(15, 23, 42, 0.25);
}

.hc-card__title {
  font-size: 18px;
  font-weight: 800;
  line-height: 1.3;
  margin: 0 0 10px;
}
.hc-card__title a {
  color: #0f172a;
  text-decoration: none;
}
.hc-card__title a:hover {
  color: #2563eb;
}

.hc-card__excerpt {
  margin: 0 0 14px;
  color: #334155;
  line-height: 1.7;
  font-size: 15px;
}

.hc-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.hc-card__cats a {
  color: #64748b;
  text-decoration: none;
  font-size: 13px;
}
.hc-card__cats a:hover {
  color: #2563eb;
}

.hc-card__more {
  font-weight: 700;
  color: #2563eb;
  text-decoration: none;
}
.hc-card__more:hover {
  text-decoration: underline;
}

/* ==========================================
   404 PAGE
========================================== */
.hc-404 {
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hc-404__title {
  font-size: 96px;
  font-weight: 800;
  color: #2563eb;
  margin: 0;
}

.hc-404__subtitle {
  font-size: 28px;
  font-weight: 700;
  margin: 15px 0;
  color: #0f172a;
}

.hc-404__text {
  max-width: 520px;
  margin: 0 auto 25px;
  color: #64748b;
  font-size: 16px;
  line-height: 1.6;
}

.hc-404__btn {
  padding: 12px 28px;
  font-weight: 600;
}

.hc-cps-panel {
  display: none;
}

.hc-cps-panel.is-active {
  display: block;
}

.hc-cps-card {
  padding: 24px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 4px 6px -4px rgba(0, 0, 0, 0.1), 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

.hc-cps-image {
  margin-bottom: 20px;
}

.hc-cps-image img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.hc-cps-title {
  margin: 0 0 12px;
  font-size: 28px;
  line-height: 1.2;
  color: #1f2937;
}

.hc-cps-description {
  color: #4b5563;
}

.hc-cps-actions {
  margin-top: 20px;
}

.hc-cps-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 10px;
  background: #2563eb;
  color: #fff;
  text-decoration: none;
}

.hc-cps-nav-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
  flex-wrap: wrap;
}

.hc-cps-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hc-cps-btn {
  width: 72px;
  height: 72px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #d1d5db;
  border-radius: 12px;
  background: #fff;
  color: #1f2937;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  transition: all 0.2s ease;
}

.hc-cps-btn.is-active {
  background: #2563eb;
  color: #fff;
  border-color: #2563eb;
}

.hc-cps-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.hc-cps-btn.is-ellipsis {
  pointer-events: none;
  cursor: default;
}

.hc-cps-btn--arrow {
  font-size: 28px;
  color: #b8c1cc;
}

@media (max-width: 767px) {
  .hc-cps-btn {
    width: 52px;
    height: 52px;
    font-size: 18px;
  }
  .hc-cps-btn--arrow {
    font-size: 22px;
  }
}/*# sourceMappingURL=hoarding-style.css.map */