



svg:not(:root) {
    overflow-clip-margin: content-box;
    overflow: hidden;
    fill: none;
 
}
.secondary-text {
    font-size: var(--text-md);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--secondary) !important;

}

.primary-text {
    font-family: "DM Sans";
    font-size: var(--text-base);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.button-primary svg {
    width:14px!important;
    height: 14px!important;
}

/* =========================
   Body Setting
   ========================= */
*{ box-sizing: border-box; }
html, body{ height: 100%; }
body{
  margin: 0;
  font-size: var(--base);
  line-height: var(--body-lh);
  background: var(--bg);
  color: var(--text);
  font-family: "DM Sans", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img{ max-width: 100%; width: auto; height: auto; display: block; }

a{
  color: var(--primary);
  text-decoration: none;
  text-underline-offset: 3px;
}

/* =========================
   Typography
   ========================= */
h1, h2, h3, h4, h5, h6{
   font-family: "PP Museum", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  color: var(--primary);
  letter-spacing: -0.02em;
  margin:0;
}

h1{ font-size: var(--h1); margin: 0; line-height: var(--heading-lh); font-weight: 500; }
h2{ font-size: var(--h2); margin: 0; line-height: var(--heading-lh); font-weight: 500; }
h3{ font-size: var(--h3); margin: 0; line-height: var(--heading-lh); font-weight: 500; }
h4{ font-size: var(--h4); margin: 0; line-height: var(--heading-lh); font-weight: 500; }
h5{ font-size: var(--h5); margin: 0; line-height: var(--heading-lh); font-weight: 500; }
h6{ font-size: var(--h6); margin: 0; line-height: var(--heading-lh); font-weight: 500; }

p{ margin: 0 0 0px; color: var(--text); font-weight: 400; }
.muted{ color: var(--muted); }

strong, b{ font-weight: 600; }


/* Selection */
::selection{
  background: rgba(236,187,61,.45);
  color: var(--primary);
}

/* =========================
   Global Layout
   ========================= */
   
.section{
  padding: var(--pad-y-lg) var(--pad-x-lg);
  margin: 0 auto;
  width: 100%;
}
.container{
  margin: 0 auto;
  box-sizing: border-box;
  max-width: var(--container);
}


/* =========================================
   BUTTON Global SYSTEM
   ========================================= */

.button-primary,
.button-secondary,
.button-outline-primary,
.button-outline-secondary,
.button-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px; 
    
    /* Typography */
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    text-decoration: none;
    line-height: 1.6em;
    
    /* Shape */
    padding: 12px 35px;
    border-radius: 9px;
    border: 1.5px solid transparent; 
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    letter-spacing:2px;
}

.button-primary:hover svg path,
.button-secondary:hover svg path,
.button-outline-primary:hover svg path,
.button-outline-secondary:hover svg path,
.button-white:hover svg path {
  fill: var(--primary);
  
}


/* Fix Icon Sizes inside buttons */
.button-primary i,
.button-secondary i,
.button-outline-primary i,
.button-outline-secondary i {
    font-size: 14px;
}


/* --- 2. COLOR VARIATIONS --- */

.button-primary {
    background-color: var(--primary);
    color: var(--surface); 
    border-color: var(--primary);
}
.button-primary:hover {
    background-color: var(--secondary);
    border-color: var(--secondary);
    transform: translateY(-2px);
    color:var(--primary);
}

/* SECONDARY (Solid Yellow) */
.button-secondary {
    background-color: var(--secondary);
    color: var(--primary); 
    border-color: var(--secondary);
}
.button-secondary:hover {
    background-color: #d4a52b; 
    border-color: #d4a52b;
    transform: translateY(-2px);
}

/* OUTLINE PRIMARY (Transparent with Green Border) */
.button-outline-primary {
    background-color: transparent;
    color: var(--primary);
    border-color: var(--primary);
}
.button-outline-primary:hover {
    background-color: var(--primary);
    color: var(--surface);
}

/* OUTLINE SECONDARY (Transparent with Yellow Border) */
/* Great for dark backgrounds (Footer) */
.button-outline-secondary {
    background-color: transparent;
    color: var(--secondary);
    border-color: var(--secondary);
}
.button-outline-secondary:hover {
    background-color: var(--secondary);
    color: var(--primary);
}

/* WHITE (Solid White) */
/* Useful if placed on a dark green section */
.button-white {
    background-color: var(--surface);
    color: var(--primary);
    border-color: var(--surface);
}
.button-white:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.yellow-outline-button {
    background-color: transparent;
    border-color:var(--dark-orange);
    color: var(--primary) !important;
}

.yellow-outline-button:hover {
    background-color:var(--dark-orange) ;
    color: var(--surface)!important;
    fill:var(--surface)!important;
    border-color:var(--dark-orange)!important;
}

.yellow-outline-button:hover svg path {
    color:var(--surface)!important;
    fill:var(--surface)!important;
}

/* =========================================
  END BUTTON UTILITY SYSTEM
   ========================================= */



hr{
  border: 0;
  height: 1px;
  background: var(--line);
  margin: 24px 0;
}

/* =========================
   Cards
   ========================= */
.card{
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.cardPad{ padding: 28px; }

.badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(236,187,61,.22);
  border: 1px solid rgba(236,187,61,.35);
  color: var(--primary);
  font-weight: 600;
  font-size: 13px;
}



/* Primary: Green */
.btnPrimary{
  background: var(--primary);
  border-color: transparent;
  color: var(--bg);
  box-shadow: 0 10px 20px rgba(0,56,42,.18);
}
.btnPrimary:hover{
  background: #004A37; 
}

/* Accent: Gold */
.btnAccent{
  background: var(--secondary);
  border-color: transparent;
  color: var(--primary);
  box-shadow: 0 10px 20px rgba(236,187,61,.22);
}
.btnAccent:hover{
  background: #F2C957;
}

/* Link-style button */
.btnLink{
  background: transparent;
  border-color: transparent;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* =========================
   Forms (basic)
   ========================= */
input, textarea, select{
  font: inherit;
  color: var(--primary);
}
input[type="text"],
input[type="email"],
input[type="tel"],
input[type="url"],
textarea,
select{
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radiusSm);
  border: 1px solid var(--line);
  background: #FFFFFF;
  outline: none;
}
input:focus, textarea:focus, select:focus{
  border-color: rgba(0,56,42,.38);
  box-shadow: 0 0 0 4px rgba(236,187,61,.22);
}

/* =========================
   Global Header + Nav
   ========================= */
.siteHeader{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,250,243,.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,56,42,.12);
}
.siteHeaderInner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}
.brand{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--primary);
  font-weight: 800;
  letter-spacing: .2px;
}
.nav{
  display: flex;
  gap: 14px;
}
.nav a{
  color: var(--primary);
  opacity: .92;
  padding: 8px 10px;
  border-radius: 10px;
  text-decoration: none;
}
.nav a:hover{
  background: rgba(0,56,42,.05);
  opacity: 1;
  text-decoration: none;
}

/* =========================
   Global Footer
   ========================= */
.siteFooter{
  border-top: 1px solid rgba(0,56,42,.12);
  padding: 40px 0;
  color: var(--muted);
}


/* =========================
   Gutenberg core blocks (small improvements)
   ========================= */
.wp-block-buttons .wp-block-button__link{
  border-radius: var(--radiusSm);
  font-weight: 600;
}

.wp-block-quote{
  border-left: 4px solid rgba(236,187,61,.70);
  margin: 0;
  padding: 12px 16px;
  background: rgba(236,187,61,.10);
  border-radius: var(--radiusSm);
}

.wp-block-table table{
  width: 100%;
  border-collapse: collapse;
}
.wp-block-table th, .wp-block-table td{
  border: 1px solid var(--line);
  padding: 10px 12px;
}
.wp-block-table th{
  background: rgba(0,56,42,.04);
  font-weight: 700;
}

/* header code  */
/* --- Toggle Button --- */
.mobile-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    color: #000; /* Adjust to match your theme */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 100;
}

/* --- Icon Switching Logic --- */
/* Default State: Show Hamburger, Hide Close */
.mobile-toggle .icon-hamburger {
    display: block;
}
.mobile-toggle .icon-close {
    display: none;
}

/* Active State: Hide Hamburger, Show Close */
.schmidt-header.mobile-active .mobile-toggle .icon-hamburger {
    display: none;
}
.schmidt-header.mobile-active .mobile-toggle .icon-close {
    display: block;
}

/* --- Submenu Toggle Arrows (Injected by JS) --- */
.menu-dropdown-toggle {
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    color: currentColor;
    transition: transform 0.3s ease;
}

/* Rotate arrow when open */
.menu-item-has-children.open > .menu-dropdown-toggle {
    transform: rotate(180deg);
}

/* Flex layout for menu items to hold text and arrow */
.menu-item-has-children {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.menu-item-has-children > a {
    flex: 1; /* Link takes up available space */
}

/* Default hidden sub-menu */
.sub-menu {
    display: none;
    width: 100%;
    padding-left: 20px;
}
/* Show sub-menu when open */
.menu-item-has-children.open > .sub-menu {
    display: block;
}
/* end header code */

.schmidt-header ul { margin: 0; padding: 0; list-style: none; }
.schmidt-header a { text-decoration: none; transition: all 0.2s ease; }
.schmidt-header {
    background-color: var(--bg);
    height: var(--header-height);
    width: 100%;
    border-bottom: 1px solid var(--line);
    position: relative;
    z-index: 999;
}

/* --- DESKTOP LAYOUT (CSS GRID) --- */
.header-container {
    max-width: var(--containerWide);
    margin: 0 auto;
    height: 100%;
    padding: 0 var(--gutter);
    
    /* THE FIX: 3 Columns. Left and Right take available space equally. Center is auto. */
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

/* Align Nav Groups */
.nav-left { justify-self: start; }
.nav-right { justify-self: end; }
.site-logo { justify-self: center; }

/* Lists */
.nav-group {
    display: flex;
    align-items: center;
    gap: 32px;
}

/* --- MENU ITEMS --- */
.menu-item {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
}

.menu-link {
    color: var(--primary);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.menu-link:hover { color: var(--muted); }

/* --- LOGO --- */
.logo-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--primary);
    line-height: 1;
}
.logo-placeholder i { font-size: 32px; margin-bottom: 5px; }
.logo-placeholder span { font-weight: 900; letter-spacing: 3px; font-size: 14px; }

/* --- BUTTONS --- */
.header-btn {
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}
.btn-portal { background-color: var(--secondary); color: var(--primary); }
.btn-portal:hover { background-color: #dca626; }
.btn-talk { background-color: var(--primary); color: var(--surface); }
.btn-talk:hover { opacity: 0.9; }

/* --- DROPDOWN (DESKTOP) --- */
.sub-menu {
    position: absolute;
    top: 100%;
    left: -20px;
    background-color: var(--surface);
    min-width: 240px;
    padding: 10px 0;
    border-radius: var(--radiusSm);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border: 1px solid var(--line);
    z-index: 1000;
}
.menu-item:hover .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.sub-menu li a {
    display: block;
    padding: 10px 24px;
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
    width:100%;
}
.sub-menu li a:hover { background-color: var(--surface2); }

/* --- MOBILE ELEMENTS --- */
.mobile-toggle { display: none; }
.mobile-top-bar { display: none; }



/* --- FOOTER STYLES --- */

.site-footer {
    background-color: var(--primary);
    color: var(--surface);
    font-size: 15px;
    width: 100%;
}

/* Helper Container just for footer alignment */
.footer-container {
    max-width: var(--containerWide);
    margin: 0 auto;
    padding: 0 var(--gutter);
    height: 100%;
}

/* --- SECTION 1: NEWSLETTER --- */
.footer-newsletter {
    
    border-bottom: 1px solid var(--secondary);
}

.footer-newsletter .footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.newsletter-text h3 {
    font-size: 20px;
    font-weight: 400; 
    margin: 0;
    color: var(--surface);
   
}

.newsletter-form {
    display: flex;
    border: 1px solid var(--secondary);
    padding: 4px;
    width: 100%;
    max-width: 450px;
    background-color: rgba(0,0,0,0.2); 
}

.newsletter-form input {
    background: transparent;
    border: none;
    color: var(--secondary);
    padding: 12px 20px;
    flex-grow: 1;
    outline: none;
}

.newsletter-form input::placeholder {
    color: rgba(236, 187, 61, 0.6); 
}

.newsletter-form button {
    background-color: var(--secondary);
    border: none;
    width: 50px;
    color: var(--primary);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

.newsletter-form button:hover {
    opacity: 0.9;
}


/* --- SECTION 2: MAIN GRID --- */


.footer-grid {
    display: grid;
    grid-template-columns: 0.8fr 1fr 1fr 1fr 1.2fr;
    gap: var(--gap-horz);
}

/* Headings */
.footer-heading {
    color: var(--secondary);
   
    font-size: 22px;
    margin-bottom: 24px;
    margin-top: 0;
    font-weight: 400;
}

/* Links List */
.footer-links, .contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 14px;
}

.footer-links a {
    color: var(--surface);
    text-decoration: none;
    transition: color 0.2s;
    font-size: 15px;
}

.footer-links a:hover {
    color: var(--secondary);
}

/* Contact Specifics */
.contact-list li {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
    color: var(--surface);
}

.contact-list i {
    color: var(--secondary);
    margin-top: 4px; 
}

.contact-list a {
    color: var(--surface);
    text-decoration: none;
}

/* Brand Icon Column */
.footer-icon-large {
   
}

.star-accent {
    position: absolute;
    top: 10px;
    right: -20px;
    font-size: 24px;
}


/* --- SECTION 3: BIG BRAND NAME --- */
.footer-brand-name {
    border-top: 1px solid var(--secondary);
    border-bottom: 1px solid var(--secondary);
    text-align: center;
    overflow: hidden;
    line-height: 0.8;
    padding: 10px 0;
}

.footer-brand-name span img {
    width: 100%;
    max-width: 95%;
    margin: 0 auto;
   
}


/* --- SECTION 4: COPYRIGHT --- */
.footer-bottom {
    padding: 30px 0;
    color: var(--secondary);
    font-size: 13px;
    
}

.bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.legal-links {
    display: flex;
    gap: 30px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.legal-links a {
    color: var(--secondary);
    text-decoration: none;
}

.legal-links a:hover {
    text-decoration: underline;
}

/* Homepage Design Start */

/* --- HERO SECTION Start --- */
.hero-section {
    position: relative;
    width: 100%;
   
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
   
}

.hero-description {
    max-width: 650px;
    font-size: var(--h4);
    line-height: var(--heading-lh);
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(255,251,243,0.5), rgba(0,56,42,0.2));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
        min-height: 70vh;
    justify-content: space-between;
    text-align: center;
    gap: var(--gutter);
}

/* --- GROUP 1: TEXT --- */
.hero-text-group {
    
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--gutter);
}




/* --- GROUP 2: ACTIONS --- */
.hero-actions-group {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--gutter);
}

/* Search Wrapper */
.hero-search-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
}

.hero-search-bar {
    background-color: var(--dark-orange);
    width: 100%;
    max-width: 800px;
    height: 70px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    padding: 8px 12px 8px 25px;
    box-shadow: 0 0 50px rgba(236, 187, 61, 0.6);
    gap: 15px;
}

.inline-search-label {
    color: var(--surface);
    font-size: var(--text-md);
    font-weight: 500;
    white-space: nowrap;
}

.inline-search-input {
    background: transparent!important;
    border: none;
    outline: none;
    font-size: 16px;
    color: #fff;
    flex-grow: 1;
    font-weight: 400;
    border: 0!important;
    
}
.inline-search-input::placeholder { color: rgba(255, 255, 255, 0.6); font-weight: 300; }

.mic-icon {
    background: none;
    border: none;
    cursor: pointer;
    color: #fff;
    padding: 0;
    display: flex;
    margin-right: 5px;
}
.mic-icon svg { width: 20px; height: 20px; fill: currentColor; }

.submit-btn-inline {
    background-color: var(--bg);
    color: var(--primary);
    border: none;
    height: 100%;
    border-radius: 8px;
    padding: 0 30px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: transform 0.2s ease;
}
.submit-btn-inline:hover { transform: translateY(-1px); }
.submit-btn-inline svg { width: 16px; height: 16px; fill: currentColor; transform: rotate(-10deg); }

/* Bottom CTA Button */
.btn-hero-custom {
    background-color: var(--primary);
   border-color: var(--secondary) !important;
   color: var(--secondary) !important;
   letter-spacing:1px!important;
}
.btn-hero-custom:hover {
    background-color: var(--secondary);
    color: var(--primary)!important;
}

/* Why We Exist Section 02 Start */

.why-we-exist.section {
    
    background: linear-gradient(180deg, var(--primary) 70%, transparent 70%);

}

.why-we-exist-text {
    display: flex;
    column-gap: var(--gap-horz);
    
    color:white;
}

.why-we-exist-left {
    width:35%;

}

.why-we-exist-right {
    width: 65%;
    gap: var(--gutter);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.why-we-exist-right h3 {
    color: var(--bg);
    font-weight: 300;
}

.why-we-exist-media {
    background-color: var(--dark-orange);
    border-radius: 13px;
    box-shadow: 0 4px 77px var(--dark-orange);
    display: flex!important;
    align-items: center;
    column-gap: var(--gap-horz);
    overflow: hidden!important;
}

.why-we-exist.section .container {
    display: flex;
    flex-direction: column;
    gap: 120px;
}

.why-we-exist-right .button-primary.yellow-outline-button {
    color:var(--surface)!important;
}

.why-we-exist-right .button-primary.yellow-outline-button:hover {
    color:var(--primary)!important;
}

.why-we-exist-right .button-primary.yellow-outline-button:hover svg path {
    fill:var(--primary)!important;
}

.why-we-exist-media .logo {
    max-width: 230px;
}





/* End Why We Exist Section 02 */

/* =========================================
   Service Grid Section 03 Start
   ========================================= */

.services-grid-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    
}

.services-grid-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 40px;
}

.services-grid-card {
    position: relative;
    width: 100%;
    height: 400px;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
    border: 1px solid rgba(255,255,255,0.1); 
    box-shadow: 0 0 0 rgba(0,0,0,0);
    overflow: hidden;
}


.services-grid-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(
        to bottom, 
        rgba(0, 56, 42, 0.1) 0%, 
        rgba(0, 56, 42, 0.4) 50%, 
        rgba(0, 56, 42, 0.95) 100%
    );
    z-index: 1;
    transition: opacity 0.6s ease;
}

.services-grid-card-top {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.services-grid-card-top .button-outline-primary {
   
    background: transparent;
    border: none;
    padding: 0;
    color: var(--bg);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0;
    transform: translateY(-20px); 
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    pointer-events: none; 
}


.services-grid-card-top img {
    width: 28px;
    height: auto;
    display: block;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}


.services-grid-card-body {
    position: relative;
    z-index: 2;
    color: var(--surface);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    gap:7px;
}

.services-grid-card-body h4 {
    font-weight: 300;
    color: var(--bg);
    transform: translateY(10px); 
    transition: transform 0.6s cubic-bezier(0.19, 1, 0.22, 1);
}

.services-grid-card-body p {
    font-size: var(--base);
    line-height: 1.5;
    color: var(--bg);
    margin: 0;
    height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(10px);
    transition: 
        height 0.5s cubic-bezier(0.19, 1, 0.22, 1), 
        opacity 0.5s ease 0.1s,
        transform 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

.services-grid-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 35px rgba(236, 187, 61, 0.25);
    border-color: var(--dark-orange);
    
}

.services-grid-card:hover svg.theme-icon path {
    fill: var(--surface) !important;
    stroke: var(--surface) !important;
}

.services-grid-card svg.theme-icon {
    width: 40px;
    height: 40px;
}

.services-grid-card:hover .services-grid-card-top .button-outline-primary {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.services-grid-card:hover .services-grid-card-top img {
    transform: rotate(90deg) scale(1.1);
}

.services-grid-card:hover .services-grid-card-body h3 {
    transform: translateY(0);
}

.services-grid-card:hover .services-grid-card-body p {
    height: 85px; 
    opacity: 1;
    transform: translateY(0);
    margin-top: 12px;
}

/* Services grid section 03 End */

/* Our Approach Section 04 Start */

.our-approach-gallery.section {
    padding: 0!important;
    padding-bottom: var(--pad-y-lg) 0 !important;
}

.our-approach-eyebrow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--gutter);
}

.our-approach-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: var(--gutter);
}

.our-approach-icons {
     display: flex;
     gap: var(--gutter);
}

.our-approach-icons .icon-box svg.theme-icon  {
    width: 20px;
}

.our-approach .container {
    display: flex;
    flex-direction: column;
     gap: var(--gutter);
    
}

.our-approach-content {
    display: flex;
    flex-direction: column;
     gap: var(--gutter);
}

.our-approach-content h3 {
    font-weight: 300;
}


.our-approach-content p {
    font-size: var(--text-md);
    max-width:430px!important;
}

.carousel-wrapper {
  width: 100%;
  position: relative;
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y; 
}

.carousel-wrapper:active {
  cursor: grabbing;
}

.carousel-track {
  display: flex;
  width: max-content;
  gap: 10px;
  will-change: transform;
}

.carousel-slide {
  width: 400px;
  height: 480px;
  flex-shrink: 0;
  border-radius: 4px;
  overflow: hidden;
  user-select: none; 
  -webkit-user-drag: none;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none; 
}

/* Our Approach Section 04 End */

/* --- Core Values Section Start --- */

.core-values.section {
    background-color: #FDFBF7;
    padding: var(--pad-y-lg) 0;
}

.core-values article {
    position: relative;
    border-radius: 8px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    padding: 0 var(--pad-x-lg);

}

.core-values article .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    
    border-bottom: 1px solid rgba(0, 56, 42, 0.25);
    padding: 30px 0px
}

.core-values article .container .icon-box {
    line-height: 0!important;
}

.core-values article img,
.core-values article svg {
    flex: 0 0 50px; 
    width: 50px;
    height: 50px;
    object-fit: contain;
    padding: 10px;
    border: 2px solid var(--text);
    border-radius: 8px;
    color: #00382A;
    background-color: transparent;
    transition: all 0.3s ease;
}

.core-values article h4 {
    flex: 0 0 220px;
    margin: 0;
   color: var(--text);
    font-weight: 300;
    transition: color 0.3s ease;
}

.core-values article:hover h4 {
    font-weight: 500!important;
}


.core-values article p {
    flex: 1; 
    margin: 0;
    transition: color 0.3s ease;
}

.core-values article .button-primary {
    background-color: var(--surface);
    color:var(--text);
    padding: 12px 20px;
    border-radius: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transform: translateX(10px);
    transition: all 0.3s ease;
    
   
}

.core-values article:hover .theme-icon path {
    fill:var(--surface)!important
}
.core-values article:hover .theme-icon {
    background-color: var(--text)!important;
}



.core-values article .button-primary {
    flex: 0 0 140px; 
    display: inline-flex;
    align-items: center;
    justify-content: center;
    
    /* Styling */
    background-color: var(--surface);
    color: var(--text);
    padding: 12px 20px;
    border-radius: 11px;
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
    opacity: 0; 
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    border: none!important;
}

.core-values article .button-primary svg {
    flex: 0 0 auto; 
    width: 12px;
    height: auto;
    border: none;
    padding: 0;
}

.core-values article:hover {
    background-color: var(--dark-orange);
    border-color: transparent;
    box-shadow: 0 4px 65px var(--dark-orange);
    z-index: 2;
    transform: scale(1.01); 
}



.core-values article:hover h4,
.core-values article:hover p {
    color: var(--surface);
}

.core-values article:hover .button-primary {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* --- Core Values Section End --- */

/* Testimonial Slider Section 05 Start */
.testimonial-slider {
    display: flex;
    flex-direction: column;
  background-color: var(--bg);
  text-align: center;
  overflow: hidden; 
  gap: var(--gap-vert);
}


.testimonial-heading p {
    font-size:var(--text-md);
    font-weight: 400;
}

.testimonial-viewport {
  overflow: hidden;
  width: 100%;
}

.testimonial-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1); 
  width: 100%;
}


.testimonial-slide {
  flex: 0 0 100%; 
  width: 100%;
 /* padding: 0 1rem; */
}

.testimonial-content {
 display: flex;
 flex-direction: column;
  max-width: 900px;
  margin: 0 auto;
  gap: var(--gutter);
}

.testimonial-slider .container {
    display: flex;
    flex-direction: column;
     gap: var(--gap-vert);
}


.t-company {
  display: block;

}

.testimonial-meta {
    color:var(--dark-orange);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  align-items: center; 
  gap: 12px;
  height: 44px; 
}

.dot-btn {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.dot-btn .icon-inactive {
  display: block;
  width: 12px; 
  height: 12px;
}

.dot-btn .icon-active {
  display: none;
}

.dot-btn.active .icon-inactive {
  display: none;
}

.dot-btn.active .icon-active {
  display: block;
  width: 24px; 
  height: auto; 
  filter: drop-shadow(0px 2px 4px rgba(209, 150, 0, 0.3)); 
}


.dot-btn:hover .icon-inactive circle {
  stroke: var(--primary); 
  stroke-opacity: 1;
}

/* End Testimonial Slider Section */

/* --- Company Highlights Section 06 Start --- */

.highlights-grid {
  display: flex;
gap: var(--gap-horz);
  align-items: start;
}

.highlights-left {
  position: relative; 
  width: 50%;
}

.highlights-right {
    width: 50%;
}

.highlights-heading {
  margin: 0;
  font-weight: 300;
  
}

.stats-grid {
  display: flex;
  flex-direction: row;
  gap:var(--gap-horz); 
  flex-wrap: wrap;
}

.stat-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.stat-value-wrapper {
  display: flex;
  align-items: baseline;
  color: var(--primary);
  line-height: 1;
}

.stat-number {
  font-family: "PP Museum";
  font-size: var(--counter);
  font-weight: 400;
}

.stat-symbol {
  font-family: "PP Museum";
  font-size: var(--counter);
  margin-left: 4px;
  color: var(--primary);
}

.stat-label {
  margin: 0;
 
}

/* --- Company Highlights Section 06 End --- */

/* How We Serve Section 07 Starts */

.how-we-serve {
    padding: 0px var(--pad-x-lg);
    padding-top: var(--pad-y-lg);
    overflow: hidden;
}

.how-we-serve-grid {
    display: flex;
    flex-direction: row;
    gap: var(--gap-horz);
}

.how-we-serve-list {
    display: flex;
    flex-direction: column;
    gap: var(--gutter);
    position: relative;
    z-index: 2;
    width:50%;
    justify-content: space-between;
}

.how-we-serve-list .button-primary.yellow-outline-button {
    width: fit-content;
}

.how-we-serve-list h4 {
    color:var(--dark-orange);

}

.how-we-serve-item {
    margin: 0;
    padding: 0;
}

.how-we-serve-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.how-we-serve-link h2:first-child {
    
    font-weight: 700;
    color: var(--primary);
    opacity: 0.6;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.how-we-serve-icon {
    color: var(--secondary); 
    opacity: 0; 
    transform: translateX(-10px);
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.how-we-serve-link.active {
    border-bottom-color: var(--primary);
}

.how-we-serve-link h2 {
    font-weight: 300!important;
}

.how-we-serve-link.active h2:first-child {
    opacity: 1; 
    font-weight: 700; 
}

.how-we-serve-link.active h2 {
    font-weight: 700!important;
}

.how-we-serve-link.active .how-we-serve-icon {
    opacity: 1;
    transform: translateX(0);
}

.how-we-serve-media-col {
    position: relative;
    width: 50%;
    height: 500px; 
    border-radius: 8px;
    overflow: hidden;
}

.how-we-serve-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.05);
    z-index: 1;
    transition: 
        opacity 0.6s ease,
        visibility 0.6s ease,
        transform 0.8s cubic-bezier(0.19, 1, 0.22, 1);
}

.how-we-serve-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.how-we-serve-media.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    z-index: 2;
}

.how-we-serve-sections {
    background-color: var(--primary);
    color: #ffffff;
    padding-top: 100px;
    padding-bottom: 100px;
}

.how-we-serve-sections-items {
    display: flex;
    flex-direction: column;
    gap: 100px;
}

.how-we-serve-sections-item {
    width: 100%;
}

.how-we-serve-sections-top {
    display: grid;
    grid-template-columns: 1fr 1fr; 
    gap: 60px;
    align-items: flex-end; 
    padding-bottom: 50px;
    margin-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.how-we-serve-sections-top > div:first-child p:first-child {
    color: var(--secondary); 
    font-family: sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.how-we-serve-sections-top h3 {
    font-family: serif;
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1.1;
    margin: 0;
    color: #fff;
    font-weight: 400;
}

.how-we-serve-sections-top > div:last-child p {
    font-family: sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85); 
    margin: 0;
    max-width: 500px;
}

.how-we-serve-sections-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
}

.how-we-serve-sections-blurbs {
    display: flex;
    flex-direction: column;
    gap: 50px; 
    padding-right: 20px;
}

.how-we-serve-sections-blurb {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.how-we-serve-sections-icon {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
}

.how-we-serve-sections-icon img {
    width: 100%;
    height: auto;
    display: block;
    filter: invert(86%) sepia(26%) saturate(1074%) hue-rotate(358deg) brightness(102%) contrast(88%);
}

.how-we-serve-sections-blurb > div:last-child {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.how-we-serve-sections-blurb h4 {
    font-family: sans-serif;
    font-size: 20px;
    font-weight: 400;
    margin: 0;
    color: #fff;
}

.how-we-serve-sections-blurb p {
    font-family: sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}


.how-we-serve-sections-media {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    min-height: 400px;
}

.how-we-serve-sections-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 16px;
}


/* End Who We Serve Section 07 */

/* --- Founders Message Section 08 --- */
.founders-message {
  position: relative;
  background-color: var(--bg); 
  overflow: hidden;
  padding-top: clamp(100px, 12vw, 200px); 
  padding-bottom: clamp(60px, 6vw, 120px);
  
  z-index: 1;
}

.founders-message-shape {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background-repeat: repeat-y; 
  background-position: top center;
  background-size: 100% auto; 
  opacity: 0.5;
}

.founders-message-bg {
  display: flex;
  justify-content: center;
  position: relative;
  background-color: var(--primary);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 75vh!important;
  text-align: center;
}

.founders-message-bg .container {
    display: flex;
    align-items: center;
    justify-content: center;
}


.founders-message-bg::before {
  content: "";
  position: absolute;
  inset: 0; 
  background: rgba(0, 56, 42, 0.3);
  z-index: 1;
}

.founders-message-content {
  position: relative;
  z-index: 2; 
  max-width: 850px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: var(--gutter);
}

.founders-message-content h2 {
  font-weight: 300;
  color: var(--surface);
}

.founders-message-meta p {
    color:var(--surface);
}



/* End Founder Section 08 */

/* Contact us Section 09 Starts */
.contact-us {
  background-color: var(--bg);
  color: var(--primary);
  position: relative;
}

.contact-us-grid {
  display: flex;
 flex-direction: row;
 gap:var(--gap-horz);
}

.contact-us-detail:nth-of-type(2) a {
    display: none;
}

.contact-us-left {
  display: flex;
  flex-direction: column;
  gap:var(--gutter);
  width: 40%;
}

.contact-us-right {
  width: 60%;
  display: flex;
  flex-direction: column;
}

.contact-us-left h3 {
     font-weight: 300;
}

.contact-us-form {
  width: 100%;
}

.contact-us-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-us-form .form-row,
.contact-us-form .gform_fields {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.contact-us-form .field-half,
.contact-us-form .gfield {
  flex: 1 1 45%;
  min-width: 250px;
}

.contact-us-form .field-full,
.contact-us-form .gfield_textarea {
  flex: 1 1 100%;
  width: 100%;
}

.contact-us-form input[type="text"],
.contact-us-form input[type="email"],
.contact-us-form input[type="tel"],
.contact-us-form select,
.contact-us-form textarea {
  width: 100%;
  background: transparent;
  border: 2px solid #C4C4C4;
  border-radius: 6px;
  padding: 18px 20px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 600;
  outline: none;
  transition: border-color 0.3s;
  box-sizing: border-box;
}

.contact-us-form::placeholder {
    font-size:80px;
}

.contact-us-form input::placeholder,
.contact-us-form textarea::placeholder {
    font-size: 13px!important; 
    letter-spacing: 1px;
    font-weight: 600;/* change to any size you want */
}

.contact-us-form input:focus,
.contact-us-form textarea:focus {
  border-color: var(--secondary);
}

.contact-us-form textarea {
    height: 200px;
    overflow: hidden;
  resize: vertical;
}

.contact-us-form input[type="submit"],
.contact-us-form button[type="submit"] {
  background-color: var(--primary);
  color: var(--surface);
  border: none;
  border-radius: 9px;
  padding: 12px 35px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  cursor: pointer;
  align-self: flex-end;
  display: inline-flex;
  float: right;
  line-height: 1.6em;
}

.wpcf7-form-control.wpcf7-submit.has-spinner {
    position: relative;
    padding-left: 55px; /* space for icon */
}

.wpcf7-form-control.wpcf7-submit.has-spinner


.contact-us-form input[type="submit"]:hover {
  opacity: 0.9;
}

.contact-us-aside {
  background-color: var(--dark-orange);
  padding: 20px;
  border-radius: 11px;
 box-shadow: 0 4px 50px -10px var(--dark-orange);
  color: var(--primary);
  width: 100%;
  max-width: 400px;
}

.contact-us-aside p {
  color:var(--primary)!important;
}

.contact-us-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}

.contact-us-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--primary);
  font-weight: 700;
  font-size: 16px;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}

.contact-us-link:hover {
  border-bottom-color: var(--primary);
}

.contact-us-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}

.contact-us-details {
     display: flex;
    gap: 0px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}

.contact-us-detail {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-us-text {
    display: flex;
    flex-direction: column;
    gap: var(--gutter);
}

.contact-us-detail-right a {
    font-size: var(--text-base);
    text-decoration: underline;
    font-weight: 600;
}

.contact-us-detail-text a {
    font-weight: 600;
    text-decoration: underline;
}
.wpcf7-form  .cf7-row {
  display: flex;
  gap: 16px;
}
.wpcf7-form  p br{
  display: none;
}

.wpcf7-form  .cf7-col {
  flex: 1;
}

.cf7-row input[type="text"] {
  width: 100%;
}
.cf7-label{
  display: none;
}

.wpcf7-form-control.wpcf7-select.wpcf7-validates-as-required {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url('/wp-content/uploads/2026/01/Vector-10.svg');
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 14px;
}

.wpcf7-submit {
    background-image: url('/wp-content/uploads/2026/01/Vector-11.svg');
    background-repeat: no-repeat;
    background-position: right 107px center;
    background-size: 15px;
}



/* Contact us Section 09 Ends */

/* Call To Action Section 10 Starts */
.call-to-action {
  background-color: var(--bg);
  padding: 120px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.call-to-action-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap:30px;
}

.call-to-action-inner h2 {
  font-weight: 500;
}

.call-to-action-buttons {
  display: flex;
  flex-direction: column;
  gap: var(--gutter);
  align-items: center;
}

.call-to-action-buttons .button-primary {
    color:var(--secondary);
}

.call-to-action-buttons .button-primary:hover {
    color:var(--primary);
}



/* Call To Action Section 10 End */

/* =========================================
   END HOMEPAGE DESGN
   ========================================= */
   
   
  /* =========================================
   SERVICE PAGE DESIGN STARTS
   ========================================= */
   
.wealth-services{
     background-color: var(--secondary);
}
.wealth-services-sections-item {
 
  color: var(--primary);
  padding: var(--pad-v) 0;
  border-bottom: 1px solid rgba(0, 56, 42, 0.1);
}

.wealth-services-sections-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 3rem;
  border-bottom: 1px solid rgba(0, 56, 42, 0.2);
  padding-bottom: 20px;
}

.wealth-services-sections-top-left img {
  width: 60px;
  height: auto;
  display: block;
}

.wealth-services-sections-top-right p {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 700;
  margin: 0;
  opacity: 0.8;
}

.wealth-services-sections-row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--gutter);
  margin-bottom: 4rem;
}

.wealth-services-sections-left h3 {
  font-family: 'Times New Roman', serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.wealth-services-sections-left p {
  font-size: var(--text-base);
  line-height: 1.6;
  max-width: 90%;
  opacity: 0.9;
}

.wealth-services-sections-accordion {
  border-top: 1px solid rgba(0, 56, 42, 0.2);
}

.wealth-services-sections-accordion details {
  border-bottom: 1px solid rgba(0, 56, 42, 0.2);
  overflow: hidden;
}

.wealth-services-sections-accordion summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 0;
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: color 0.3s ease;
}

.wealth-services-sections-accordion summary::-webkit-details-marker {
  display: none;
}

.wealth-services-sections-accordion summary::after {
  content: '';
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--primary);
  border-bottom: 2px solid var(--primary);
  transform: rotate(45deg);
  transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  margin-right: 10px;
}

.wealth-services-sections-accordion details[open] summary::after {
  transform: rotate(-135deg); 
}

.wealth-services-sections-accordion .accordion-content {
  padding-bottom: 20px;
  font-size: 15px;
  line-height: 1.6;
  opacity: 0.8;
}

.wealth-services-sections-gallery {
  display: flex;
  width: 100%;
  gap: 20px;
  margin-top: 2rem;
}

.wealth-services-sections-gallery img {
  flex: 1; 
  min-width: 0; 
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 4px;
  transition: transform 0.5s ease;
}

.wealth-services-sections-gallery img:hover {
  transform: scale(1.02);
}

/* =========================================
   END SERVICE PAGE DESIGN 
   ========================================= */
   
   /* =========================================
   HOW WE SERVE PAGE DESIGN STARTS
   ========================================= */


/* --- How We Work Section --- */
.how-we-work {
  background-color: var(--bg);
  position: relative;
 
  
}

.how-we-work-heading {
  margin-bottom: 5rem; 
}

.how-we-work-heading h3 {
  color: var(--secondary); 
  font-family: 'Times New Roman', serif; 
  font-size: clamp(32px, 4vw, 52px); 
  font-weight: 400;
  line-height: 1.1;
  max-width: 750px; 
}

.how-we-work-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr); 
  gap: 60px;
  align-items: start;
}

.how-we-work-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.how-we-work-item h4 {
  font-family: 'Times New Roman', serif;
  font-size: 28px;
  color: var(--primary); 
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
}

.how-we-work-item p {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: var(--primary);
  opacity: 0.8; 
  margin: 0;
  max-width: 340px;
}

/* =========================================
   HOW WE SERVE PAGE DESIGN ENDS
   ========================================= */


   



/* End Site */










/* =========================================
   Section: Approach Statement
   ========================================= */

.approach-statement {
    background-color: #00382A; /* Replace with your bg var */
    color: #FFFFFF;            /* Replace with your text var */
    padding: 100px 0 50px;     /* Adjust padding to match design spacing */
}

/* Container setup (assuming standard theme container, specific overrides here) */
.approach-statement .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.approach-statement-grid {
    display: grid;
    /* Left column is narrow, Right column takes remaining space */
    grid-template-columns: 200px 1fr; 
    gap: 40px;
    align-items: start;
}

/* --- Left Column: Icon + Eyebrow --- */

.approach-statement-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

/* The Star Icon Box */
.approach-statement-left .icon-box {
    width: 50px;
    margin-bottom: 25px;
}

.approach-statement-left .icon-box img,
.approach-statement-left .icon-box svg {
    width: 100%;
    height: auto;
    display: block;
}

/* The "OUR APPROACH" text */
.approach-statement-left .secondary-text {
    color: #D19600; /* Replace with your gold/accent var */
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    font-family: sans-serif; /* Replace with theme font */
}

/* --- Right Column: Heading + Description --- */

.approach-statement-right {
    padding-left: 20px;
}

.approach-statement-right h2 {
    font-family: serif; /* Replace with theme font */
    font-size: 48px;
    font-weight: 300;
    line-height: 1.1;
    color: #FFFFFF; /* Replace with your text var */
    margin: 0 0 30px 0;
}

.approach-statement-right .desc {
    font-size: 18px;
    line-height: 1.6;
    color: #FFFFFF; /* Replace with your text var */
    max-width: 800px;
}

.approach-statement-right .desc p {
    margin-bottom: 1.5em;
}

.approach-statement-right .desc p:last-child {
    margin-bottom: 0;
}

/* =========================================
   Section: Approach Statement Icons (Bottom Row)
   ========================================= */

.approach-statement-icons {
    background-color: #00382A; /* Replace with your bg var */
    padding-bottom: 80px;
}

.approach-statement-icons .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.approach-statement-icons-inner {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding-top: 40px;
    /* The thin separation line */
    border-top: 1px solid rgba(255, 255, 255, 0.1); 
}

.approach-statement-icons-inner .icon-box {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.approach-statement-icons-inner .icon-box svg,
.approach-statement-icons-inner .icon-box img {
    width: 100%;
    height: auto;
    /* Style the icons to match the Gold color */
    fill: #D19600;  /* Replace with your accent var */
    color: #D19600;
}

/* If SVGs are strokes/outlines */
.approach-statement-icons-inner .icon-box svg path {
    stroke: #D19600; /* Replace with your accent var */
}

/* =========================================
   Section: Approach Pillar
   ========================================= */

.approach-pillar {
    background-color: #00382A; /* Deep Green Background */
    color: #FFFFFF;            /* White Text */
    padding: 60px 0;           /* Vertical spacing for each pillar */
}

/* Container setup */
.approach-pillar .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Grid Layout: Text Left, Image Right */
.approach-pillar-grid {
    display: grid;
    grid-template-columns: 1fr 1fr; /* Equal width columns */
    gap: 60px;                      /* Space between text and image */
    align-items: center;            /* Vertically center the content */
}

/* --- Left Column: Content --- */

.approach-pillar-left {
    padding-right: 20px; /* Extra breathing room */
}

/* Header Area (Icon + Title) */
.approach-pillar-head {
    display: flex;
    align-items: center; /* Align icon with text vertically */
    gap: 20px;           /* Space between icon and text */
    margin-bottom: 20px;
}

/* Icon Box Styling */
.approach-pillar-head .icon-box {
    width: 32px;  /* Adjust size based on your icons */
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0; /* Prevent icon from squishing */
}

.approach-pillar-head .icon-box svg,
.approach-pillar-head .icon-box img {
    width: 100%;
    height: auto;
    /* Style for Outline Icons (Gold) */
    stroke: #D19600; 
    color: #D19600;
    fill: none; 
}

/* If your SVGs use fill instead of stroke, uncomment this: */
/* 
.approach-pillar-head .icon-box svg path {
    fill: #D19600;
} 
*/

/* Heading Styling */
.approach-pillar-head h2 {
    font-family: serif; /* Replace with your theme serif font */
    font-size: 32px;
    font-weight: 400;
    color: #FFFFFF;
    margin: 0;
    line-height: 1.2;
}

/* Description Text Styling */
.approach-pillar-desc {
    font-family: sans-serif; /* Replace with your theme sans-serif */
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85); /* Slightly transparent white for readability */
    max-width: 480px; /* Prevents text from stretching too wide */
}

.approach-pillar-desc p {
    margin-bottom: 15px;
}

.approach-pillar-desc p:last-child {
    margin-bottom: 0;
}

/* --- Right Column: Image --- */

.approach-pillar-media {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 6px; /* Slight rounding on image corners per design */
}

.approach-pillar-media img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover; /* Ensures image fills container nicely */
    aspect-ratio: 16 / 10; /* Enforces a consistent rectangular shape */
}

/* =========================================
   Section: Approach Outcomes
   ========================================= */

.approach-outcomes {
    background-color: #FDFBF7; /* Warm Cream background from image */
    padding: 60px 0;
    color: #1D1D1D; /* Dark text for readability */
}

.approach-outcomes .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    
    /* 
       NOTE: If you modify your PHP to put multiple cards 
       inside one container, this Grid code will 
       automatically arrange them side-by-side.
    */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

/* --- The Card Styling --- */

.approach-outcome-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Image Wrapper */
.approach-outcome-media {
    margin-bottom: 25px;
    overflow: hidden;
    border-radius: 8px; /* Rounded corners */
}

.approach-outcome-media img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4 / 3; /* Keeps images consistent size */
    object-fit: cover;
    transition: transform 0.3s ease;
}

/* Optional: Slight zoom effect on hover */
.approach-outcome-card:hover .approach-outcome-media img {
    transform: scale(1.03);
}

/* Headline: "Go from anxious to anchored" */
.approach-outcome-card h3 {
    color: #D19600; /* Mustard/Gold color */
    font-family: serif; /* Replace with your theme font */
    font-size: 28px;
    line-height: 1.2;
    font-weight: 400;
    margin: 0 0 15px 0;
}

/* Description Text */
.approach-outcome-card .desc {
    font-family: sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #1D1D1D;
    opacity: 0.9;
}

.approach-outcome-card .desc p {
    margin-bottom: 1em;
}

/* =========================================
   Section: About Page Hero
   ========================================= */

.about-page-hero {
    background-color: #00382A; /* Deep Forest Green */
    position: relative;        /* To contain the absolute bg shape */
    padding: 60px 0 100px;     /* Spacing top/bottom */
    color: #FFFFFF;            /* Default text white */
    text-align: center;        /* Center all content */
    overflow: hidden;          /* Keep the stars inside */
}

/* Background Star/Shape Overlay */
.about-page-bg-shape {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-repeat: repeat; /* or no-repeat/cover depending on your image */
    background-position: center;
    opacity: 0.8;              /* Adjust visibility of the stars */
    z-index: 1;                /* Sit behind content */
    pointer-events: none;      /* Click-through */
}

/* Container to sit above the background shape */
.about-page-hero .container {
    position: relative;
    z-index: 2;
    max-width: 1000px; /* Restrict width for better focus */
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Team Image Styling --- */
.about-page-image {
    margin-bottom: 40px; /* Space between image and text */
}

.about-page-image img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 900px;    /* Max width for the image */
    margin: 0 auto;
    border-radius: 10px; /* Rounded corners per design */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); /* Subtle depth */
}

/* --- Typography --- */

/* "ABOUT US" Eyebrow */
.about-page-hero .secondary-text {
    color: #D19600;      /* Gold/Mustard Accent */
    font-family: sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0 0 15px 0;
    display: inline-block;
}

/* "Your Goals, Our Work" Heading */
.about-page-hero h1 {
    color: #FFFFFF;
    font-family: serif;  /* Replace with your theme serif font */
    font-size: 48px;
    font-weight: 300;    /* Light weight looks elegant */
    line-height: 1.2;
    margin: 0;
}


/* =========================================
   Section: About Intro Statement
   ========================================= */

.about-intro-statement {
    background-color: #00382A; /* Deep Forest Green */
    color: #FFFFFF;            /* White Text */
    padding: 100px 0;          /* Generous vertical spacing */
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-intro-statement .container {
    max-width: 900px; /* Constrain width to force text wrapping like the image */
    margin: 0 auto;
    padding: 0 20px;
    text-align: center; /* Center alignment */
}

.about-intro-statement h2 {
    font-family: serif; /* Replace with your theme's serif font (e.g., Playfair Display) */
    font-size: 38px;    /* Large, legible size */
    font-weight: 300;   /* Light/Regular weight for elegance */
    line-height: 1.6;   /* Loose line height for readability */
    color: #FFFFFF;
    margin: 0;
}


/* =========================================
   Section: Company Pillars
   ========================================= */

.company-pillars {
    background-color: #00382A; /* Deep Green */
    color: #FFFFFF;
    padding: 80px 0;
}

.company-pillars .container {
    max-width: 1000px; /* Constrain width for better reading line */
    margin: 0 auto;
    padding: 0 20px;
}

/* "PILLARS" Eyebrow */
.company-pillars .secondary-text {
    color: #D19600; /* Gold */
    font-family: sans-serif; /* Replace with your sans font */
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* Top separator line */
}

/* =========================================
   The Pillar Card
   ========================================= */

.company-pillar {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); /* The separator lines */
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden; /* Contains the glow */
}

/* The Container inside the loop */
.company-pillar .container {
    display: flex;
    align-items: center; /* Vertically center content */
    padding: 35px 20px;
    position: relative; /* Context for absolute icon */
}

/* --- Left Side: Number & Icon Wrapper --- */
/* Note: PHP has .pillar-number and .icon-box inside .company-pillar-top */
.company-pillar-top {
    display: flex;
    align-items: center;
}

/* The Number styling */
.pillar-number {
    font-family: serif; /* Replace with your serif font */
    font-size: 32px;
    color: #D19600; /* Gold by default */
    width: 60px;    /* Fixed width to align text */
    flex-shrink: 0;
    transition: color 0.3s ease;
}

/* The Star Icon */
/* We position this absolutely to the right, even though it's in the 'top' div in PHP */
.company-pillar .icon-box {
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%) translateX(20px); /* Start slightly offset */
    width: 30px;
    height: 30px;
    opacity: 0; /* Hidden by default */
    transition: all 0.4s ease 0.1s; /* Slight delay for smoothness */
    display: flex;
    align-items: center;
    justify-content: center;
}

.company-pillar .icon-box svg, 
.company-pillar .icon-box img {
    width: 100%;
    height: auto;
    fill: #FFFFFF; /* Icon becomes white on hover */
    stroke: #FFFFFF;
}

/* --- Middle: Content (The Swap) --- */

.company-pillar-content {
    flex: 1; /* Take up remaining space */
    padding-left: 20px;
    padding-right: 60px; /* Space so text doesn't hit the star icon */
    
    /* THE TRICK: Grid stack to overlay Title and Description */
    display: grid;
    grid-template-areas: "stack"; 
    align-items: center;
}

/* The Title (Stewardship, etc) */
.company-pillar-content h2 {
    grid-area: stack; /* Occupy same space as desc */
    margin: 0;
    font-family: serif;
    font-size: 42px;
    font-weight: 300;
    color: #FFFFFF;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* The Description */
.company-pillar-content .desc {
    grid-area: stack; /* Occupy same space as title */
    opacity: 0;       /* Hidden by default */
    transform: translateY(10px); /* Start slightly lower */
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    /* Text styling */
    font-family: sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
}

/* =========================================
   HOVER STATE (The Interaction)
   ========================================= */

.company-pillar:hover {
    background-color: #D19600; /* Change background to Gold */
    border-color: transparent; /* Hide bottom border */
    
    /* The Glow Effect seen in item 4 */
    box-shadow: 0 0 35px rgba(209, 150, 0, 0.6);
    z-index: 10; /* Bring above others */
}

/* Number turns white */
.company-pillar:hover .pillar-number {
    color: #FFFFFF;
}

/* Title fades out and moves up */
.company-pillar:hover .company-pillar-content h2 {
    opacity: 0;
    transform: translateY(-10px);
}

/* Description fades in and moves to place */
.company-pillar:hover .company-pillar-content .desc {
    opacity: 1;
    transform: translateY(0);
}

/* Icon appears from right */
.company-pillar:hover .icon-box {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}


/* =========================================
   Section: Leadership Feature
   ========================================= */

.leadership-feature {
    background-color: #FDFBF7; /* Cream background */
    padding: 100px 0;          /* Vertical spacing */
    color: #00382A;            /* Deep Green text */
}

.leadership-feature .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Flex/Grid Row Layout */
.leadership-feature-row {
    display: grid;
    /* Left column (Label) is narrow, Right column (Text) takes remaining space */
    grid-template-columns: 250px 1fr; 
    gap: 40px;
    align-items: start;
}

/* --- Left Column: Eyebrow Label --- */
.leadership-feature-left .secondary-text {
    color: #D19600;            /* Gold/Mustard */
    font-family: sans-serif;   /* Replace with theme sans font */
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    /* Optical adjustment to align with the top of the large text on the right */
    padding-top: 10px; 
}

/* --- Right Column: Main Heading/Text --- */
/* Note: PHP outputs this as an H2, so we style the H2 to look like the design text */
.leadership-feature-right h2 {
    font-family: sans-serif;   /* Replace with theme sans font (e.g., Helvetica, Roboto) */
    font-size: 32px;           /* Large readable size */
    font-weight: 300;          /* Light/Regular weight */
    line-height: 1.5;          /* Good readability */
    color: #00382A;            /* Deep Green */
    margin: 0;
    max-width: 900px;          /* Prevents line lengths from getting too long */
}

/* =========================================
   Section: Leadership Team
   ========================================= */

.leadership-team {
    background-color: #FDFBF7; /* Cream background */
    padding: 80px 0;
}

.leadership-team .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    
    /* Grid Layout for Team Members */
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 30px;
}

/* --- The Card Wrapper --- */
.leadership-member {
    position: relative;
    width: 100%;
    height: 500px; /* Fixed height ensures consistent card size */
    border-radius: 4px;
    overflow: hidden;
    background-color: #00382A; /* Base color behind image */
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* --- The Image (Background) --- */
.leadership-member-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.leadership-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.6s ease;
}

/* --- The Content Overlay --- */
.leadership-member-main {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    padding: 40px;
    box-sizing: border-box;
    
    /* Default State: Content at bottom, Gradient background */
    display: flex;
    flex-direction: column;
    justify-content: flex-end; 
    background: linear-gradient(to top, rgba(0, 56, 42, 0.95) 10%, rgba(0, 56, 42, 0) 60%);
    
    transition: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* --- Name & Position --- */
.leadership-member-meta {
    position: relative;
    z-index: 3;
    width: 100%;
    transition: transform 0.5s ease;
}

.leadership-member-name {
    font-family: serif; /* Replace with your theme serif */
    font-size: 32px;
    font-weight: 400;
    color: #FFFFFF;
    margin: 0 0 10px 0;
}

.leadership-member-position {
    font-family: sans-serif;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #FFFFFF;
    margin: 0;
    opacity: 0.9;
}

/* --- The Button --- */
.leadership-about-btn {
    position: absolute;
    right: 40px;
    bottom: 40px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.6);
    color: #FFFFFF;
    padding: 12px 24px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.4s ease;
    z-index: 4;
}

.leadership-about-btn:hover {
    background-color: #FFFFFF;
    color: #00382A;
}

/* --- The Bio Text (Hidden by default) --- */
.leadership-member-bio {
    opacity: 0;
    height: 0;
    overflow: hidden;
    margin-top: 0;
    
    font-family: sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    
    transition: opacity 0.4s ease, margin 0.4s ease;
}

.leadership-member-bio p {
    margin-bottom: 1em;
}

/* =========================================
   ACTIVE STATE (Bio Open)
   ========================================= */

/* 1. Change Background to Solid Deep Green */
.leadership-member.bio-active .leadership-member-main {
    background: #00382A; /* Solid color covers image */
    justify-content: flex-start; /* Move content to top */
}

/* 2. Move Name/Position to Top */
.leadership-member.bio-active .leadership-member-meta {
    margin-bottom: 40px; /* Make space for the bio below */
}

/* 3. Move Button to Top Right */
.leadership-member.bio-active .leadership-about-btn {
    bottom: auto;
    top: 40px;
    border-color: rgba(255, 255, 255, 0.8);
}

/* 4. Reveal Bio */
.leadership-member.bio-active .leadership-member-bio {
    opacity: 1;
    height: auto; /* Allow height to expand */
    overflow-y: auto; /* Scroll if text is too long */
    margin-top: 20px;
    
    /* Custom Scrollbar for sleek look */
    scrollbar-width: thin;
    scrollbar-color: rgba(255,255,255,0.3) transparent;
}

/* Optional: Slight zoom on image behind the overlay */
.leadership-member.bio-active .leadership-member-image img {
    transform: scale(1.05);
}



/* =========================================
   Section: Measuring Success
   ========================================= */

.measuring-success {
    background-color: #D19600; /* Mustard/Gold background from image */
    color: #00382A;            /* Deep Green text */
    padding: 100px 0;          /* Generous vertical spacing */
}

.measuring-success .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* --- Top Row: Label + Main Heading --- */
.measuring-success-row {
    display: grid;
    /* Left column (Label) fixed width, Right column (Text) takes rest */
    grid-template-columns: 250px 1fr; 
    gap: 40px;
    margin-bottom: 80px; /* Space between Intro and Points */
}

.measuring-success-left .secondary-text {
    font-family: sans-serif; /* Replace with your theme sans font */
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin: 0;
    padding-top: 10px; /* Optical alignment with top of H2 */
    color: #00382A;
}

.measuring-success-right h2 {
    font-family: serif; /* Replace with your theme serif font */
    font-size: 40px;    /* Large, elegant size */
    font-weight: 300;
    line-height: 1.3;
    margin: 0;
    max-width: 900px;
}

/* --- Bottom Row: 3 Points --- */

.measuring-success-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 Equal Columns */
    gap: 40px;
}
/* Styling Individual Points */
.measuring-success-point h3 {
    font-family: serif;
    font-size: 28px;
    font-weight: 400;
    margin: 0 0 20px 0;
    color: #00382A;
}

.measuring-success-point .desc {
    font-family: sans-serif;
    font-size: 15px;
    line-height: 1.6;
    color: #00382A;
}
