body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif!important;
}
/* ==========================================================================
   HEADER STYLES (Wongaburra Floating Header)
   ========================================================================== */

.wgb-site-header {
  position: fixed;               /* Pins the layout safely to the viewport viewport viewport */
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  z-index: 2000;                 /* Places header above interactive graphic meshes and shapes */
  background: transparent;       /* Keeps background elements visible through side margins */
  pointer-events: none;          /* Keeps elements under the side gaps clickable */
}

.wgb-header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgba(255, 255, 255, 0.94); /* Smooth premium frosted overlay matching design specs */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  width: 100%;
  max-width: 1280px;
  max-height:70px;
  padding: 12px 32px;
  border-radius: 50px; 
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative;            /* Anchor point for mobile drop shadow alignment */
  pointer-events: auto;          /* Restores normal cursor tracking inside the header menu */
}
/* Isolated Content Structural Margins */
main#wgb-homepage-master-content {
    padding-top: 120px !important; /* Pushes content down cleanly away from the floating pill panel */
}

@media (max-width: 992px) {
    main#wgb-homepage-master-content {
        padding-top: 100px !important; /* Balanced structural safety padding for tablets and mobile viewports */
    }
}

.wgb-header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #ffffff;
  width: 100%;
  max-width: 1280px;
  padding: 12px 32px;
  border-radius: 50px; 
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  position: relative; /* Anchor point for mobile drop shadow alignment */
}

.wgb-logo-anchor {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.wgb-logo-anchor img{
    width:230px;
}
@media(max-width:1020px){
    .wgb-logo-anchor img{
    width:150px;
}
}
.wgb-logo-heart-icon {
  width: 24px;
  height: 24px;
  stroke: #0d4220;
}

.wgb-logo-brand-text {
  font-family: inherit;
  font-size: 24px;
  font-weight: 700;
  color: #1e3a5f;
}

.wgb-nav-menu-list {
  display: flex;
  list-style: none;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.wgb-nav-item-link {
  font-family: inherit;
  text-decoration: none;
  color: #1e3a5f;
  font-weight: 600;
  font-size: 16px;
  position: relative;
  padding: 8px 0;
  transition: color 0.3s ease;
}

.wgb-nav-item-link:hover {
    color: #56c2f0;
}

/* Pop Underline Logic */
.wgb-nav-item-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: #56c2f0;
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.wgb-nav-item-link:hover::after,
.wgb-nav-item-link.wgb-active-pop::after {
  transform: scaleX(1);
}

.wgb-nav-item-link.wgb-active-pop {
  color: #56c2f0;
}

/* Continuous Glowing Button */
.wgb-btn-glow-find-care {
  font-family: inherit;
  display: inline-block;
  background: linear-gradient(135deg, #245d8c, #133c63);
  color: #ffffff;
  text-decoration: none;
  padding: 14px 36px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 0 0 0 rgba(26, 79, 124, 0.5);
  animation: wgb-ambient-pulsing 2s infinite;
  transition: transform 0.2s ease;
  white-space: nowrap;
}

.wgb-btn-glow-find-care:hover {
  transform: scale(1.03);
}

@keyframes wgb-ambient-pulsing {
  0% { box-shadow: 0 0 0 0 rgba(26, 79, 124, 0.6), 0 4px 10px rgba(0, 0, 0, 0.15); }
  70% { box-shadow: 0 0 0 12px rgba(26, 79, 124, 0), 0 4px 10px rgba(0, 0, 0, 0.15); }
  100% { box-shadow: 0 0 0 0 rgba(26, 79, 124, 0), 0 4px 10px rgba(0, 0, 0, 0.15); }
}

/* Hidden Hamburger by default on desktop viewports */
.wgb-mobile-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.wgb-mobile-toggle .wgb-bar {
  width: 100%;
  height: 3px;
  background-color: #1e3a5f;
  border-radius: 2px;
  transition: all 0.3s ease;
}


/* ==========================================
   SUBMENUS
========================================== */
.wgb-submenu-active {
    color: #55c4ff !important;
    font-weight: 700;
    background: rgba(148, 204, 254, 0.15);
    border-radius: 8px;
}
.wgb-submenu li a.wgb-submenu-active {
    color: #55c4ff !important;
    font-weight: 700;
}
.wgb-has-submenu{
    position:relative;
}

.wgb-menu-link-wrap{
    display:flex;
    align-items:center;
    gap:4px;
}

.wgb-submenu-toggle{
    background:none;
    border:none;
    cursor:pointer;
    font-size:12px;
    color:#173957;
    padding:0;
    display:none;
}

.wgb-submenu{
    position:absolute;
    top:calc(100% + 15px);
    left:50%;
    transform:translateX(-50%) translateY(10px);

    min-width:260px;

    background:#ffffff;
    border-radius:18px;

    padding:12px 0;
    margin:0;
    list-style:none;

    box-shadow:0 20px 50px rgba(0,0,0,.12);

    opacity:0;
    visibility:hidden;

    transition:all .25s ease;
    z-index:9999;
}

.wgb-submenu li{
    margin:0;
}

.wgb-submenu li a{
    display:block;
    padding:12px 18px;
    color:#173957;
    text-decoration:none;
    font-size:15px;
    transition:.2s;
}

.wgb-submenu li a:hover{
    background:#f4f7fa;
}

@media(min-width:992px){

    .wgb-has-submenu:hover .wgb-submenu{
        opacity:1;
        visibility:visible;
        transform:translateX(-50%) translateY(0);
    }

}

.wgb-menu-list-item{
    display:flex;
    align-items:center;
}
.wgb-menu-link-wrap{
    display:flex;
    align-items:center;
    gap:4px;
    height:100%;
}
.wgb-menu-link-wrap{
    line-height:1;
}
/* ==========================================
   MOBILE
========================================== */

@media(max-width:991px){

    .wgb-submenu-toggle{
        display:block;
    }

    .wgb-menu-link-wrap{
        justify-content:space-between;
        width:100%;
    }

    .wgb-submenu{
        position:static;
        opacity:1;
        visibility:visible;
        transform:none;
        box-shadow:none;
        border-radius:0;
        display:none;
        background:transparent;
        padding-left:15px;
        min-width:auto;
    }

    .wgb-submenu.wgb-open{
        display:block;
    }

    .wgb-submenu li a{
        padding:10px 0;
    }
}
/* ==========================================================================
   RESPONSIVE MEDIA QUERIES (Tablet & Mobile Setup)
   ========================================================================== */

@media (max-width: 992px) {
  .wgb-site-header {
    padding: 12px;
  }

  .wgb-header-container {
    padding: 14px 24px;
    border-radius: 35px; /* Slightly tighter rounding to scale with space */
  }

  /* Show the mobile toggle button */
  .wgb-mobile-toggle {
    display: flex;
  }

  /* Turn hamburger into 'X' when open */
  .wgb-toggle-active .wgb-bar:nth-child(1) {
    transform: translateY(7.5px) rotate(45deg);
  }
  .wgb-toggle-active .wgb-bar:nth-child(2) {
    opacity: 0;
  }
  .wgb-toggle-active .wgb-bar:nth-child(3) {
    transform: translateY(-7.5px) rotate(-45deg);
  }

  /* Structural transformation for dynamic navigation card drop down */
  .wgb-main-navigation-bar {
    position: absolute;
    top: 110%;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    border-radius: 24px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-in-out, padding 0.35s ease;
    z-index: 1000;
    padding: 0 24px;
    box-sizing: border-box;
  }

  /* Vertical Alignment for items inside mobile dropdown */
  .wgb-nav-menu-list {
    flex-direction: column;
    gap: 16px;
    padding: 16px 0;
    text-align: center;
  }

  .wgb-nav-item-link {
    display: block;
    width: 100%;
    font-size: 18px;
  }

  /* Modify the absolute pop underline to scale outwards globally on mobile selection */
  .wgb-nav-item-link::after {
    bottom: 0;
  }

  /* Handle structural placement of the CTA below navigation menu links inside mobile card drawer */
  .wgb-header-actions-area {
    position: absolute;
    top: calc(110% + 210px); /* Safely offsets below navigation array list heights */
    left: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-in-out, padding 0.35s ease;
    z-index: 1000;
    padding: 0 24px;
    box-sizing: border-box;
  }

  .wgb-header-actions-area .wgb-btn-glow-find-care {
    display: block;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 20px;
  }

  /* Reveal Classes activated via JavaScript */
  .wgb-main-navigation-bar.wgb-nav-active {
            max-height: 1000px;
        z-index: 999999;
    padding: 10px 24px;
    border-bottom: 1px solid rgba(0,0,0,0.03);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  .wgb-header-actions-area.wgb-nav-active {
    max-height: 100px;
    background-color: #ffffff;
    top: calc(110% + 205px); /* Matches seamlessly with standard alignment calculations */
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
}

@media (max-width: 576px) {
  /* Tighter sizing constraints specific to smart mobile phones */
  .wgb-logo-brand-text {
    font-size: 19px;
  }
  
  .wgb-header-container {
    padding: 12px 18px;
  }
}

/*Homepage css*/
/* ==========================================================================
   3. PAGES & BODY CONTENT STYLES - HERO SECTION
   ========================================================================== */
.service-card-btn-3:hover{
    color:#000;
}
/* Main Section Wrapper & Gradient BG from Design */
.wgb-hero-section {
  width: 100%;
  padding: 60px 20px 100px 20px;
  box-sizing: border-box;
  background: radial-gradient(circle at 85% 15%, #e1effa 0%, rgba(255,255,255,0) 50%),
              radial-gradient(circle at 10% 90%, #e6f4ea 0%, rgba(255,255,255,0) 40%);
  overflow: hidden;
}

.wgb-hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

/* Left Layout Content */
.wgb-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(26, 79, 124, 0.12);
  color: #1a4f7c;
  padding: 8px 18px;
  border-radius: 20px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 24px;
}

.wgb-badge-check-icon {
  color: #1a4f7c;
}

.wgb-hero-title {
  font-family: inherit;
  font-size: 64px;
  line-height: 1.1;
  font-weight: 700;
  color: #113354;
  margin: 0 0 24px 0;
  letter-spacing: -1.5px;
}

.wgb-highlight-green {
  color: #0c4220; /* Deep rich signature forest green */
  position: relative;
}

.wgb-hero-description {
  font-family: inherit;
  font-size: 18px;
  line-height: 1.6;
  color: #4a607a;
  margin: 0 0 40px 0;
  max-width: 580px;
}

/* Action CTAs Layout */
.wgb-hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.wgb-btn-primary {
  font-family: inherit;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background-color: #0c4220;
  color: #ffffff;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  box-shadow: 0 10px 20px rgba(12, 66, 32, 0.2);
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.wgb-btn-primary:hover {
  background-color: #082d16;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(12, 66, 32, 0.3);
}

.wgb-btn-arrow {
  transition: transform 0.3s ease;
}

.wgb-btn-primary:hover .wgb-btn-arrow {
  transform: translateX(4px);
}

.wgb-btn-secondary {
  font-family: inherit;
  display: inline-block;
  background-color: #ffffff;
  color: #1a4f7c;
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 16px;
  border: 1px solid rgba(26, 79, 124, 0.15);
  box-shadow: 0 4px 10px rgba(0,0,0,0.03);
  transition: all 0.3s ease;
}

.wgb-btn-secondary:hover {
  background-color: #f7faff;
  border-color: #1a4f7c;
  transform: translateY(-2px);
}

/* Right Column Graphic Composition Space */
.wgb-hero-graphic-container {
  position: relative;
  width: 100%;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Decorative dot grid background layout element */
.wgb-dot-matrix-back {
  position: absolute;
  bottom: 10px;
  right: -10px;
  width: 180px;
  height: 220px;
  background-image: radial-gradient(#cbd7e3 2px, transparent 2px);
  background-size: 16px 16px;
  opacity: 0.7;
  z-index: 1;
}

/* Dynamic Interactive Fluid Image Morphing System */
.wgb-image-morph-wrapper {
  position: relative;
  width: 440px;
  height: 480px;
  overflow: hidden;
  z-index: 2;
  box-shadow: 0 20px 40px rgba(17, 51, 84, 0.15);
  
  /* Starting Form Shape Profile from Image 1 */
  border-radius: 50% 50% 50% 50% / 45% 45% 55% 55%;
  transition: border-radius 0.6s cubic-bezier(0.25, 1, 0.5, 1), 
              box-shadow 0.6s ease;
}

.wgb-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  scale: 1.05;
  transition: scale 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Dynamic Interactive Floating Badge Panel */
.wgb-floating-stats-badge {
  position: absolute;
  bottom: 90px;
  left: 20px;
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 16px 24px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 15px 35px rgba(17, 51, 84, 0.12);
  z-index: 3;
  
  /* Initial placement variables */
  transform: translateX(0) translateY(0);
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1),
              box-shadow 0.6s ease;
}

.wgb-badge-star-circle {
  width: 42px;
  height: 42px;
  background-color: #032b13; /* Super crisp deep forest signature accent */
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wgb-badge-text-block {
  display: flex;
  flex-direction: column;
}

.wgb-badge-stat-number {
  font-family: inherit;
  font-size: 28px;
  font-weight: 700;
  color: #113354;
  line-height: 1;
}

.wgb-badge-stat-unit {
  font-size: 18px;
  font-weight: 600;
  color: #1a4f7c;
}

.wgb-badge-stat-label {
  font-family: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #627993;
  margin-top: 4px;
}


/* ==========================================================================
   TRIGGER HOVER ACTIONS (Triggers when hovering image container OR the component)
   ========================================================================== */

/* 1. Triggers graphic card wrapper changes */
.wgb-hero-graphic-container:hover .wgb-image-morph-wrapper {
  /* Dynamic Shape Morph Target value matching Image 2 */
  border-radius: 40% 60% 30% 70% / 60% 40% 60% 40%;
  box-shadow: 0 25px 50px rgba(17, 51, 84, 0.2);
}

/* Subtle graphic panning depth transition */
.wgb-hero-graphic-container:hover .wgb-hero-img {
  scale: 1.08;
}

/* 2. Triggers floating card badge slide shift outwards */
.wgb-hero-graphic-container:hover .wgb-floating-stats-badge {
  transform: translateX(-15px) translateY(5px);
  box-shadow: -10px 20px 40px rgba(17, 51, 84, 0.18);
}


/* ==========================================================================
   RESPONSIVE LAYOUT BREAKPOINTS
   ========================================================================== */

@media (max-width: 992px) {
  .wgb-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .wgb-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .wgb-hero-title {
    font-size: 46px;
  }
  
  .wgb-hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  
  .wgb-hero-graphic-container {
    height: 460px;
  }
  
  .wgb-image-morph-wrapper {
    width: 360px;
    height: 400px;
  }
}

@media (max-width: 576px) {
  .wgb-hero-title {
    font-size: 36px;
  }
  
  .wgb-hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }
  
  .wgb-btn-primary, .wgb-btn-secondary {
    display: flex;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
  }
  
  .wgb-image-morph-wrapper {
    width: 290px;
    height: 330px;
  }
  
  .wgb-floating-stats-badge {
    bottom: 40px;
    left: -5px;
    padding: 10px 16px;
  }
}
/*end*/

/*For homepage*/
/* ==========================================================================
   WONGABURRA (WGB) CORE SYSTEM CONFIGURATION & COMPONENT INTERACTIVES
   ========================================================================== */
@media(min-width:1020px){
p.wgb-service-expandable-content-p{
    font-size:20px!important;
}
/*Service card social*/
.wgb-service-card-social {
    position: relative;
    border: 1px solid rgba(255,255,255,0.15);
    background-image:
        linear-gradient(
            rgba(0, 0, 0, 0.45),
            rgba(0, 0, 0, 0.3)
        ),
        url('../Images/aged-care-service.webp');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.wgb-service-card-social::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.98) 0%,
        rgba(0, 0, 0, 0.85) 35%,
        rgba(0, 0, 0, 0.45) 65%,
        transparent 100%
    );
}
.wgb-service-card-social:hover::before {
    background: rgba(0, 0, 0, 0.9);
}

.wgb-service-card-social > * {
    position: relative;
    z-index: 2;
}
    .wgb-social-page .blob-anim-ss {
        animation: blobBounceSS 8s infinite ease-in-out alternate;
    }
    .wgb-social-page .blob-anim-ss-2 {
        animation: blobBounceSS 10s infinite ease-in-out alternate-reverse;
    }
    @keyframes blobBounceSS {
        0%, 100% { transform: translateY(0) scale(1); }
        50% { transform: translateY(-20px) scale(1.05); }
    }
    .wgb-social-page .blob-shape-ss {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
        transition: border-radius 2s ease-in-out;
    }
    .wgb-social-page .group:hover .blob-shape-ss {
        border-radius: 60% 40% 30% 70% / 50% 60% 40% 50%;
    }
    .wgb-social-page .glass-card-ss {
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.5);
    }
    .wgb-social-heading-white, .wgb-social-white-head{
        color:#fff;
    }
        @media (min-width: 1020px) {
    section.wgb-social-hero-section {
        padding-top: 160px;
    }
}
/*end*/

/*Service card domestic*/
.wgb-service-card-domestic {
    position: relative;
    border: 1px solid rgba(255,255,255,0.15);
    background-image:
        linear-gradient(
            rgba(0, 0, 0, 0.45),
            rgba(0, 0, 0, 0.3)
        ),
        url('../Images/domestic--support.png');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.wgb-service-card-domestic::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.98) 0%,
        rgba(0, 0, 0, 0.85) 35%,
        rgba(0, 0, 0, 0.45) 65%,
        transparent 100%
    );
}
.wgb-service-card-domestic:hover::before {
    background: rgba(0, 0, 0, 0.9);
}

.wgb-service-card-domestic > * {
    position: relative;
    z-index: 2;
}

/*end*/

/*Service card nursing support*/
.wgb-service-card-nursing {
    position: relative;
    border: 1px solid rgba(255,255,255,0.15);
    background-image:
        linear-gradient(
            rgba(0, 0, 0, 0.45),
            rgba(0, 0, 0, 0.3)
        ),
        url('../Images/nursing-service.webp');

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.wgb-service-card-nursing::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: linear-gradient(
        to top,
        rgba(0, 0, 0, 0.98) 0%,
        rgba(0, 0, 0, 0.85) 35%,
        rgba(0, 0, 0, 0.45) 65%,
        transparent 100%
    );
}

.wgb-service-card-nursing:hover::before {
    background: rgba(0, 0, 0, 0.9);
}

.wgb-service-card-nursing > * {
    position: relative;
    z-index: 2;
}

    .wgb-nursing-page .blob-anim-ns {
        animation: blobBounceNS 8s infinite ease-in-out alternate;
    }
    .wgb-nursing-page .blob-anim-ns-2 {
        animation: blobBounceNS 10s infinite ease-in-out alternate-reverse;
    }
    @keyframes blobBounceNS {
        0%, 100% { transform: translateY(0) scale(1); }
        50% { transform: translateY(-20px) scale(1.05); }
    }
    .wgb-nursing-page .blob-shape-ns {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
        transition: border-radius 2s ease-in-out;
    }
    .wgb-nursing-page .group:hover .blob-shape-ns {
        border-radius: 60% 40% 30% 70% / 50% 60% 40% 50%;
    }
    .wgb-nursing-page .glass-card-ns {
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.5);
    }
    @media (min-width: 1020px) {
    section.wgb-nursing-hero-section {
        padding-top: 160px;
    }
}
.wgb-nursing-heading-white, .wgb-nursing-white-head{
    color:#fff;
}
/*end*/

}
.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
    display: inline-block;
    vertical-align: middle;
}

/* Ambient Deep Layer Background Engine */
main#wgb-homepage-master-content {
    padding-top: 50px;
    /*background: radial-gradient(circle at 85% 15%, #e1effa 0%, rgba(255,255,255,0) 50%),*/
    /*            radial-gradient(circle at 10% 90%, #e6f4ea 0%, rgba(255,255,255,0) 40%);*/
    background:none;
    padding-bottom: 10px;
}

/* Vector Geometric Accent Matrices */
.wgb-vector-dots {
    background-image: radial-gradient(#24638f 2px, transparent 2px);
    background-size: 20px 20px;
}
.wgb-vector-dots-alt {
    background-image: radial-gradient(#00401c 2px, transparent 2px);
    background-size: 20px 20px;
}

/* ==========================================================================
   HERO GRAPHIC IMAGE ENGINE & MORPH PLACEMENTS
   ========================================================================== */

/* Fluid Core Mask Geometries */
.wgb-morph-blob-frame {
    border-radius: 50% 50% 50% 50% / 45% 45% 55% 55%;
    transition:
        border-radius 1.2s cubic-bezier(0.22, 1, 0.36, 1),
        transform 1.2s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 1.2s ease;
}

.wgb-hero-img {
    transform: scale(1.05);
    transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1) 0.1s;
    will-change: transform;
}

.wgb-floating-stats-badge {
    transition:
        transform 1s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 1s ease;
}

/* Hover */
.wgb-graphic-group:hover .wgb-morph-blob-frame {
    border-radius: 40% 60% 30% 70% / 60% 40% 60% 40%;
}

.wgb-graphic-group:hover .wgb-hero-img {
    transform: scale(1.09);
}

.wgb-graphic-group:hover .wgb-floating-stats-badge {
    transform: translateX(-12px) translateY(-5px);
    box-shadow: -10px 20px 40px rgba(17, 51, 84, 0.18);
}

/* ==========================================================================
   INTENT NAVIGATION MODULES (STICH COMPONENT COMPLIANT)
   ========================================================================== */

/* Enforces layout parity with design files */
a.group {
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), 
                box-shadow 0.4s ease, 
                background-color 0.3s ease;
}

a.group:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 20px 40px rgba(17, 51, 84, 0.08) !important;
}

/* Interactive Card Child Triggers */
a.group:hover .wgb-card-icon {
    transform: scale(1.12) rotate(4deg) !important;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15) !important;
}

a.group:hover .wgb-arrow {
    transform: translateX(6px) !important;
}

/* ==========================================================================
   SERVICES MATRIX ACCORDION ENGINES
   ========================================================================== */

.wgb-service-card {
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), 
                box-shadow 0.6s ease, 
                flex-grow 0.6s cubic-bezier(0.25, 1, 0.5, 1) !important;
}

.wgb-service-expandable-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.25, 1, 0.5, 1), 
                opacity 0.4s ease-in-out, 
                margin-top 0.4s ease !important;
}

/* Dynamic Interactive Desktop Layout (Min width 1024px) */
@media (min-width: 1024px) {
    .wgb-service-card:hover {
        transform: translateY(-6px) !important;
        box-shadow: 0 30px 60px -12px rgba(17, 51, 84, 0.28) !important;
    }

    .wgb-service-card:hover .wgb-service-expandable-content {
        max-height: 280px !important;
        opacity: 1 !important;
        margin-top: 1.25rem !important;
    }
}

/* Stable Fallback Viewport Layouts (Mobile/Tablets) */
@media (max-width: 1023px) {
    .wgb-service-expandable-content {
        max-height: 450px !important;
        opacity: 1 !important;
        margin-top: 1.25rem !important;
    }
}

/* ==========================================================================
   PATHWAY CARDS & BRAND ACCESSORIES STACK
   ========================================================================== */

/* Smooth Card Layer Elevators */
#wgb-pathways-section-block .rounded-\[32px\] {
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), 
                box-shadow 0.4s ease;
}

#wgb-pathways-section-block .rounded-\[32px\]:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(17, 51, 84, 0.08) !important;
}

/* Accessibility & Dynamic Button Micro Glows */
.wgb-btn-glow-pulse {
    animation: wgbPulseGlow 2.5s infinite;
}

@keyframes wgbPulseGlow {
    0% { box-shadow: 0 0 0 0 rgba(36, 99, 143, 0.4); }
    70% { box-shadow: 0 0 0 12px rgba(36, 99, 143, 0); }
    100% { box-shadow: 0 0 0 0 rgba(36, 99, 143, 0); }
}

/* ==========================================================================
   ORGANIC CANVAS BLOBS GLOBAL ANIMATION LOOPS
   ========================================================================== */

@keyframes wgbBlobBounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.04); }
}

.wgb-blob-anim { 
    animation: wgbBlobBounce 8s infinite ease-in-out alternate; 
}
.wgb-blob-anim-reverse { 
    animation: wgbBlobBounce 10s infinite ease-in-out alternate-reverse; 
}

/* Fluid responsive mapping for back layer canvas canvas layout */
#wgb-blob-top-left {
    top: -5%; left: -10%; width: 280px; height: 280px;
    background-color: rgba(148, 204, 254, 0.15); filter: blur(50px);
}
#wgb-blob-top-right {
    top: 25%; right: -15%; width: 320px; height: 320px;
    background-color: rgba(0, 64, 28, 0.1); filter: blur(60px);
}
#wgb-blob-bottom-left {
    bottom: -5%; left: 10%; width: 350px; height: 350px;
    background-color: rgba(36, 99, 143, 0.1); filter: blur(70px);
}

@media (min-width: 768px) {
    #wgb-blob-top-left { top: -8%; left: -5%; width: 450px; height: 450px; filter: blur(70px); }
    #wgb-blob-top-right { top: 20%; right: -8%; width: 500px; height: 500px; filter: blur(80px); }
    #wgb-blob-bottom-left { bottom: -8%; left: 15%; width: 550px; height: 550px; filter: blur(90px); }
}

@media (min-width: 1024px) {
    #wgb-blob-top-left { top: -10%; left: -5%; width: 600px; height: 600px; filter: blur(80px); }
    #wgb-blob-top-right { top: 20%; right: -10%; width: 700px; height: 700px; filter: blur(100px); }
    #wgb-blob-bottom-left { bottom: -10%; left: 20%; width: 800px; height: 800px; filter: blur(120px); }
}

/* Master Structural Fades */
@keyframes wgbFadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.wgb-fade-in-up { 
    animation: wgbFadeInUp 0.75s cubic-bezier(0.25, 1, 0.5, 1) forwards; 
    opacity: 0; 
}
.wgb-delay-100 { animation-delay: 100ms; }

/* ==========================================================================
   PATHWAY CARDS - STRUCTURAL FIXES & HOVER EFFECTS
   ========================================================================== */

.wgb-pathway-card {
    transition: transform 0.45s cubic-bezier(0.25, 0.8, 0.25, 1), 
                box-shadow 0.45s ease, 
                border-color 0.3s ease !important;
}

/* Elevate card depth and pull the subtle border highlight color forward */
.wgb-pathway-card:hover {
    transform: translateY(-8px) !important;
    box-shadow: 0 25px 50px -15px rgba(17, 51, 84, 0.12) !important;
    border-color: rgba(26, 79, 124, 0.3) !important;
}

/* Animate the soft decorative background blob down from the corner */
.wgb-pathway-card:hover .wgb-card-bg-blob {
    transform: translate(-20px, 20px) scale(1.8) !important;
}

/* Ensure high contrast crispness inside the text container blocks */
.wgb-pathway-card h3 {
    transition: color 0.3s ease;
}
.wgb-pathway-card:hover h3 {
    color: #0c4220; /* Brand signature highlight tint shift on title highlight */
}

h3.text-xl.font-black.text-primary-container.mb-2.mt-2 {
    font-size: 1.875rem!important;
    line-height: 2.25rem!important;
}
.leading-relaxed {
    line-height: 1.625!important;
    font-size: 1rem!important;
}
.service-card-btn{
    padding: 15px 35px!important;
}
.wgb-animate-service-card:hover {
    flex-grow: 1.5!important;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.2)!important;
}
/*end*/

/*Footer style*/
/* ==========================================================================
   WONGABURRA CUSTOM FOOTER STYLES
   ========================================================================== */
.wgb-site-footer {
  position: relative;
  background-color: #173957; /* Brand Primary Container */
  color: #ffffff;
  padding: 80px 24px 40px 24px;
  margin-top: 96px;
  overflow: hidden;
  font-family: inherit;
}

/* Ambient Graphic Blurs */
.wgb-footer-blur-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.15;
}
.wgb-blob-right {
  bottom: -50px;
  right: -50px;
  width: 350px;
  height: 350px;
  background-color: #24638f;
}
.wgb-blob-left {
  top: 40px;
  left: -50px;
  width: 280px;
  height: 280px;
  background-color: #00401c;
}

.wgb-footer-main-container {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

/* Structural Layout Grid mapping */
.wgb-footer-directory-grid {
  display: grid;
  grid-template-cols: 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-b: 1px solid rgba(255, 255, 255, 0.1);
}

@media (min-width: 768px) {
  .wgb-footer-directory-grid {
    grid-template-cols: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .wgb-footer-directory-grid {
    grid-template-cols: repeat(12, 1fr);
    gap: 32px;
  }
  .wgb-col-brand { grid-column: span 4; }
  .wgb-footer-col:nth-child(2) { grid-column: span 2; grid-column-start: 6; }
  .wgb-footer-col:nth-child(3) { grid-column: span 2; }
  .wgb-col-contact { grid-column: span 3; }
}

/* Typography & Internal Elements styling */
.wgb-footer-col-heading {
  color: #ffffff;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  tracking: 0.05em;
  margin: 0 0 20px 0;
}

.wgb-footer-logo-anchor {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 20px;
}

.wgb-footer-logo-icon-wrapper {
  width: 40px;
  height: 40px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.3s ease;
}

.wgb-footer-logo-anchor:hover .wgb-footer-logo-icon-wrapper {
  background-color: rgba(255, 255, 255, 0.18);
}

.wgb-footer-logo-svg {
  stroke: #ffffff;
}

.wgb-footer-brand-title {
  font-size: 24px;
  font-weight: 900;
  color: #ffffff;
}

.wgb-footer-brand-description {
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 16px 0;
  max-width: 340px;
}

.wgb-footer-indigenous-acknowledgement {
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
  line-height: 1.5;
  margin: 0;
  max-width: 320px;
}

/* Link Lists Elements */
.wgb-footer-links-list,
.wgb-footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.wgb-footer-links-list li {
  margin-bottom: 12px;
}

.wgb-footer-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.2s ease;
  display: inline-block;
}

.wgb-footer-link:hover {
  color: #94ccfe; /* Secondary container color pop highlight */
}

/* Contact List Layout */
.wgb-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  font-size: 15px;
  margin-bottom: 14px;
}

.wgb-footer-contact-item .material-symbols-outlined {
  color: #94ccfe;
  font-size: 20px;
}

.wgb-contact-link {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}

.wgb-contact-link:hover {
  color: #94ccfe;
}

/* Bottom Compliance Row Styling */
.wgb-footer-compliance-row {
  padding-top: 32px;
  margin-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
}

.wgb-footer-compliance-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.wgb-compliance-link {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.2s ease;
}

.wgb-compliance-link:hover {
  color: #ffffff;
}

@media (min-width: 640px) {
  .wgb-footer-compliance-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

/*Contact Page Style*/
  /* Forminator Premium Style Sheet Matching Theme Design Language */
  .wgb-forminator-custom-skin .forminator-label {
    color: rgba(255, 255, 255, 0.9) !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.05em !important;
    margin-bottom: 6px !important;
  }
  .wgb-forminator-custom-skin .forminator-input, 
  .wgb-forminator-custom-skin .forminator-textarea {
    background-color: rgba(255, 255, 255, 0.07) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 14px !important;
    color: #ffffff !important;
    padding: 12px 16px !important;
    transition: all 0.25s ease-in-out !important;
  }
  .wgb-forminator-custom-skin .forminator-input:focus, 
  .wgb-forminator-custom-skin .forminator-textarea:focus {
    background-color: rgba(255, 255, 255, 0.12) !important;
    border-color: #94ccfe !important;
    box-shadow: 0 0 0 4px rgba(148, 204, 254, 0.15) !important;
    outline: none !important;
  }
  .wgb-forminator-custom-skin .forminator-button-submit {
    background-color: #94ccfe !important;
    color: #173957 !important;
    font-weight: 800 !important;
    font-size: 15px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.03em !important;
    padding: 14px 28px !important;
    border-radius: 50px !important;
    border: none !important;
    width: 100% !important;
    transition: all 0.2s ease-in-out !important;
    cursor: pointer !important;
    box-shadow: 0 4px 12px rgba(148, 204, 254, 0.2) !important;
  }
  .wgb-forminator-custom-skin .forminator-button-submit:hover {
    background-color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.15) !important;
  }
  .wgb-contact-page-wrapper{
     font-family: inherit;
     background-color: #f8fafc; 
     padding: 150px 0 100px 0; 
  }
  @media(max-width:768px){
        .wgb-contact-page-wrapper{
     padding: 80px 0 100px 0; 
  }
  }
  .send-an-enquiry{
      color:#fff;
  }
/*end*/
/*END*/

/*Pricing Page CSS*/
  /* --- NATURAL SCROLL ENGINE CONFIGURATION --- */
  .wgb-pricing-hero-sec{
      padding-top:7rem!important;
  }
  @media(max-width:1020px){
      .wgb-pricing-hero-sec {
    padding-top: 4rem!important;
}
  }
  .container-pricing-page {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
  }

  .wgb-wrapper-pricing-page {
    padding-top: 160px;
    padding-bottom: 80px;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    /* FIX: Clips the decorative background shapes completely to stop horizontal scrolling */
    overflow-x: hidden !important; 
    overflow-y: visible !important;
  }

  /* --- FLUID DECORATIVE BACKDROPS (CSS ONLY) --- */
  .wgb-bg-blob-pricing-page {
    position: absolute;
    border-radius: 50%;
    mix-blend-mode: multiply;
    filter: blur(80px);
    pointer-events: none;
    z-index: 1;
  }
  .wgb-blob-top-left-pricing-page {
    top: -2%;
    left: -5%;
    width: 35vw;
    height: 35vw;
    max-width: 500px;
    max-height: 500px;
    background-color: rgba(23, 57, 87, 0.08);
  }
  .wgb-blob-mid-right-pricing-page {
    top: 25%;
    right: -10%; /* Secure containment boundary */
    width: 40vw;
    height: 40vw;
    max-width: 550px;
    max-height: 550px;
    background-color: rgba(36, 99, 143, 0.08);
  }
  .wgb-blob-bottom-left-pricing-page {
    bottom: 5%;
    left: 5%;
    width: 40vw;
    height: 40vw;
    max-width: 600px;
    max-height: 600px;
    background-color: rgba(0, 64, 28, 0.03);
  }

  /* --- CSS BACKGROUND PATTERNS --- */
  .wgb-bg-pattern-pricing-page {
    position: absolute;
    opacity: 0.12;
    pointer-events: none;
    z-index: 1;
  }
  .wgb-pattern-upper-pricing-page {
    top: 15%;
    left: 1%;
    width: 10rem;
    height: 10rem;
    background-image: radial-gradient(#24638f 1.5px, transparent 1.5px); 
    background-size: 18px 18px;
  }
  .wgb-pattern-lower-pricing-page {
    bottom: 15%;
    right: 1%;
    width: 12rem;
    height: 12rem;
    background-image: radial-gradient(#00401c 1.5px, transparent 1.5px); 
    background-size: 18px 18px;
  }

  /* --- STRUCTURAL LAYOUT COMPONENT MAPPING --- */
  .wgb-hero-section-pricing-page {
    margin-bottom: 60px;
  }
  .wgb-matrix-grid-pricing-page {
    margin-bottom: 70px;
  }
  .wgb-table-panel-pricing-page {
    margin-bottom: 60px;
  }
  .wgb-cta-banner-pricing-page {
    margin-bottom: 70px;
    background-color: #173957;
  }
  .wgb-faq-container-pricing-page {
    margin-bottom: 60px;
  }
  .wgb-footer-cta-block-pricing-page {
    border-top: 1px solid rgba(226, 232, 240, 0.6);
    padding-top: 60px;
    text-align: center;
  }

  /* --- BRAND PALETTE FOUNDATIONS --- */
  .wgb-main-title-pricing-page, .wgb-card-heading-pricing-page {
    color: #173957;
  }
  .wgb-badge-primary-pricing-page {
    background-color: rgba(23, 57, 87, 0.08); 
    color: #173957;
  }
  .wgb-badge-secondary-pricing-page {
    background-color: rgba(36, 99, 143, 0.08); 
    color: #24638f;
  }
  .wgb-btn-primary-pricing-page {
    background-color: #173957; 
    color: #ffffff;
  }
  .wgb-btn-secondary-pricing-page {
    background-color: #24638f;
    color: #ffffff;
  }
  .wgb-btn-accent-pricing-page {
    background-color: #94ccfe; 
    color: #173957;
  }
  .wgb-link-action-pricing-page {
    color: #24638f;
  }
  .wgb-pricing-table-pricing-page th {
    background-color: #173957;
  }

  /* --- CARDS & STRUCTURAL BOX BACKGROUNDS --- */
  .wgb-glow-secondary-pricing-page {
    background-color: rgba(148, 204, 254, 0.2);
  }
  .wgb-glow-tertiary-pricing-page {
    background-color: rgba(0, 64, 28, 0.05);
  }
  .wgb-glow-white-overlay-pricing-page {
    background-color: rgba(148, 204, 254, 0.15);
  }
  .wgb-list-box-blue-pricing-page {
    background-color: #f1f7fc;
  }
  .wgb-list-box-green-pricing-page {
    background-color: #f3f8f5;
  }

  /* --- INTERACTIVE ACCORDIONS --- */
  .wgb-accordion-group-pricing-page {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }
  .wgb-accordion-item-pricing-page {
    overflow: hidden;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
  }
  .wgb-accordion-summary-pricing-page::-webkit-details-marker {
    display: none;
  }
  .wgb-accordion-summary-pricing-page {
    list-style: none;
    color: #173957;
  }
  .wgb-accordion-item-pricing-page[open] {
    border-color: rgba(148, 204, 254, 0.5);
    box-shadow: 0 10px 25px rgba(23, 57, 87, 0.04);
  }
  .wgb-accordion-item-pricing-page[open] .wgb-accordion-icon-pricing-page {
    transform: rotate(180deg);
    color: #24638f;
  }
  .wgb-accordion-item-pricing-page[open] .wgb-accordion-content-pricing-page {
    animation: slideDownPricingPage 0.25s ease-out forwards;
  }

  @keyframes slideDownPricingPage {
    from {
      opacity: 0;
      transform: translateY(-4px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* --- TABLET MEDIAS ENGINE (768px - 1024px) --- */
  @media (min-width: 768px) and (max-width: 1024px) {
    .wgb-wrapper-pricing-page {
      padding-top: 40px;
      padding-bottom: 60px;
    }
    .wgb-matrix-grid-pricing-page {
      grid-template-columns: repeat(1, minmax(0, 1fr)) !important;
      gap: 28px;
      margin-bottom: 48px;
    }
    .wgb-card-panel-pricing-page {
      padding: 32px !important;
      width: 100% !important;
    }
    .wgb-table-panel-pricing-page {
      padding: 32px !important;
      margin-bottom: 48px;
    }
    .wgb-cta-banner-pricing-page {
      margin-bottom: 48px;
      padding: 36px !important;
    }
    .wgb-blob-top-left-pricing-page { left: -5%; width: 40vw; }
    .wgb-blob-mid-right-pricing-page { right: -5%; width: 45vw; }
  }

  /* --- SMARTPHONE MEDIAS ENGINE (0px - 767px) --- */
  @media (max-width: 767px) {
    .wgb-wrapper-pricing-page {
      padding-top: 32px;
      padding-bottom: 48px;
    }
    .wgb-hero-section-pricing-page {
      margin-bottom: 36px;
    }
    .wgb-matrix-grid-pricing-page {
      margin-bottom: 40px;
      gap: 20px;
    }
    .wgb-card-panel-pricing-page {
      padding: 20px !important;
    }
    .wgb-table-panel-pricing-page {
      padding: 16px !important;
      margin-bottom: 40px;
    }
    .wgb-cta-banner-pricing-page {
      padding: 24px 16px !important;
      margin-bottom: 40px;
    }
    .wgb-accordion-summary-pricing-page {
      padding: 14px !important;
    }
    .wgb-accordion-item-pricing-page[open] .wgb-accordion-content-pricing-page {
      padding: 0 14px 16px 14px !important;
    }
    .wgb-blob-top-left-pricing-page { left: -5%; width: 50vw; height: 50vw; }
    .wgb-blob-mid-right-pricing-page { right: -5%; width: 55vw; height: 55vw; }
  }
  @media(min-width:1080px){
  .how-care-pricing-work {
    height: 650px;
}
}
.sub-hero-text-pricing{
    color:#fff;
}

/* --- COHESIVE HERO CARD ARCHITECTURE --- */
  .wgb-hero-display-wrapper-pricing-page {
    margin-top: 20px;
  }

  .wgb-hero-glass-card-pricing-page {
    /* Uses a soft gradient overlay that blends into the background shapes */
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.75) 0%, rgba(248, 250, 252, 0.85) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 
      0 4px 6px -1px rgba(23, 57, 87, 0.02), 
      0 20px 40px -4px rgba(23, 57, 87, 0.04),
      inset 0 1px 0px 0px rgba(255, 255, 255, 0.8);
  }

  /* Internal ambient light to give it a premium depth */
  .wgb-hero-internal-glow-pricing-page {
    position: absolute;
    top: -50%;
    left: -20%;
    width: 80%;
    height: 140%;
    background: radial-gradient(circle, rgba(148, 204, 254, 0.12) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
  }

  /* Typography Layout Engine */
  .wgb-hero-title-architecture-pricing-page {
    font-family: inherit;
  }

  .wgb-title-main-focus-pricing-page {
    color: #173957;
    display: inline;
    font-size:45px;
    font-weight:600;
  }

  .wgb-title-sub-focus-pricing-page {
    color: #4a5d6e;
    font-size:45px;
    font-weight:800;
  }
.wgb-title-highlight-box-pricing-page {
    font-size: 45px;
    font-weight: 600;
    line-height: 50px;
}
  /* Styled dynamic contextual parameter container */
  .wgb-title-highlight-box-pricing-page {
    color: #173957;
    background: rgba(23, 57, 87, 0.03);
    border: 1px solid rgba(23, 57, 87, 0.06);
    display: inline-block;
    max-width: 100%;
    font-size: 0.9em;
  }

  .wgb-hero-pretitle-pricing-page {
    color: #24638f !important;
  }

  /* Responsive breakpoints for clean scaling down to small screens */
  @media (max-width: 767px) {
    .wgb-hero-glass-card-pricing-page {
      padding: 32px 20px !important;
      border-radius: 28px;
      background: rgba(255, 255, 255, 0.9);
    }
    .wgb-hero-title-architecture-pricing-page {
      font-size: 1.75rem !important;
      line-height: 1.3 !important;
    }
    .wgb-title-highlight-box-pricing-page {
      display: block;
      border: none;
      background: rgba(23, 57, 87, 0.04);
      padding: 10px !important;
      font-size: 0.85em;
    }
    .wgb-hero-display-wrapper-pricing-page {
      margin-bottom: 40px;
    }
  }
  h2.wgb-card-heading-home-page{
      font-size: 3rem!important;
      line-height: 1!important;
  }
  /* ===========================
   PRICING HERO V2
=========================== */
/* ========================================
   WGB PRICING PAGE
======================================== */

#wgb-pricing-page{
    position:relative;
    z-index:10;
}

/* Sections */

.wgb-pricing-hero-section,
.wgb-pricing-explainer-section,
.wgb-pricing-contributions-section,
.wgb-pricing-funding-section,
.wgb-pricing-flipbook-section,
.wgb-pricing-faq-section,
.wgb-pricing-cta-section{
    position:relative;
}

/* Animations */

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

@keyframes wgbPricingBlobBounce{
    0%,100%{
        transform:translateY(0) scale(1);
    }
    50%{
        transform:translateY(-20px) scale(1.05);
    }
}

@keyframes wgbPricingPulseGlow{
    0%{
        box-shadow:0 0 0 0 rgba(0,64,28,.4);
    }
    70%{
        box-shadow:0 0 0 15px rgba(0,64,28,0);
    }
    100%{
        box-shadow:0 0 0 0 rgba(0,64,28,0);
    }
}

/* Animation Helpers */

.wgb-pricing-fade-in{
    animation:wgbPricingFadeInUp .8s ease-out forwards;
    opacity:0;
}

.wgb-pricing-delay-100{
    animation-delay:100ms;
}

.wgb-pricing-delay-200{
    animation-delay:200ms;
}

.wgb-pricing-blob-anim{
    animation:wgbPricingBlobBounce 8s infinite ease-in-out alternate;
}

.wgb-pricing-blob-anim-alt{
    animation:wgbPricingBlobBounce 10s infinite ease-in-out alternate-reverse;
}

.wgb-pricing-pulse-shadow{
    animation:wgbPricingPulseGlow 2s infinite;
}

/* Blob Shape */

.wgb-pricing-blob-shape{
    border-radius:40% 60% 70% 30% / 40% 50% 60% 50%;
    transition:border-radius 2s ease-in-out;
}

.group:hover .wgb-pricing-blob-shape{
    border-radius:60% 40% 30% 70% / 50% 60% 40% 50%;
}

/* Buttons */

.wgb-pricing-btn-glow:hover{
    box-shadow:0 0 20px rgba(0,64,28,.4);
}

/* FAQ */

.wgb-pricing-faq-answer{
    max-height:0;
    overflow:hidden;
    opacity:0;
    transition:all .4s cubic-bezier(.4,0,.2,1);
}

input[type="checkbox"]:checked ~ .wgb-pricing-faq-answer{
    max-height:300px;
    opacity:1;
    padding-top:1rem;
    padding-bottom:2rem;
}

input[type="checkbox"]:checked ~ label .wgb-pricing-icon-rotate{
    transform:rotate(45deg);
}

.wgb-pricing-icon-rotate{
    transition:transform .3s ease;
}

/* Optional Page Spacing */

#wgb-pricing-page{
    padding-top:40px;
}

/* Mobile */

@media(max-width:1024px){

    .wgb-pricing-hero-section{
        overflow:hidden;
    }

}

@media(max-width:767px){

    #wgb-pricing-page{
        padding-top:20px;
    }

}
/* ========================================
   WGB PRICING PAGE SPACING
======================================== */
/* ========================================
   WGB PRICING SECTION SPACING
======================================== */

.wgb-pricing-section{
    position:relative;
    padding-top:100px;
    padding-bottom:100px;
}

.wgb-pricing-section:first-child{
    padding-top:0;
}

@media(max-width:1024px){

    .wgb-pricing-section{
        padding-top:80px;
        padding-bottom:80px;
    }

}

@media(max-width:767px){

    .wgb-pricing-section{
        padding-top:60px;
        padding-bottom:60px;
    }

}
/* ========================================
   WGB PRICING BUTTONS
======================================== */

.wgb-pricing-btn-primary{
    transition:all .3s ease;
}

.wgb-pricing-btn-primary:hover{
    background:#ffffff !important;
    color:#00401c !important;
    border-color:#00401c !important;
    transform:translateY(-2px);
}

/* Dark Buttons */

.wgb-pricing-btn-dark{
    transition:all .3s ease;
}

.wgb-pricing-btn-dark:hover{
    background:#94ccfe !important;
    color:#00233e !important;
    border-color:#94ccfe !important;
    transform:translateY(-2px);
}

/* Light Buttons */

.wgb-pricing-btn-light{
    transition:all .3s ease;
}

.wgb-pricing-btn-light:hover{
    background:#00401c !important;
    color:#ffffff !important;
    border-color:#00401c !important;
    transform:translateY(-2px);
}

/* CTA Buttons */

.wgb-pricing-btn-cta{
    transition:all .3s ease;
}

.wgb-pricing-btn-cta:hover{
    background:#ffffff !important;
    color:#00233e !important;
    transform:translateY(-2px);
}
.wgb-pricing-btn-primary,
.wgb-pricing-btn-dark,
.wgb-pricing-btn-light,
.wgb-pricing-btn-cta{
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.wgb-pricing-btn-primary:hover,
.wgb-pricing-btn-dark:hover,
.wgb-pricing-btn-light:hover,
.wgb-pricing-btn-cta:hover{
    box-shadow:0 18px 35px rgba(0,0,0,.15);
}
.final-cta-text-pricing, .payments-symbol-pricing{
    color:#fff;
}
/*pricing page END*/

/*About Us Page*/
.wgb-about-hero-section{
    position:relative;
    overflow:hidden;
    padding:120px 0;
}

.wgb-about-container{
    max-width:1280px;
    margin:0 auto;
    padding:0 30px;
    position:relative;
    z-index:2;
}

.wgb-about-hero-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:80px;
    align-items:center;
}

.wgb-about-hero-badge{
    display:inline-flex;
    align-items:center;
    padding:12px 20px;
    border-radius:50px;
    background:#eef5fb;
    color:#00233e;
    font-size:14px;
    font-weight:700;
    margin-bottom:25px;
}

.wgb-about-hero-title{
    font-size:64px;
    line-height:1.1;
    font-weight:800;
    color:#00233e;
    margin-bottom:30px;
}

.wgb-about-hero-title span{
    display:block;
    color:#24638f;
}

.wgb-about-hero-description{
    font-size:18px;
    line-height:1.8;
    color:#555;
    margin-bottom:40px;
}

.wgb-about-primary-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#00401c;
    color:#fff;
    padding:16px 32px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.wgb-about-primary-btn:hover{
    transform:translateY(-3px);
}

.wgb-about-hero-image-wrap{
    position:relative;
}

.wgb-about-hero-image{
    border-radius:40px;
    overflow:hidden;
    box-shadow:0 20px 60px rgba(0,0,0,.12);
}

.wgb-about-hero-image img{
    width:100%;
    display:block;
}

.wgb-about-hero-badge-card{
    position:absolute;
    left:-30px;
    bottom:-30px;
    background:#fff;
    border-radius:25px;
    padding:20px;
    display:flex;
    gap:15px;
    align-items:center;
    box-shadow:0 15px 40px rgba(0,0,0,.1);
}

.wgb-about-hero-badge-icon{
    width:60px;
    height:60px;
    border-radius:50%;
    background:#00401c;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:700;
}

.wgb-about-hero-years{
    font-size:30px;
    font-weight:800;
    color:#00233e;
}

.wgb-about-hero-years-label{
    font-size:13px;
    letter-spacing:1px;
    text-transform:uppercase;
}

.wgb-about-hero-bg-shape{
    position:absolute;
    border-radius:50%;
    filter:blur(120px);
    opacity:.15;
}

.wgb-about-hero-bg-shape-1{
    width:500px;
    height:500px;
    background:#24638f;
    left:-150px;
    top:-150px;
}

.wgb-about-hero-bg-shape-2{
    width:600px;
    height:600px;
    background:#00401c;
    right:-200px;
    top:100px;
}

@media(max-width:991px){

    .wgb-about-hero-grid{
        grid-template-columns:1fr;
        gap:50px;
    }

    .wgb-about-hero-title{
        font-size:48px;
    }

    .wgb-about-hero-image-wrap{
        order:-1;
    }
}

@media(max-width:767px){

    .wgb-about-hero-section{
        padding:80px 0;
    }

    .wgb-about-container{
        padding:0 20px;
    }

    .wgb-about-hero-title{
        font-size:38px;
    }

    .wgb-about-hero-badge-card{
        position:relative;
        left:auto;
        bottom:auto;
        margin-top:20px;
    }
}
/*END*/

/*About Us Page Custom Css*/
        /* --- GLOBAL & UTILITY RESET --- */
        .wgb-hc-html {
            scroll-behavior: smooth;
        }
        .wgb-hc-body {
            background-color: #f7f9fb;
            color: #191c1e;
            font-family: inherit;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            -webkit-font-smoothing: antialiased;
        }
        .wgb-hc-body *, .wgb-hc-body *::before, .wgb-hc-body *::after {
            box-sizing: inherit;
        }
        .wgb-container {
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 64px;
        }
        @media (max-width: 768px) {
            .wgb-container { padding: 0 24px; }
        }

        .material-symbols-outlined {
            font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
            display: inline-block;
            vertical-align: middle;
        }

        /* --- KEYFRAMES & ANIMATIONS --- */
        @keyframes wgbBlobBounce {
            0%, 100% { transform: translateY(0) scale(1); }
            50% { transform: translateY(-20px) scale(1.05); }
        }
        .wgb-blob-anim { animation: wgbBlobBounce 8s infinite ease-in-out alternate; }
        .wgb-blob-anim-2 { animation: wgbBlobBounce 10s infinite ease-in-out alternate-reverse; }

        /* --- HEADER NAVIGATION --- */
        #wgb-hc-header {
            position: fixed;
            top: 16px;
            left: 50%;
            transform: translateX(-50%);
            width: calc(100% - 32px);
            max-width: 1280px;
            background: rgba(247, 249, 251, 0.8);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-radius: 9999px;
            box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
            border: 1px solid rgba(255, 255, 255, 0.2);
            display: flex;
            justify-content: space-between;
            items-center: center;
            align-items: center;
            padding: 12px 32px;
            z-index: 100;
        }
        .wgb-logo-area { display: flex; align-items: center; gap: 8px; }
        .wgb-logo-text { font-size: 24px; font-weight: 700; color: #00233e; tracking: -0.02em; margin: 0; }
        .wgb-nav-links { display: flex; align-items: center; gap: 32px; }
        @media (max-width: 768px) { .wgb-nav-links { display: none; } }
        .wgb-nav-item { font-size: 16px; color: #43474d; text-decoration: none; transition: all 0.3s; }
        .wgb-nav-item:hover { color: #00233e; }
        .wgb-nav-item.wgb-active { color: #24638f; font-weight: 700; border-b: 2px solid #24638f; padding-bottom: 2px; }
        .wgb-header-actions { display: flex; align-items: center; gap: 16px; }
        .wgb-search-btn { background: none; border: none; color: #43474d; cursor: pointer; transition: color 0.3s; }
        .wgb-search-btn:hover { color: #00233e; }
        .wgb-cta-btn { background-color: #00233e; color: #ffffff; padding: 8px 24px; border-radius: 9999px; border: none; font-weight: 600; font-size: 14px; cursor: pointer; transition: all 0.3s; }
        .wgb-cta-btn:hover { filter: brightness(1.2); }
        .wgb-cta-btn:active { transform: scale(0.95); }

        /* --- MAIN WRAPPER --- */
        .wgb-main-content { padding-top: 128px; position: relative; z-index: 10; }
@media(max-width:1020px){
            .wgb-main-content { padding-top: 40px; position: relative; z-index: 10; }
}
        /* --- SECTION 1: HERO --- */
        #wgb-hc-hero-section { padding: 40px 0 80px 0; position: relative; overflow: hidden; }
        .wgb-hero-bg { position: fixed; inset: 0; pointer-events: none; z-index: 0; overflow: hidden; }
        .wgb-bg-blob-1 { position: absolute; top: -10%; left: -5%; width: 600px; h-height: 600px; height: 600px; background: rgba(148, 204, 254, 0.1); border-radius: 50%; filter: blur(80px); }
        .wgb-bg-blob-2 { position: absolute; top: 20%; right: -10%; width: 700px; height: 700px; background: rgba(0, 64, 28, 0.1); border-radius: 50%; filter: blur(100px); }
        .wgb-hero-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 10; }
        @media (max-width: 1024px) { .wgb-hero-grid { grid-template-columns: 1fr; gap: 48px; text-align:left;} }
        .wgb-badge { inline-flex: center; display: inline-flex; align-items: center; gap: 8px; padding: 10px 20px; border-radius: 9999px; background: linear-gradient(to right, rgba(148, 204, 254, 0.3), rgba(36, 99, 143, 0.2)); color: #00233e; font-weight: 700; font-size: 14px; border: 1px solid rgba(148, 204, 254, 0.4); box-shadow: 0 1px 2px rgba(0,0,0,0.05); backdrop-filter: blur(4px); margin-bottom: 24px; }
        .wgb-hero-title { font-size: 48px; font-weight: 900; color: #00233e; line-height: 1.05; letter-spacing: -0.02em; margin: 0 0 24px 0; }
        @media (min-width: 768px) { .wgb-hero-title { font-size: 80px; } }
        .wgb-gradient-text { background: linear-gradient(to right, #24638f, #00401c); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
        .wgb-hero-desc { font-size: 18px; line-height: 28px; color: #43474d; margin-bottom: 32px; font-weight: 500; max-width: 560px; }
        .wgb-primary-action { background-color: #00401c; color: white; padding: 16px 32px; border-radius: 9999px; border: none; font-weight: 700; font-size: 16px; cursor: pointer; display: flex; align-items: center; gap: 12px; box-shadow: 0 8px 20px rgba(0, 64, 28, 0.3); transition: all 0.3s; }
        .wgb-primary-action:hover { box-shadow: 0 12px 25px rgba(0, 64, 28, 0.5); transform: translateY(-4px); }
        .wgb-primary-action:active { transform: scale(0.95) translateY(0); }
         
        .wgb-hero-visual-container { position: relative; height: 600px; }
        .wgb-blob-glow { position: absolute; inset: 0; background: linear-gradient(to bottom right, #94ccfe, #24638f); opacity: 0.3; filter: blur(24px); transition: transform 2s; }
        .wgb-hero-visual-container:hover .wgb-blob-glow { transform: scale(1.05); }
        .wgb-blob-shape { border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%; transition: border-radius 2s ease-in-out; }
        .wgb-hero-visual-container:hover .wgb-blob-shape { border-radius: 60% 40% 30% 70% / 50% 60% 40% 50%; }
        .wgb-hero-img-wrapper { position: absolute; inset: 16px; overflow: hidden; shadow: #ffffff; border-4 solid #fff; border: 4px solid rgba(255,255,255,0.5); box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); z-index: 10; background: #fff; }
        .wgb-hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform 2s ease-out; }
        .wgb-hero-visual-container:hover .wgb-hero-img { transform: scale(1.1); }
         
        .wgb-floating-badge { position: absolute; bottom: -24px; left: -24px; background: rgba(255,255,255,0.95); backdrop-filter: blur(8px); border-radius: 32px; padding: 24px; box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); border: 1px solid #fff; z-index: 20; display: flex; align-items: center; gap: 16px; transition: transform 0.5s; }
        .wgb-hero-visual-container:hover .wgb-floating-badge { transform: translateY(-8px); }
        .wgb-badge-icon-box { width: 64px; height: 64px; border-radius: 50%; background: linear-gradient(to bottom right, #00401c, #00210b); display: flex; align-items: center; justify-content: center; color: white; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1); }
        .wgb-badge-stat { font-size: 30px; font-weight: 900; color: #00233e; margin: 0; }
        .wgb-badge-label { font-size: 14px; font-weight: 700; color: #43474d; text-transform: uppercase; letter-spacing: 0.05em; margin: 0; }

        /* --- SECTION 2: TIMELINE --- */
        #wgb-hc-timeline-section { padding: 60px 0; background-color: #ffffff; position: relative; overflow: hidden; }
        .wgb-section-center-head { text-align: center; margin-bottom: 30px; }
        .wgb-section-title { font-size: 32px; font-weight: 700; color: #00233e; margin: 0 0 16px 0; }
        .wgb-title-bar { width: 96px; height: 6px; background-color: #24638f; margin: 0 auto; border-radius: 9999px; }
        .wgb-timeline-track { position: relative; padding: 48px 0; }
        .wgb-timeline-line { position: absolute; top: 50%; left: 0; width: 100%; height: 4px; background-color: #c3c7ce; transform: translateY(-50%); display: block; }
        @media (max-width: 768px) { .wgb-timeline-line { display: none; } }
        .wgb-timeline-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; position: relative; z-index: 10; }
        @media (max-width: 768px) { .wgb-timeline-grid { grid-template-columns: 1fr; gap: 48px; } }
        .wgb-timeline-card { background: white; padding: 32px; border-radius: 40px; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05); border-bottom: 8px solid #24638f; position: relative; transition: transform 0.3s; cursor: pointer; }
        .wgb-timeline-card:hover { transform: translateY(-8px); }
        .wgb-timeline-card.wgb-alt-card { border-bottom-color: #00401c; }
        @media (min-width: 769px) { .wgb-timeline-grid > div:nth-child(2) { transform: translateY(0px); } }
        .wgb-timeline-year { position: absolute; top: -24px; left: 32px; background-color: #24638f; color: white; font-weight: 700; padding: 8px 24px; border-radius: 9999px; font-size: 24px; }
        .wgb-timeline-card.wgb-alt-card .wgb-timeline-year { background-color: #00401c; }
        .wgb-card-title { font-size: 24px; font-weight: 600; color: #00233e; margin: 16px 0 16px 0; }
        .wgb-card-text { color: #43474d; font-size: 16px; line-height: 24px; margin: 0; }
        .wgb-timeline-action { background-color: #00401c; color: white; padding: 16px 40px; border-radius: 9999px; border: none; font-size: 14px; font-weight: 600; cursor: pointer; display: flex; align-items: center; gap: 8px; margin: 26px auto 0 auto; box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1); transition: transform 0.3s; }
        .wgb-timeline-action:hover { transform: scale(1.05); }

        /* --- SECTION 3: GOVERNANCE --- */
        #wgb-hc-governance-section { padding: 120px 0; background-color: #f7f9fb; position: relative; overflow: hidden; }
        .wgb-organic-blob-overlay { position: absolute; top: 0; right: 0; width: 33.333%; height: 100%; background: rgba(148, 204, 254, 0.1); border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; transform: translateX(25%); pointer-events: none; }
        .wgb-gov-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 64px; gap: 32px; flex-wrap: wrap; }
        .wgb-gov-desc { color: #43474d; max-width: 560px; margin: 16px 0 0 0; }
        .wgb-tab-switcher { display: flex; background-color: #e6e8ea; padding: 6px; border-radius: 16px; box-shadow: inset 0 2px 4px rgba(0,0,0,0.06); border: none; }
        .wgb-tab-btn { padding: 12px 32px; border-radius: 12px; border: none; background: none; color: #43474d; font-size: 14px; font-weight: 600; cursor: pointer; transition: all 0.3s; }
        .wgb-tab-btn.wgb-tab-active { background-color: white; color: #00233e; font-weight: 700; box-shadow: 0 4px 12px rgba(0,0,0,0.05); }
        .wgb-tab-btn:not(.wgb-tab-active):hover { background-color: rgba(255,255,255,0.5); }
        .wgb-dynamic-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
        @media (max-width: 1024px) { .wgb-dynamic-grid { grid-template-columns: repeat(2, 1fr); } }
        @media (max-width: 640px) { .wgb-dynamic-grid { grid-template-columns: 1fr; } }
         
        /* Dynamic Cards Styles */
        .wgb-member-card { background: white; border-radius: 40px; overflow: hidden; box-shadow: 0 10px 15px -3px rgba(0,0,0,0.05); border: 1px solid rgba(195, 199, 206, 0.5); transition: all 0.5s; }
        .wgb-member-card:hover { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15); }
        .wgb-member-img-area { position: relative; height: 288px; overflow: hidden; padding: 16px 16px 0 16px; }
        .wgb-member-img { width: 100%; height: 100%; object-fit: cover; border-radius: 24px; transition: transform 0.7s; }
        .wgb-member-card:hover .wgb-member-img { transform: scale(1.05); }
        .wgb-member-overlay { position: absolute; inset: 16px 16px 0 16px; background: linear-gradient(to top, rgba(0,35,62,0.1), transparent); opacity: 0; transition: opacity 0.3s; border-radius: 24px; }
        .wgb-member-card:hover .wgb-member-overlay { opacity: 1; }
        .wgb-member-info { padding: 32px; text-align: center; }
        .wgb-member-name { font-size: 20px; font-weight: 700; color: #00233e; margin: 0 0 4px 0; }
        .wgb-member-role { color: #24638f; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; margin: 0; }

        /* --- SECTION 4: CHECKLIST --- */
        #wgb-hc-checklist-section { padding: 120px 0; background-color: #173957; position: relative; overflow: hidden; }
        .wgb-checklist-bg-dots { position: absolute; inset: 0; opacity: 0.1; background-image: radial-gradient(circle at 20% 50%, white 1px, transparent 1px); background-size: 40px 40px; pointer-events: none; }
        .wgb-checklist-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; position: relative; z-index: 10; }
        @media (max-width: 1024px) { .wgb-checklist-grid { grid-template-columns: 1fr; gap: 48px; } }
        .wgb-checklist-display-lg { font-size: 48px; font-weight: 700; color: white; line-height: 56px; letter-spacing: -0.02em; margin: 0 0 24px 0; }
        .wgb-checklist-subtitle { color: #94ccfe; font-size: 18px; line-height: 28px; margin-bottom: 48px; }
        .wgb-checklist-action-btn { background-color: white; color: #00233e; padding: 16px 40px; border-radius: 12px; border: none; font-size: 14px; font-weight: 700; cursor: pointer; box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); transition: all 0.3s; }
        .wgb-checklist-action-btn:hover { background-color: #94ccfe; }
         
        .wgb-checklist-stack { display: flex; flex-direction: column; gap: 16px; }
        .wgb-checklist-item { background: rgba(255,255,255,0.1); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); padding: 24px; border-radius: 24px; display: flex; align-items: flex-start; gap: 16px; border: 1px solid rgba(255,255,255,0.2); transition: all 0.3s; cursor: pointer; }
        .wgb-checklist-item:hover { background: rgba(255,255,255,0.2); }
        .wgb-check-circle { width: 32px; height: 32px; border-radius: 50%; border: 2px solid #94ccfe; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: all 0.3s; }
        .wgb-check-circle span { color: #94ccfe; transform: scale(0); transition: all 0.3s; }
        .wgb-checklist-item-text { color: white; font-size: 16px; font-weight: 500; margin: 0; line-height: 24px; }
         
        /* Interactive Checklist States via JS */
        .wgb-checklist-item.wgb-checked { background: rgba(255,255,255,0.3); }
        .wgb-checklist-item.wgb-checked .wgb-check-circle { background-color: white; }
        .wgb-checklist-item.wgb-checked .wgb-check-circle span { transform: scale(1); }

        /* --- SECTION 5: MATRIX MULTI-CTA --- */
        #wgb-hc-matrix-section { padding: 60px 0; background-color: #f7f9fb; position: relative; overflow: hidden; }
        .wgb-matrix-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
        @media (max-width: 1024px) { .wgb-matrix-grid { grid-template-columns: repeat(3, 1fr); } }
        @media (max-width: 768px) { .wgb-matrix-grid { grid-template-columns: 1fr; } }
        .wgb-matrix-box { text-decoration: none; padding: 32px; border-radius: 32px; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 24px; transition: all 0.3s; position: relative; overflow: hidden; }
        .wgb-matrix-box:hover { box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25); transform: translateY(-8px); }
        .wgb-matrix-box.wgb-style-primary { background-color: #00233e; }
        .wgb-matrix-box.wgb-style-tertiary { background-color: #00401c; }
        .wgb-matrix-box.wgb-style-secondary { background-color: #24638f; }
         
        .wgb-matrix-blur-bg { position: absolute; top: -16px; right: -16px; width: 96px; height: 96px; background: rgba(255,255,255,0.05); border-radius: 50%; filter: blur(12px); transition: transform 0.3s; }
        .wgb-matrix-box:hover .wgb-matrix-blur-bg { transform: scale(1.5); }
        .wgb-matrix-icon-wrapper { width: 64px; height: 64px; border-radius: 16px; background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; color: white; margin-bottom: 8px; position: relative; z-index: 10; }
        .wgb-matrix-icon-wrapper span { font-size: 36px; }
        .wgb-matrix-box-label { font-weight: 700; color: white; position: relative; z-index: 10; font-size: 16px; }
        .wgb-matrix-arrow-btn { width: 40px; height: 40px; background: rgba(255,255,255,0.2); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; opacity: 0; transition: opacity 0.3s; border: none; }
        .wgb-matrix-box:hover .wgb-matrix-arrow-btn { opacity: 1; }

        /* --- SECTION 6: FAQ ACCORDION --- */
        #wgb-hc-faq-section { padding: 120px 0; background-color: #f2f4f6; position: relative; }
        .wgb-faq-max-width { max-width: 768px; margin: 0 auto; }
        .wgb-faq-stack { display: flex; flex-direction: column; gap: 16px; }
        .wgb-faq-item { background: white; border-radius: 24px; overflow: hidden; box-shadow: 0 1px 3px rgba(0,0,0,0.05); transition: all 0.3s; }
        .wgb-faq-item:hover { box-shadow: 0 4px 6px -1px rgba(0,0,0,0.07); }
        .wgb-faq-trigger { wgb-width: 100%; width: 100%; padding: 24px 32px; display: flex; justify-content: space-between; align-items: center; background: white; border: none; cursor: pointer; transition: background-color 0.3s; }
        .wgb-faq-trigger:hover { background-color: rgba(148, 204, 254, 0.1); }
        .wgb-faq-question { font-weight: 700; color: #00233e; text-align: left; font-size: 18px; margin: 0; }
        .wgb-faq-icon-holder { width: 40px; height: 40px; border-radius: 50%; background-color: rgba(148, 204, 254, 0.2); display: flex; align-items: center; justify-content: center; color: #00233e; transition: transform 0.3s; }
        .wgb-faq-drawer { height: 0; overflow: hidden; transition: all 0.3s ease-out; }
        .wgb-faq-answer { padding: 24px 32px; color: #43474d; font-size: 16px; line-height: 24px; }

        /* --- SECTION 7: FINAL CTA --- */
        #wgb-hc-cta-section { padding: 120px 0; position: relative; overflow: hidden; }
        .wgb-cta-solid-bg { position: absolute; inset: 0; background-color: #00233e; z-index: 0; }
        .wgb-cta-blob-overlay-1 { position: absolute; top: 0; right: 0; width: 66.666%; height: 100%; background: rgba(0, 64, 28, 0.2); border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; transform: translateX(25%); pointer-events: none; }
        .wgb-cta-blob-overlay-2 { position: absolute; bottom: 0; left: 0; width: 50%; height: 100%; background: rgba(36, 99, 143, 0.1); clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%); border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; transform: translateX(-25%); pointer-events: none; }
        .wgb-cta-inner { position: relative; z-index: 10; text-align: center; }
        .wgb-cta-display { font-size: 48px; font-weight: 700; color: white; margin: 0 0 24px 0; letter-spacing: -0.02em; }
        .wgb-cta-subtext { color: #94ccfe; font-size: 18px; margin-bottom: 48px; max-width: 672px; margin-left: auto; margin-right: auto; line-height: 28px; }
        .wgb-cta-btn-cluster { display: flex; flex-direction: column; justify-content: center; gap: 24px; }
        @media (min-width: 640px) { .wgb-cta-btn-cluster { flex-direction: row; } }
        .wgb-cluster-primary { background-color: #00401c; color: white; padding: 20px 40px; border-radius: 12px; border: none; font-size: 14px; font-weight: 700; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 12px; box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1); transition: all 0.3s; }
        .wgb-cluster-primary:hover { transform: scale(1.05); }
        .wgb-cluster-primary:active { transform: scale(0.95); }
        .wgb-cluster-secondary { background: rgba(255,255,255,0.1); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); color: white; border: 2px solid rgba(255,255,255,0.3); padding: 20px 40px; border-radius: 12px; font-size: 14px; font-weight: 600; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 12px; transition: all 0.3s; }
        .wgb-cluster-secondary:hover { background: rgba(255,255,255,0.2); }

        /* --- FOOTER --- */
        #wgb-hc-footer { background-color: #00233e; color: white; width: 100%; padding: 80px 0; border-top: 1px solid rgba(255,255,255,0.1); }
        .wgb-footer-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }
        @media (max-width: 768px) { .wgb-footer-grid { grid-template-columns: 1fr; gap: 48px; } }
        .wgb-footer-col-double { grid-column: span 2; }
        @media (max-width: 768px) { .wgb-footer-col-double { grid-column: span 1; } }
        .wgb-footer-brand-row { display: flex; align-items: center; gap: 8px; margin-bottom: 24px; }
        .wgb-footer-icon-shell { width: 40px; height: 40px; background-color: #00401c; border-radius: 12px; display: flex; align-items: center; justify-content: center; color: white; }
        .wgb-footer-brand-title { font-size: 24px; font-weight: 700; tracking: -0.02em; color: white; margin: 0; }
        .wgb-footer-pitch { color: rgba(255,255,255,0.7); font-size: 16px; line-height: 24px; margin: 0 0 32px 0; max-width: 384px; }
        .wgb-footer-head { font-weight: 700; font-size: 18px; margin: 0 0 24px 0; }
        .wgb-footer-list { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 16px; }
        .wgb-footer-link { color: rgba(255,255,255,0.7); text-decoration: none; transition: color 0.3s; font-size: 16px; }
        .wgb-footer-link:hover { color: white; }
        .wgb-contact-line { color: rgba(255,255,255,0.7); font-size: 16px; margin: 0 0 16px 0; display: flex; align-items: center; gap: 8px; }
        .wgb-contact-line:last-child { margin-bottom: 0; }
        .wgb-footer-baseline { margin-top: 64px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.1); text-align: center; }
        .wgb-copyright { color: rgba(255,255,255,0.5); font-size: 14px; margin: 0; }

.wgb-timeline-card.wgb-alt-card {
    height: 220px;
}
@media(min-width:1020px){
.wgb-faq-container-about-page {
    padding: 80px 50px;
}
}
/*END*/

/*Package Page Custom Code*/
        .wgb-hc-package-page-root-wrapper .material-symbols-outlined { 
            font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24; 
            display: inline-block;
            vertical-align: middle;
        }
        @keyframes wgbFadeInUp { 
            from { opacity: 0; transform: translateY(30px); } 
            to { opacity: 1; transform: translateY(0); } 
        }
        @keyframes wgbBlobBounce { 
            0%, 100% { transform: translateY(0) scale(1); } 
            50% { transform: translateY(-20px) scale(1.05); } 
        }
        @keyframes wgbPulseGlow { 
            0% { box-shadow: 0 0 0 0 rgba(23, 57, 87, 0.4); } 
            70% { box-shadow: 0 0 0 15px rgba(23, 57, 87, 0); } 
            100% { box-shadow: 0 0 0 0 rgba(23, 57, 87, 0); } 
        }
        
        .wgb-hc-fade-in-up { animation: wgbFadeInUp 0.8s ease-out forwards; opacity: 0; }
        .wgb-hc-delay-100 { animation-delay: 100ms; }
        .wgb-hc-delay-200 { animation-delay: 200ms; }
        
        .wgb-hc-blob-anim { animation: wgbBlobBounce 8s infinite ease-in-out alternate; }
        .wgb-hc-blob-anim-2 { animation: wgbBlobBounce 10s infinite ease-in-out alternate-reverse; }
        
        .wgb-hc-pulse-shadow { animation: wgbPulseGlow 2s infinite; }
        
        .wgb-hc-blob-shape { 
            border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
            transition: border-radius 2s ease-in-out;
        }
        .wgb-hc-image-group:hover .wgb-hc-blob-shape {
            border-radius: 60% 40% 30% 70% / 50% 60% 40% 50%;
        }
        .wgb-hc-dot-pattern {
            background-image: radial-gradient(#24638f 2px, transparent 2px);
            background-size: 20px 20px;
        }

        .wgb-hc-faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s ease;
            opacity: 0;
        }
        .wgb-hc-faq-checkbox:checked ~ .wgb-hc-faq-answer {
            max-height: 300px;
            opacity: 1;
        }
        .wgb-hc-faq-checkbox:checked ~ label .wgb-hc-icon-rotate {
            transform: rotate(45deg);
        }
        section.wgb-hc-package-page-section-4 {
    margin-bottom: 10px;
}
@media(max-width:1020px){
    .wgb-hc-package-page-main{
        padding-top:5rem!important;
    }
}
/*END*/

/*programs page custom css*/
    .program-pricing-btn:hover{
        color:#173957;
    }
       .wgb-hc-prog-page-wrapper .material-symbols-outlined { 
            font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24; 
            display: inline-block;
            vertical-align: middle;
        }
        
        /* Custom Animations */
        @keyframes wgbProgBlobBounce { 
            0%, 100% { transform: translateY(0) scale(1); } 
            50% { transform: translateY(-20px) scale(1.05); } 
        }
        
        .wgb-hc-prog-blob-anim { animation: wgbProgBlobBounce 8s infinite ease-in-out alternate; }
        .wgb-hc-prog-blob-anim-2 { animation: wgbProgBlobBounce 10s infinite ease-in-out alternate-reverse; }
        
        /* Decorative and Shape Mask Utilities */
        .wgb-hc-prog-blob-shape { 
            border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
            transition: border-radius 2s ease-in-out;
        }
        .wgb-hc-prog-image-group:hover .wgb-hc-prog-blob-shape {
            border-radius: 60% 40% 30% 70% / 50% 60% 40% 50%;
        }
        
        .wgb-hc-prog-liquid-shape {
            border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
        }
        
        .wgb-hc-prog-dot-pattern {
            background-image: radial-gradient(circle, #73777e 1px, transparent 1px);
            background-size: 24px 24px;
        }
@media(max-width:1020px){
    main.wgb-hc-prog-page-main {
    padding-top: 0px;
}
section.wgb-hc-prog-hero-section.w-full {
    padding-top: 80px;
}
}        

@media(min-width:1020px){
section.wgb-hc-prog-page-section-2 {
    padding: 80px 0;
}
section.wgb-hc-prog-page-section-3.wgb-hc-prog-detail-blocks {
    padding: 80px;
}
section.wgb-hc-prog-page-section-4.wgb-hc-prog-value-prop {
    padding: 80px 0;
}
section.wgb-hc-prog-page-section-5.wgb-hc-prog-steps {
    padding: 80px 50px;
}
section.wgb-hc-prog-hero-section.w-full {
    padding-top: 150px;
}
main.wgb-hc-prog-page-main {
    padding-top: 0px;
}
}
.wgb-hc-prog-page-section-5-h2 {
    margin-bottom: 20px !important;
}
.wgb-hc-prog-page-section-5-botton{
    margin-top: 20px !important;
}
section.wgb-hc-prog-page-section-6.wgb-hc-prog-faq {
    padding: 0px;
}
/*END*/

/*Service page custom code*/
/* ===================================================
   SERVICES PATHWAY CARDS
=================================================== */

.wgb-services-pathways-grid{
    align-items:stretch;
}

.wgb-pathway-card{
    min-height:400px;   /* or remove completely if you're using Tailwind min-h-[400px] */
    border-radius:40px;
    overflow:hidden;
    position:relative;
    transition:.35s ease;
}

/* .wgb-pathway-card:hover{
    transform:translateY(-6px);
} */

/* IMAGE */

.wgb-card-image{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .7s ease;
}

.wgb-pathway-card:hover .wgb-card-image{
    transform:scale(1.08);
}

/* ==============================
   OVERLAY
============================== */

.wgb-card-overlay{
    position:absolute;
    inset:0;
    transition:.45s ease;
    background:linear-gradient(
        to top,
        rgba(0,0,0,.98) 0%,
        rgba(0,0,0,.82) 35%,
        rgba(0,0,0,.45) 65%,
        transparent 100%
    );
}

.wgb-pathway-card:hover .wgb-card-overlay{
    background:rgba(0,0,0,.88);
}

/* ==============================
   CONTENT
============================== */

.wgb-card-content{
    position:relative;
    z-index:5;
    height:410px;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    padding:42px 34px;
}

/* ==============================
   ICON
============================== */

.wgb-card-icon{
    width:92px;
    height:92px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:24px;

    background:rgba(255,255,255,.12);
    backdrop-filter:blur(18px);

    transition:.35s ease;
}

.wgb-card-icon span{
    font-size:46px;
    color:#fff;
}

.wgb-pathway-card:hover .wgb-card-icon{
    transform:translateY(-6px);
}

/* ==============================
   TEXT
============================== */

.wgb-card-text{
    margin-top:auto;
}

.wgb-card-title{
    font-size:30px;
    line-height:1.1;
    font-weight:700;
    margin:0;
    color:#fff;
    transition:.35s;
}
.wgb-pathway-card:hover .wgb-card-title{
color:#fff;
}
/* Hidden initially */

.wgb-card-description{
    max-height:0;
    opacity:0;
    overflow:hidden;
    transform:translateY(12px);
    transition:all .35s ease;
    margin-top:0;
}

.wgb-pathway-card:hover .wgb-card-description{
    color:#fff;
    max-height:120px;
    opacity:1;
    transform:translateY(0);
    margin-top:18px;
}

/* ==============================
   ARROW
============================== */

.wgb-card-arrow{

    font-size:48px;

    color:#fff;

    margin-top:40px;

    transition:.35s ease;

}

/* .wgb-pathway-card:hover .wgb-card-arrow{
    transform:translateX(10px);
} */

/* ==============================
   RESPONSIVE
============================== */

@media(max-width:1200px){

    .wgb-pathway-card{
        min-height:560px;
    }
    .wgb-card-title{
        font-size:34px;
    }
    .wgb-card-description{
        font-size:20px;
    }
}

@media(max-width:768px){

    .wgb-pathway-card{
        min-height:500px;
        border-radius:30px;
    }

    .wgb-card-content{
        padding:30px;
    }

    .wgb-card-icon{
        width:72px;
        height:72px;
    }

    .wgb-card-icon span{
        font-size:34px;
    }

    .wgb-card-title{
        font-size:30px;
    }

    .wgb-card-description{
        font-size:18px;
        line-height:1.6;
        opacity:1;
        visibility:visible;
        transform:none;
    }

}
/*END*/
    .wgb-services-page .blob-anim {
        animation: blobBounce 8s infinite ease-in-out alternate;
    }
    .wgb-services-page .blob-anim-2 {
        animation: blobBounce 10s infinite ease-in-out alternate-reverse;
    }
    @keyframes blobBounce {
        0%, 100% { transform: translateY(0) scale(1); }
        50% { transform: translateY(-20px) scale(1.05); }
    }
    .wgb-services-page .blob-shape {
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
        transition: border-radius 2s ease-in-out;
    }
    .wgb-services-page .group:hover .blob-shape {
        border-radius: 60% 40% 30% 70% / 50% 60% 40% 50%;
    }
    .wgb-services-page .glass-card {
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.5);
    }
    /*END*/
    

/*Other services */
@media(min-width:1020px){
    section.wgb-services-hero-section {
    padding-top: 160px;
}
}

.wgb-services-heading, .wgb-services-white-head{
    color:#fff;
}

/*Support at home*/
.wgb-hc-sah-page-head, .wgb-hc-sah-fund-desc{
    color:#fff;
}
.wgb-hc-sah-survey-title, .wgb-hc-sah-label-text{
    color:#fff;
}
@media(max-width:1020px){
    .wgb-hc-sah-page-container{
        padding-top: 5rem;
    }
    .wgb-hc-sah-hero-content.space-y-10.relative {
    margin-bottom: 120px;
}
}

            .white-head-text:hover{
            color:#fff;
        }
        .white-head-text{
            color:#fff;
        }
        .material-symbols-outlined {
            font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
        }

        /* Sandboxed Keyframe Sets for WordPress Environment Integration */
        @keyframes wghcSlideInUp {
            from { opacity: 0; transform: translateY(35px); }
            to { opacity: 1; transform: translateY(0); }
        }
        @keyframes wghcFluidBlob {
            0%, 100% { transform: translateY(0) scale(1) rotate(0deg); }
            50% { transform: translateY(-25px) scale(1.06) rotate(4deg); }
        }
        @keyframes wghcRadarGlow {
            0% { box-shadow: 0 0 0 0 rgba(36, 99, 143, 0.45); }
            70% { box-shadow: 0 0 0 18px rgba(36, 99, 143, 0); }
            100% { box-shadow: 0 0 0 0 rgba(36, 99, 143, 0); }
        }

        /* Functional Unique Utility Classes */
        .wghc-stage-entry {
            animation: wghcSlideInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
            opacity: 0;
        }
        .wghc-delay-alpha { animation-delay: 150ms; }
        .wghc-delay-beta { animation-delay: 300ms; }
        
        .wghc-blob-canvas-1 { animation: wghcFluidBlob 10s infinite ease-in-out alternate; }
        .wghc-blob-canvas-2 { animation: wghcFluidBlob 12s infinite ease-in-out alternate-reverse; }
        
        .wghc-organic-perimeter {
            border-radius: 42% 58% 70% 30% / 45% 55% 65% 45%;
            transition: border-radius 2.2s cubic-bezier(0.4, 0, 0.2, 1);
        }
        .group:hover .wghc-organic-perimeter {
            border-radius: 58% 42% 38% 62% / 55% 65% 35% 45%;
        }

        /* Interactive Micro-Interactions */
        .wghc-tactile-surface {
            transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
        }
        .wghc-tactile-surface:hover {
            transform: translateY(-12px);
            box-shadow: 0 28px 56px -14px rgba(0, 35, 62, 0.14);
        }

        .wghc-collapsible-drawer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
            opacity: 0;
        }
        details[open] .wghc-collapsible-drawer {
            max-height: 450px;
            opacity: 1;
        }
        details summary::-webkit-details-marker {
            display: none;
        }
        
        .wghc-beacon-trigger {
            animation: wghcRadarGlow 2.6s infinite;
        }
/*VHC Package custom code*/
    .view-package-btn:hover{
        color:#56c2f0!important;
    }
    /* --- Brand Color & Styling Rules (No :root Used) --- */
    .wgb-vhc-landing-page {
        font-family: 'Hanken Grotesk', sans-serif;
        -webkit-font-smoothing: antialiased;
        background-color: #f8f9ff;
    }
    
    /* Background Accent Elements */
    .wgb-ambient-glow-top {
        background-color: rgba(26, 108, 57, 0.08);
        filter: blur(120px);
    }
    .wgb-ambient-glow-bottom {
        background-color: rgba(0, 35, 62, 0.04);
        filter: blur(140px);
    }

    /* Core Typography & Brand Colors */
    .wgb-color-navy { color: #00233e; }
    .wgb-color-green { color: #1a6c39; }
    .wgb-color-muted { color: #43474d; }
    
    .wgb-badge-program {
        background-color: rgba(26, 108, 57, 0.08);
        color: #1a6c39;
    }
    .wgb-gradient-text-brand {
        background: linear-gradient(to right, #24638f, #00401c);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    .wgb-decoration-line {
        background-color: #1a6c39;
    }

    /* Buttons Configuration */
    .wgb-btn-brand-primary {
        background-color: #1a6c39;
        color: #ffffff;
        transition: all 0.2s ease-in-out;
    }
    .wgb-btn-brand-primary:hover {
        opacity: 0.95;
        transform: translateY(-1px);
    }
    .wgb-btn-brand-secondary {
        background-color: transparent;
        color: #00233e;
        border: 2px solid rgba(0, 35, 62, 0.15);
        transition: all 0.2s ease-in-out;
    }
    .wgb-btn-brand-secondary:hover {
        background-color: rgba(0, 35, 62, 0.02);
        border-color: #00233e;
    }

    /* Floating Image Media Frame */
    .wgb-image-backdrop-effect {
        background-color: rgba(164, 245, 179, 0.2);
        filter: blur(24px);
    }
    .wgb-floating-badge-container {
        background-color: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(12px);
        border: 1px solid #ffffff;
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.08);
    }
    .wgb-badge-icon-frame {
        background: linear-gradient(to bottom right, #00233e, #24638f);
    }

    /* Interactive Component Cards */
    .wgb-quiz-card-wrapper {
        background-color: #ffffff;
        border: 2px solid rgba(0, 35, 62, 0.04);
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.04);
    }
    .wgb-quiz-trigger-button {
        background-color: transparent;
        transition: all 0.2s ease;
    }
    .wgb-quiz-trigger-button-yes {
        border: 2px solid #00233e;
        color: #00233e;
    }
    .wgb-quiz-trigger-button-no {
        border: 2px solid #73777e;
        color: #73777e;
    }
    
    /* Interactive States Applied cleanly via Javascript toggles */
    .wgb-quiz-trigger-button-yes.selected-yes {
        background-color: #00233e !important;
        color: #ffffff !important;
    }
    .wgb-quiz-trigger-button-no.selected-no {
        background-color: #ba1a1a !important;
        border-color: #ba1a1a !important;
        color: #ffffff !important;
    }

    /* Eligibility Parameters Matrix */
    .wgb-eligibility-matrix-box {
        background-color: #ffffff;
        border: 2px solid rgba(0, 35, 62, 0.05);
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.04);
    }
    .wgb-matrix-corner-accent {
        background-color: rgba(0, 35, 62, 0.02);
    }
    .wgb-matrix-icon-frame {
        background-color: rgba(0, 35, 62, 0.04);
    }
    .wgb-matrix-list-item-row {
        background-color: #f8f9ff;
        border: 1px solid rgba(0, 35, 62, 0.04);
    }

    /* Frequently Asked Questions Accordions */
    .wgb-accordion-item-node {
        background-color: #ffffff;
        border: 1px solid #e2e8f0;
    }
    .wgb-accordion-item-node[open] .wgb-accordion-arrow-icon {
        transform: rotate(180deg);
    }
    .wgb-accordion-q-badge {
        background-color: #f1f5f9;
        color: #00233e;
    }
    .wgb-accordion-inner-border-accent {
        border-left: 2px solid #e2e8f0;
    }

    /* High Impact CTA Conversion Banner */
    .wgb-bottom-cta-banner-container {
        background: linear-gradient(to bottom right, #00233e, #001525);
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.2);
    }
    .wgb-bottom-cta-radial-glow {
        background-color: rgba(26, 108, 57, 0.18);
        filter: blur(100px);
    }
    .wgb-cta-action-button-accent {
        background-color: #1a6c39;
        color: #ffffff;
        transition: opacity 0.2s ease;
    }
    .wgb-cta-action-button-accent:hover {
        opacity: 0.95;
    }
    .wgb-cta-action-button-outline {
        border: 2px solid rgba(255, 255, 255, 0.25);
        color: #ffffff;
        transition: background-color 0.2s ease;
    }
    .wgb-cta-action-button-outline:hover {
        background-color: rgba(255, 255, 255, 0.08);
    }

    /* Style for JS  */
    #wgb-quiz-popup{
    display:none;
    position:fixed;
    inset:0;
    z-index:99999;
}

.wgb-quiz-popup-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.6);
}

.wgb-quiz-popup-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    background:#fff;
    padding:40px;
    border-radius:20px;
    width:90%;
    max-width:700px;
    max-height:90vh;
    overflow:auto;
}

.wgb-quiz-popup-close{
    position:absolute;
    top:10px;
    right:15px;
    border:none;
    background:none;
    font-size:32px;
    cursor:pointer;
}

.wgb-quiz-trigger-button-contact{
    background: #003a5f;
    color: #fff;
    font-weight: 700;
    border-radius: 999px;
    transition: all .3s ease;
    box-shadow: 0 10px 25px rgba(0, 35, 62, .15);
    padding: 10px 20px;
}
.wgb-bottom-cta-banner-container-footer-head{
    color: #fff;
}
/*END*/

/*CHSP Package*/

.wgb-chsp-main-wrapper{
    background:#f8f9ff;
    color:#00233e;
    font-family:'Hanken Grotesk',sans-serif;
    position:relative;
    overflow:hidden;
}

.material-symbols-outlined{
    font-variation-settings:
    'FILL' 0,
    'wght' 400,
    'GRAD' 0,
    'opsz' 24;
}

/* ==========================
   ANIMATIONS
========================== */

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

@keyframes wgbBlobMove{
    0%,100%{
        transform:translateY(0) scale(1);
    }
    50%{
        transform:translateY(-20px) scale(1.05);
    }
}

@keyframes wgbPulseGlow{
    0%{
        box-shadow:0 0 0 0 rgba(67,125,171,.4);
    }
    70%{
        box-shadow:0 0 0 15px rgba(67,125,171,0);
    }
    100%{
        box-shadow:0 0 0 0 rgba(67,125,171,0);
    }
}

.wgb-chsp-animate{
    animation:wgbFadeInUp .8s ease-out forwards;
    opacity:0;
}

.wgb-delay-100{
    animation-delay:.1s;
}

.wgb-delay-200{
    animation-delay:.2s;
}

.wgb-delay-300{
    animation-delay:.3s;
}

/* ==========================
   BACKGROUND EFFECTS
========================== */

.wgb-bg-blob-1{
    position:absolute;
    top:-10%;
    left:-5%;
    width:600px;
    height:600px;
    border-radius:999px;
    background:rgba(0,35,62,.05);
    filter:blur(80px);
    animation:wgbBlobMove 8s infinite ease-in-out alternate;
}

.wgb-bg-blob-2{
    position:absolute;
    top:20%;
    right:-10%;
    width:700px;
    height:700px;
    border-radius:999px;
    background:rgba(26,108,57,.05);
    filter:blur(100px);
    animation:wgbBlobMove 10s infinite ease-in-out alternate-reverse;
}

.wgb-bg-blob-3{
    position:absolute;
    bottom:-10%;
    left:20%;
    width:800px;
    height:800px;
    border-radius:999px;
    background:rgba(0,35,62,.05);
    filter:blur(120px);
    animation:wgbBlobMove 8s infinite ease-in-out alternate;
}

/* ==========================
   BADGE
========================== */

.wgb-chsp-badge{
    display:inline-flex;
    align-items:center;
    gap:.5rem;
    padding:.75rem 1.25rem;
    border-radius:999px;
    background:linear-gradient(
        to right,
        rgba(164,245,179,.3),
        rgba(26,108,57,.2)
    );
    border:1px solid rgba(164,245,179,.4);
    color:#00233e;
    font-size:.75rem;
    font-weight:800;
    letter-spacing:.12em;
    text-transform:uppercase;
    backdrop-filter:blur(10px);
}

/* ==========================
   BUTTONS
========================== */

.wgb-chsp-btn-primary{
    background:#003a5f;
    color:#fff;
    font-weight:700;
    border-radius:999px;
    transition:all .3s ease;
    box-shadow:0 10px 25px rgba(0,35,62,.15);
}

.wgb-chsp-btn-primary:hover{
    background:#00233e;
    transform:translateY(-2px);
}

.wgb-chsp-btn-secondary{
    background:rgba(255,255,255,.6);
    border:2px solid rgba(0,35,62,.15);
    color:#00233e;
    backdrop-filter:blur(12px);
    font-weight:700;
    border-radius:999px;
    transition:.3s ease;
}

.wgb-chsp-btn-secondary:hover{
    background:#aac9ee;
}

/* ==========================
   HERO IMAGE
========================== */

.wgb-mask-shape{
    border-radius:
    40% 60% 70% 30% /
    40% 50% 60% 50%;
    transition:border-radius 2s ease;
}

.wgb-hero-image-group:hover .wgb-mask-shape{
    border-radius:
    60% 40% 30% 70% /
    50% 60% 40% 50%;
}

.wgb-hero-image-wrap{
    position:absolute;
    inset:0;
    overflow:hidden;
    background:#fff;
    border:4px solid rgba(255,255,255,.5);
    box-shadow:0 25px 60px rgba(0,35,62,.15);
}

.wgb-hero-image-wrap img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform 2s ease;
}

.wgb-hero-image-group:hover img{
    transform:scale(1.1);
}

/* ==========================
   SECTION SPACING
========================== */

.wgb-section-space{
    margin-bottom:7rem;
}

.wgb-section-title{
    font-size:3rem;
    font-weight:900;
    color:#00233e;
    line-height:1.1;
}

.wgb-section-subtitle{
    font-size:1.25rem;
    color:rgba(0,35,62,.7);
    font-weight:500;
}
.wgb-chsp-layout-container{
    padding-top:160px!important;
}
/* ==========================
   CARD STYLE
========================== */

.wgb-chsp-card{
    background:#fff;
    border-radius:40px;
    padding:2rem;
    border:2px solid rgba(0,35,62,.08);
    box-shadow:0 10px 30px rgba(0,35,62,.05);
    transition:all .35s ease;
}

.wgb-chsp-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 50px rgba(0,35,62,.1);
}

.chsp-support-h3, .chsp-support-span, .chsp-support-h2{
    color:#fff;
}
/* ==========================
   CTA
========================== */

.wgb-pulse-shadow{
    animation:wgbPulseGlow 2s infinite;
}

/*Private Home Care support Custom Code*/
    /* --- Base Variables & Core Layout Settings (No :root Used) --- */
    .wgb-phc-landing-page {
        font-family: 'Hanken Grotesk', sans-serif;
        -webkit-font-smoothing: antialiased;
        background-color: #f8f9ff;
            padding-top: 80px;
    }
    .wgb-phc-landing-page .font-body-alt {
        font-family: 'Inter', sans-serif;
    }

    /* Core Branding Colors */
    .wgb-phc-navy { color: #00233e; }
    .wgb-phc-green { color: #1a6c39; }
    .wgb-phc-muted-text { color: #43474d; }

    /* Decorative Graphic Canvas Elements */
    .wgb-phc-ambient-blob-1 {
        background-color: rgba(164, 245, 179, 0.1);
        filter: blur(80px);
    }
    /*.wgb-phc-ambient-blob-2 {*/
    /*    background-color: rgba(0, 58, 95, 0.1);*/
    /*    filter: blur(100px);*/
    /*}*/
    /*.wgb-phc-ambient-blob-3 {*/
    /*    background-color: rgba(26, 108, 57, 0.1);*/
    /*    filter: blur(120px);*/
    /*}*/
    .wgb-phc-dot-pattern {
        background-image: radial-gradient(#cbd5e1 1px, transparent 1px);
        background-size: 20px 20px;
    }
    .wgb-phc-dot-pattern-colored {
        background-image: radial-gradient(#1a6c39 2px, transparent 2px);
        background-size: 20px 20px;
    }
    .wgb-phc-dot-pattern-navy {
        background-image: radial-gradient(#003a5f 2px, transparent 2px);
        background-size: 20px 20px;
    }

    /* Floating Image Mask Framing */
    .wgb-phc-liquid-mask {
        mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23FF0066' d='M44.7,-76.4C58.8,-69.2,71.8,-59.1,79.6,-46.5C87.4,-33.8,90,-18.7,89.3,-3.8C88.6,11.1,84.7,25.7,78,39.6C71.3,53.4,61.8,66.4,49.1,73.9C36.4,81.3,20.5,83.1,5.2,82.2C-10.1,81.3,-24.8,77.7,-38.7,70.8C-52.5,63.9,-65.5,53.6,-73.4,40.6C-81.2,27.5,-83.9,11.7,-82.9,-3.6C-81.9,-18.9,-77.2,-33.7,-68.8,-46.6C-60.3,-59.5,-48.1,-70.5,-34.5,-78.1C-20.9,-85.7,-5.8,-89.9,8.5,-85C22.8,-80.1,30.6,-83.6,44.7,-76.4Z' transform='translate(100 100)' /%3E%3C/svg%3E");
        mask-size: contain;
        mask-repeat: no-repeat;
        mask-position: center;
    }
    .wgb-phc-liquid-backdrop {
        background: linear-gradient(to bottom right, #a4f5b3, #1a6c39);
    }
    .wgb-phc-arctic-shadow {
        box-shadow: 0 10px 30px -5px rgba(23, 57, 87, 0.08);
    }

    /* Pill Badges & Brand Text Gradients */
    .wgb-phc-pill-badge {
        background: linear-gradient(to right, rgba(164, 245, 179, 0.3), rgba(26, 108, 57, 0.2));
        color: #00233e;
        border: 1px solid rgba(164, 245, 179, 0.4);
    }
    .wgb-phc-gradient-brand-text {
        background: linear-gradient(to right, #1a6c39, #003a5f);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }
    .wgb-phc-decoration-line {
        background-color: #1a6c39;
    }

    /* Layout Buttons Configuration */
    .wgb-phc-btn-teal {
        background-color: #003a5f;
        color: #ffffff;
        box-shadow: 0 10px 15px -3px rgba(0, 58, 95, 0.3);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .wgb-phc-btn-teal:hover {
        transform: translateY(-4px);
    }
    .wgb-phc-btn-outline {
        background-color: rgba(255, 255, 255, 0.5);
        border: 2px solid rgba(0, 23, 62, 0.2);
        color: #00233e;
        transition: all 0.2s ease-in-out;
    }
    .wgb-phc-btn-outline:hover {
        background-color: #aac9ee;
    }
    .wgb-phc-btn-navy-solid {
        background-color: #00233e;
        color: #ffffff;
    }
    .wgb-phc-btn-navy-solid:hover {
        background-color: #173957;
    }

    /* Main Introduction Section Block */
    .wgb-phc-intro-card {
        background-color: rgba(255, 255, 255, 0.8);
        border: 1px solid rgba(255, 255, 255, 0.6);
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.1);
    }
    .wgb-phc-intro-tag {
        color: #1a6c39;
        background-color: rgba(164, 245, 179, 0.2);
        border: 1px solid rgba(26, 108, 57, 0.2);
    }

    /* Checklist Selection Matrix */
    .wgb-phc-matrix-sidebar-banner {
        background-color: #00233e;
        color: #ffffff;
    }
    .wgb-phc-matrix-interactive-container {
        background-color: #173957;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    }
    .wgb-phc-matrix-row-item {
        background-color: rgba(255, 255, 255, 0.05);
        border: 1px solid rgba(255, 255, 255, 0.1);
        transition: all 0.2s ease;
    }
    .wgb-phc-matrix-row-item:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }
    .wgb-phc-matrix-checkbox {
        border-color: rgba(255, 255, 255, 0.3);
        background-color: transparent;
        color: #1a6c39;
    }
    .wgb-phc-matrix-checkbox:focus {
        --tw-ring-color: #1a6c39;
    }

    /* Care Options Services Grid Module */
    .wgb-phc-service-box-card {
        background-color: #ffffff;
        border: 1px solid rgba(195, 199, 206, 0.3);
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .wgb-phc-service-box-card:hover {
        border-color: #1a6c39;
        transform: translateY(-8px);
    }
    .wgb-phc-service-icon-wrap {
        background-color: #173957;
        color: #ffffff;
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    }
    .wgb-phc-info-banner-strip {
        background-color: #173957;
        color: #001d34;
        border-left: 4px solid #1a6c39;
    }

    /* Process Workflow Framework Modules */
    .wgb-phc-process-card-node {
        background-color: #f8f9ff;
        border: 1px solid #c3c7ce;
    }
    .wgb-phc-process-badge-count {
        background-color: #00233e;
        color: #ffffff;
        border: 4px solid #ffffff;
    }

    /* Custom FAQ Components Framework Accordions */
    .wgb-phc-accordion-item-box {
        background-color: #ffffff;
        border: 1px solid rgba(195, 199, 206, 0.2);
        box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
        transition: all 0.2s ease;
    }
    .wgb-phc-accordion-item-box:hover {
        box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.07);
    }
    .wgb-phc-accordion-arrow-icon-frame {
        background-color: rgba(164, 245, 179, 0.2);
        color: #00233e;
        transition: transform 0.3s ease;
    }
    .wgb-phc-accordion-item-box[open] .wgb-phc-accordion-arrow-icon-frame {
        transform: rotate(180deg);
    }

    /* bottom High Impact CTA Frame Banner */
    .wgb-phc-conversion-banner {
        background-color: #00233e;
    }
    .wgb-phc-conversion-radial-glow-1 {
        background-color: rgba(0, 58, 95, 0.2);
        filter: blur(64px);
    }
    .wgb-phc-conversion-radial-glow-2 {
        background-color: rgba(26, 108, 57, 0.1);
        filter: blur(64px);
    }
    .wgb-phc-conversion-btn {
        background-color: #003a5f;
        color: #ffffff;
        box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .wgb-phc-conversion-btn:hover {
        transform: scale(1.05);
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    }
/*END*/
/*All FAQ Space*/
details.wgb-accordion-item-about-page {
    margin-bottom: 20px;
}
.wgb-hc-sah-faq-action.mt-16.text-center {
    margin-top: 0px;
    margin-bottom: 40px;
}
/*All hero head*/
.programs-hc-head{
    font-weight:600!important;
    font-size: 4rem !important;
}
@media(max-width:1020px){
    .programs-hc-head{
    font-weight:600!important;
    font-size:48px!important;
}
}
/*END*/