@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Manrope:wght@200..800&display=swap');

* {
    font-family: 'Manrope';
}

 :root {
            --primary-gold: rgb(201, 162, 39);
            --primary-dark: rgb(11, 31, 58);
            --text-gray: rgb(91, 103, 112);
            --bg-card: rgb(245, 247, 250);
            --font-main: 'Manrope', sans-serif;
            --font-body: "Inter", sans-serif /* Fallback for standard text */
        }
/*==============================
Header
==============================*/
body,
* {
    box-sizing: border-box;
}
body {
    background: #fff;
}
.site-header {
    background: #111f3b;
    padding: 13.5px 0;
}

.container {
    max-width: 1280px;
    margin: 0px auto;
    padding: 0px 64px;
    display: flex;
    align-items: center;
    position: relative;
    justify-content: space-between;
    width: 100%;
}

.site-header .container {
    padding: 0 32px;
}

.site-logo {
    flex-shrink: 0;
}

.site-logo img {
    display: block;
    max-height: 48px;
    max-width: 180px;
}

/* Navigation Wrapper */
.main-navigation {
    flex: 1;
    display: flex;
    justify-content: end;
    align-items: center;
    position: relative;
    padding-right: 36px;
}

/* Navigation */
header.site-header {
    position: sticky;
    top: 0;
    z-index: 9;
}

.menus-wrap {
    display: block;
}

.primary-menu {
    display: flex;
    align-items: center;
    gap: 36px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.primary-menu li {
    margin: 0;
}

.primary-menu li a {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .6px;
    transition: .3s;
}

.primary-menu li.current-menu-item>a,
.primary-menu li a:hover {
    color: #d3ad33;
}

/* CTA */

.header-btn {
    flex-shrink: 0;
}

.btn-consultation {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 24px;
    background: #d3ad33;
    color: #132744 !important;
    text-decoration: none;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700;
    transition: .3s;
    border-radius: 2px;
}

.btn-consultation:hover {
    background: #fff;
}

/* Toggle */

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    border: none;
    background: none;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 26px;
    height: 3px;
    margin: 5px auto;
    background: #fff;
    transition: .3s;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


/*=========================================
Footer
=========================================*/

.site-footer {
    background: #071321;
    color: #fff;
    padding: 80px 0 24px;
}

li:last-child img.emoji {
    filter: brightness(0) saturate(100%) invert(33%) sepia(73%) saturate(7434%) hue-rotate(334deg) brightness(94%) contrast(92%);
}

/* Override header container */
.site-footer .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 64px;
    display: block;
}

.footer-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.footer-col {
    min-width: 0;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-logo img {
    max-width: 180px;
    display: block;
}

.footer-about p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.75;
    margin-bottom: 24px;
    max-width: 300px;
    font-weight: 500;
}

.footer-social {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #182536;
    text-decoration: none;
    transition: .3s;
    font-weight: 700;
    font-size: 11px;
    color: rgb(255, 255, 255);
}

.footer-social a:hover {
    background: #d3ad33;
    color: #071321;
}

.footer-col h4 {
    font-weight: 700;
    font-size: 12px;
    color: rgb(201, 162, 39);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-menu,
.footer-policy-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 16px;
}

.footer-menu li a,
.footer-policy-menu li a {
    text-decoration: none;
    transition: .3s;
    cursor: pointer;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    font-family: "Inter", sans-serif;
}

.footer-newsletter p,
.footer-about p,
.footer-contact li {
    font-family: "Inter", sans-serif;
}

.footer-menu li a:hover,
.footer-policy-menu li a:hover {
    color: #d3ad33;
}

.footer-contact {
    max-width: 250px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-contact li {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    display: flex;
    align-items: flex-start;
    gap: 6px;
    line-height: 1.5;
    margin-bottom: 6px;
}

.footer-contact a {
    color: #d3ad33;
    text-decoration: none;
}

.footer-newsletter p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.65;
    margin-bottom: 20px;
}

.footer-newsletter form {
    display: block;
}

.footer-newsletter input {
    width: 100%;
    height: 54px;
    padding: 0 16px;
    border: 1px solid #26374b;
    background: #182536;
    color: #fff;
    outline: none;
    margin-bottom: 12px;
}

.footer-newsletter input::placeholder {
    color: #98a6b9;
}

.footer-newsletter button {
    width: 100%;
    height: 54px;
    border: none;
    background: #d3ad33;
    color: #071321;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: .3s;
}

.footer-newsletter button:hover {
    background: #fff;
}

/* Bottom */

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 24px;
}

.copyright {
    color: #6d7a8d;
    font-size: 12px;
    font-family: "Inter", sans-serif;
}

.footer-bottom-menu {
    margin-left: auto;
}

.footer-policy-menu {
    display: flex;
    align-items: center;
    gap: 24px;
}

.footer-policy-menu li {
    margin: 0;
}

.footer-policy-menu li a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.3);
    font-family: "Inter", sans-serif;
}

/*=====================================
Buttons
=====================================*/
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 58px;
    padding: 0 34px;
    font-size: 14px;
    font-weight: 800;
    letter-spacing: .5px;
    text-transform: uppercase;
    text-decoration: none;
    transition: .3s ease;
    border-radius: 2px;
    min-height: 58px;
    padding: 0 38px;
}

.btn-primary {
    background: #d4af37;
    color: #071321 !important;
    border: 1px solid #d4af37;
}

.btn.btn-secondary {
    color: #fff;
}

.btn-primary:hover {
    background: transparent;
    color: #fff !important;
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .4);
}

.btn-secondary:hover {
    background: transparent;
    border-color: #d4af37;
    color: #d4af37;
}

/* front-page */

.section-padding {
    padding: 100px 0;
}

.section-padding-sm {
    padding: 70px 0;
}

.section-padding-lg {
    padding: 140px 0;
}

.section-subtitle {
    display: inline-flex;
    align-items: center;
    color: rgb(201, 162, 39);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.section-subtitle::before {
    content: "";
    width: 30px;
    height: 2px;
    margin-right: 10px;
    background: #d4af37;
}

/* .section-subtitle::after {
    content: "";
    width: 30px;
    height: 2px;
    margin-left: 10px;
    background: #d4af37;
} */
.section-title {
    margin: 20px 0;
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 800;
    line-height: 1.12;
}

.section-title span {
    color: #d4af37;
}

.featured-insights__heading h2.section-title {
    margin: 0;
    color: rgb(11, 31, 58);
}

.section-description {
    max-width: 700px;
    line-height: 1.8;
}

/*=====================================
Hero Banner
=====================================*/

.hero-banner {
    position: relative;
    padding: 48px 0 80px;
    background: #102743 url('http://192.168.11.68/thefoundry/wp-content/uploads/2026/07/home-hero-banner.webp') center/cover no-repeat;
    overflow: hidden;
}

.hero-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, rgba(11, 31, 58, 0.97) 55%, rgba(11, 31, 58, 0.7) 100%);
}

.hero-banner .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 760px;
    width: 100%;
}

.hero-subtitle {
    display: inline-flex;
    align-items: center;
    color: #d4af37;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.hero-subtitle::before {
    content: "";
    width: 30px;
    height: 2px;
    margin-right: 10px;
    background: #d4af37;
}

.hero-title {

    color: #fff;
    font-size: clamp(38px, 5.5vw, 70px);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 28px;
    letter-spacing: -0.025em;
}

.hero-title span {
    color: #d4af37;
}

.hero-description {
    font-family: Inter, sans-serif;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.75;
    max-width: 640px;
    margin-bottom: 48px;
    font-weight: 400;
    font-size: 19px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 72px;
}

.hero-stats {
    display: flex;
    gap: 48px;
    padding-top: 48px;
    border-top: 1px solid rgba(255, 255, 255, .12);
}

.hero-stat h3 {
    margin-bottom: 10px;
    color: rgb(201, 162, 39);
    font-size: 34px;
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 34px;
}

.hero-stat span {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-family: "Inter", sans-serif;
}

/*=====================================
About Section
=====================================*/

.about-section {
    background: #fff;
}

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

.about-image {
    position: relative;
}

.about-image-shape {
    position: absolute;
    top: -18px;
    left: -18px;
    width: 60%;
    height: 60%;
    background: #f4f6f9;
    z-index: 0;
}

.about-image img {
    position: relative;
    display: block;
    width: 100%;
    z-index: 1;
}

.experience-box {
    position: absolute;
    right: -30px;
    bottom: 40px;
    background: #0b1f3a;
    color: #fff;
    padding: 22px 33px;
    z-index: 2;
}

.experience-box h3 {
    color: rgb(201, 162, 39);
    font-size: 36px;
    margin: 0;
    line-height: 1;
    font-weight: 800;
}

.experience-box span {
    display: block;
    margin-top: 8px;
    color: #b8c1cf;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-weight: 500;
}

.about-content .section-title {
    margin: 0px 0 24px;
    color: #0b1f3a;
    font-size: clamp(28px, 3vw, 44px);
}

.about-content p {
    color: rgb(91, 103, 112);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.2px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin: 30px 0 40px;
}

.about-feature {
    background: #f5f7fa;
    padding: 16px 18px;
    font-weight: 700;
    color: #0b1f3a;
    position: relative;
    padding-left: 50px;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 10px;
}

a.btn.btn-dark {
    min-height: 48px;
    padding: 14px 28px;
    color: rgb(255, 255, 255);
}

.about-feature:before {
    content: "◈";
    color: #d4af37;
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
}

.btn-dark {
    background: #0b1f3a;
    color: #fff;
    border: 1px solid #0b1f3a;
}

.btn-dark:hover {
    background: #d4af37;
    border-color: #d4af37;
    color: #0b1f3a;
}

/*=====================================
Services Section
=====================================*/

.services-section {
    background: rgb(245, 247, 250);
}

section.services-section.section-padding .container {
    display: block;
}

.services-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 60px;
}

.services-heading {
    max-width: 552px;
    flex: 0 0 552px;
}

.services-intro {
    max-width: 542px;
}

.services-intro p {
    color: rgb(91, 103, 112);
    line-height: 1.75;
    margin-bottom: 16px;
    font-size: 15px;
}

.services-heading .section-title {
    color: #0b1f3a;
    margin-top: 20px;
}

.btn-secondary-dark {
    background: transparent;
    color: #0b1f3a;
    border: 1px solid #0b1f3a;
}

.btn-secondary-dark:hover {
    background: #0b1f3a;
    color: #fff;
}

.btn.btn-dark {
    min-height: 48px;
    padding: 14px 28px;
    color: rgb(255, 255, 255);
}

.btn.btn-secondary-dark {
    min-height: 45px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.08em;
    color: rgb(11, 31, 58);
    padding: 12px 24px;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
    border-top: 1px solid #e7eaef;
    border-left: 1px solid #e7eaef;
}

.service-card {
    background: #fff;
    padding: 40px 36px;
    border-right: 1px solid #e7eaef;
    border-bottom: 1px solid #e7eaef;
    transition: .35s ease;
    min-height: 460px;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    box-shadow: 0 20px 50px rgba(0, 0, 0, .08);
}

.service-line {
    display: block;
    background: #d4af37;
    margin-bottom: 28px;
    width: 34px;
    height: 3px;
    transition: .35s;
}

.service-icon {
    font-size: 28px;
    color: #0b1f3a;
    margin-bottom: 12px;
    line-height: normal;
}

.service-card h3 {
    font-size: 19px;
    font-weight: 800;
    color: #0b1f3a;
    line-height: 1.15;
    margin: 0 0 10px;
}

.service-category {
    display: block;
    margin-bottom: 20px;
    color: #d4af37;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 11px;
}

.service-card p {
    color: rgb(91, 103, 112);
    line-height: 1.7;
    margin: 0px 0 24px;
    font-size: 14px;
    font-weight: 500;
}

.service-card ul {
    margin-top: auto;
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-card li {
    position: relative;
    padding-left: 16px;
    margin-bottom: 10px;
    color: #5b6770;
    font-size: 13px;
    font-weight: 500;
}

.service-link {
    margin-top: 30px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: .35s ease;
}

.service-link a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #d4af37;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}

.service-link span {
    font-size: 16px;
    transition: .3s;
}

.service-link a:hover span {
    transform: translateX(5px);
}

.service-card:hover .service-link {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.service-card li:before {
    content: "";
    position: absolute;
    left: 0;
    top: 10px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #d4af37;
}

.service-card:hover {
    background: #0b1f3a;
}

.service-card:hover h3 {
    color: #fff;
}

.service-card:hover p {
    color: #d5dbe5;
}

.service-card:hover li {
    color: #d5dbe5;
}

.service-card:hover .service-category {
    color: #d4af37;
}

.service-card:hover .service-icon {
    color: #d4af37;
}

.service-card:hover .service-line {
    width: 70px;
    background: #d4af37;
}


/*=========================================
Methodology Section
=========================================*/

.methodology-section {
    background: #102743;
    padding: 100px 0;
    overflow: hidden;
}

.methodology-section .container {
    display: block;
}

/* Heading */

.methodology-section .section-heading {
    max-width: 100%;
    margin: 0 auto 0px;
    text-align: center;
}

.methodology-section .section-title {
    color: #fff;
}

.methodology-section .section-description {
    max-width: 530px;
    margin: 20px auto 0;
    color: rgba(255, 255, 255, .65);
    font-size: 16px;
}

/*==========================
Tabs
==========================*/

.method-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
}

.method-tab {
    background: none;
    border: 0;
    border-bottom: 3px solid transparent;
    text-align: left;
    padding: 28px 32px;
    cursor: pointer;
    transition: .35s;
}

.method-tab .number {
    display: block;
    font-size: 40px;
    font-weight: 800;
    line-height: 1;
    color: rgba(255, 255, 255, .12);
    transition: .35s;
}

.method-tab .title {
    display: block;
    margin-top: 10px;
    font-size: 16px;
    font-weight: 700;
    color: rgba(255, 255, 255, .45);
    transition: .35s;
}

.method-tab.active {
    border-bottom: 3px solid #d4af37;
}

.method-tab.active .number {
    color: #d4af37;
}

.method-tab.active .title {
    color: #fff;
}

.method-tab:hover .number {
    color: #d4af37;
}

.method-tab:hover .title {
    color: #fff;
}

/*==========================
Content Wrapper
==========================*/

.method-content-wrapper {
    background: rgba(255, 255, 255, .04);
}

/*==========================
Content
==========================*/
.method-content {
    display: none;
    opacity: 0;
    animation: fadeMethod .4s ease;
    grid-template-columns: 320px 1fr;
    gap: 70px;
    padding: 48px 32px;
}

.method-content.active {
    display: grid;
    opacity: 1;
}

/*==========================
Left
==========================*/

.method-left {
    position: relative;
}

.bg-number {
    position: absolute;
    top: 0px;
    left: 0;
    font-size: 90px;
    font-weight: 800;
    line-height: 1;
    color: rgba(212, 175, 55, .12);
}

.method-left h3 {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 36px;
    line-height: 1.08;
    font-weight: 700;
    margin-top: 70px;
}

.method-left .line {
    display: block;
    width: 45px;
    height: 3px;
    background: #d4af37;
    margin-top: 24px;
}

/*==========================
Right
==========================*/

.method-right {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    align-content: center;
}

/*==========================
Item
==========================*/

.method-item {
    background: rgba(255, 255, 255, .05);
    padding: 14px 16px;
    color: rgba(255, 255, 255, .75);
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: .3s;
    font-weight: 500;
}

.method-item::before {
    content: "";
    width: 7px;
    height: 7px;
    background: #d4af37;
    border-radius: 50%;
    flex-shrink: 0;
}

.method-item:hover {
    background: rgba(255, 255, 255, .10);
    transform: translateY(-2px);
}

/*==========================
Animation
==========================*/

@keyframes fadeMethod {

    from {
        opacity: 0;
        transform: translateY(15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/*=========================================
Why Choose Us
=========================================*/

.why-choose-section {
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
}

.why-choose-wrapper {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 80px;
    align-items: start;
}


/*=================================
Left Side
=================================*/

.why-left {
    align-self: start;
}

.why-left-inner {
    position: -webkit-sticky;
    position: sticky;
    top: 110px;

}

.why-left .section-title {
    margin: 0px 0 24px;
    color: rgb(11, 31, 58);
}

.why-left .section-description {
    margin-bottom: 40px;
    max-width: 330px;
    font-size: 15px;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    color: rgb(91, 103, 112);
}

.why-counter {
    border-top: 1px solid #e6eaee;
    padding-top: 28px;
}

.why-counter h3 {
    font-size: 42px;
    line-height: 1;
    font-weight: 800;
    color: #102743;
    margin-bottom: 8px;
}

.why-counter span {
    display: block;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: rgb(91, 103, 112);
}

/*=================================
Right Side
=================================*/

.why-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2px;
}

/*=================================
Cards
=================================*/

.why-card {
    background: #ffffff;
    padding: 40px 32px;
    transition: .35s ease;
    position: relative;
    border-top: 3px solid transparent;
}

.why-card:nth-child(odd) {
    background: #f5f7fa;
}

.why-icon {
    font-size: 28px;
    color: #d4af37;
    margin-bottom: 18px;
    transition: .35s;
}

.why-card h3 {
    font-size: 18px;
    line-height: 1.25;
    color: #102743;
    margin-bottom: 18px;
    transition: .35s;
    font-weight: 800;
}

.why-card p {
    color: #617080;
    line-height: 1.9;
    margin-bottom: 24px;
    transition: .35s;
    font-size: 14px;
    font-weight: 500;
}

.why-card-footer {
    border-top: 1px solid #dde3ea;
    padding-top: 24px;
}

.why-card-footer h4 {
    font-size: 28px;
    line-height: 1;
    color: #102743;
    margin-bottom: 6px;
    transition: .35s;
    font-weight: 800;
}

.why-card-footer span {
    display: block;
    font-size: 11px;
    line-height: 1.6;
    color: #617080;
    transition: .35s;
}

.why-card:hover {
    background: rgb(245, 247, 250);
    border-top: 3px solid rgb(201, 162, 39);
    transition: border-color 0.2s, background 0.2s;
}

/*=========================================
Industries Section
=========================================*/

.industries-section {
    padding: 100px 0;
    background: #f5f7fa;
}

section.industries-section .container {
    display: block;
}

/* Section Heading */
.industries-section .section-heading {
    max-width: 840px;
    margin: 0 auto 70px;
    text-align: center;
}

.industries-section .section-title {
    margin-bottom: 18px;
    font-family: Manrope;
    font-weight: 800;
    font-size: clamp(28px, 3vw, 44px);
    color: rgb(11, 31, 58);
    line-height: 1.12;
    letter-spacing: -0.02em;
}

.industries-section .section-description {
    font-size: 16px;
    color: rgb(91, 103, 112);
    margin: 16px auto 0px;
    max-width: 560px;
}

/* Grid */

.industries-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: #e5e8ec;
}

/* Card */

.industry-card {
    position: relative;
    overflow: hidden;
    background: #fff;
    padding: 32px 28px;
    min-height: 180px;
    transition: all .35s ease;
    cursor: pointer;
}

/* Hover */

.industry-card:hover {
    background: #0b1f3a;
    box-shadow: 0 20px 45px rgba(11, 31, 58, .22);
}

/* Icon */

.industry-icon {
    font-size: 34px;
    line-height: 1;
    margin-bottom: 18px;
    transition: .35s ease;
}
.industry-icon img {
    width: 41px;
}
/* Heading */

.industry-card h3 {
    font-size: 15px;
    font-weight: 800;
    line-height: 1.3;
    color: #0b1f3a;
    margin: 0 0 6px;
    transition: .35s ease;
}

/* Description */

.industry-card p {
    margin: 0;
    transition: .35s ease;
    font-size: 13px;
    color: rgb(91, 103, 112);
    line-height: 1.5;
    font-weight: 500;
}

/* Hover Colors */

.industry-card:hover h3 {
    color: #ffffff;
}

.industry-card:hover p {
    color: rgba(255, 255, 255, .75);
}

/* If using SVG icons */

.industry-card svg {
    width: 36px;
    height: 36px;
    fill: #0b1f3a;
    transition: .35s;
}

.industry-card:hover svg {
    fill: #d4af37;
}

/* If using Font Awesome */

.industry-card i {
    font-size: 34px;
    color: #0b1f3a;
    margin-bottom: 18px;
    transition: .35s;
}

.industry-card:hover i {
    color: #d4af37;
}


/*=========================================
Featured Insights
=========================================*/

.featured-insights {
    padding: 100px 0;
    background: #ffffff;
}

.featured-insights .container {
    /* max-width: 1280px; */
    display: block;
}

/*=========================================
Header
=========================================*/

.featured-insights__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.featured-insights__button {
    flex-shrink: 0;
}

.featured-insights .btn {
    min-width: 190px;
    text-align: center;
    border: solid 1px;
}

/*=========================================
Filters
=========================================*/

.insight-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 48px;
}

.insight-filter {
    border: none;
    background: #f3f5f8;
    color: #5b6770;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    padding: 8px 16px;
    cursor: pointer;
    transition: .35s;
}

.insight-filter:hover {
    background: #0b1f3a;
    color: #ffffff;
}

.insight-filter.active {
    background: #0b1f3a;
    color: #ffffff;
}

/*=========================================
Layout
=========================================*/

.featured-insights__wrapper {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 2px;
    align-items: start;
}

/*=========================================
Featured Card
=========================================*/

.featured-insight {
    background: #f5f7fa;
    overflow: hidden;
}

.featured-insight__image {
    height: 260px;
    overflow: hidden;
}

.featured-insight__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: .5s;
}

.featured-insight:hover .featured-insight__image img {
    transform: scale(1.08);
}

.featured-insight__content {
    padding: 32px 36px;
}

.featured-insight__meta {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
}

.insight-category {
    background: rgb(201, 162, 39);
    color: rgb(11, 31, 58);
    padding: 4px 10px;
    font-family: Manrope;
    font-weight: 700;
    font-size: 10px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 2px;
}

.insight-read-time {
    font-size: 12px;
    color: rgb(91, 103, 112);
}

.featured-insight h3 {
    margin: 0 0 14px;
}

.featured-insight h3 a {
    text-decoration: none;
    transition: .3s;
    font-weight: 800;
    font-size: 22px;
    color: rgb(11, 31, 58);
    line-height: 1.25;
    margin-bottom: 14px;
}

.featured-insight h3 a:hover {
    color: #c9a227;
}

.featured-insight p {
    font-size: 14px;
    color: rgb(91, 103, 112);
    line-height: 1.7;
    margin-bottom: 20px;
}

.featured-insight__footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.featured-insight__footer span {
    font-size: 12px;
    color: rgb(91, 103, 112);
}

.featured-insight__footer a {
    color: #c9a227;
    text-decoration: none;
    font-weight: 700;
    transition: .3s;
}

.featured-insight__footer a:hover {
    color: #0b1f3a;
}

/*=========================================
Sidebar
=========================================*/

.featured-insights__sidebar {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

/*=========================================
Sidebar Card
=========================================*/

.insight-card {
    background: #f5f7fa;
    display: flex;
    overflow: hidden;
    transition: .35s;
}

.insight-card:hover {
    background: #eef2f6;
}

.insight-card__image {
    width: 120px;
    flex-shrink: 0;
    overflow: hidden;
    aspect-ratio: 1;
}

.insight-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: .45s;
}

.insight-card:hover img {
    transform: scale(1.08);
}

.insight-card__content {
    flex: 1;
    padding: 20px 24px;
}

.insight-card__meta {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.insight-card__meta span {
    font-size: 10px;
    color: rgb(201, 162, 39);
    font-family: Manrope;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.insight-card__meta small {
    font-size: 10px;
    color: rgb(91, 103, 112);
}

.insight-card h4 {
    margin: 0 0 8px;
}

.insight-card h4 a {
    text-decoration: none;
    transition: .3s;
    font-weight: 700;
    font-size: 14px;
    color: rgb(11, 31, 58);
    line-height: 1.3;
    margin-bottom: 8px;
}

.insight-card h4 a:hover {
    color: #c9a227;
}

.insight-card p {
    margin: 0;
    font-size: 12px;
    color: rgb(91, 103, 112);
}

/*======================================
=            Testimonials              =
======================================*/

.testimonials-section {
    background: #0B1F3A;
    padding: 110px 0;
    overflow: hidden;
}

.testimonials-section .container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 64px;
    display: block;
}

/*=========================
Header
=========================*/

.testimonials-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 70px;
    gap: 30px;
}

.section-heading {
    max-width: 700px;
}

.sub-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.sub-title span {
    width: 28px;
    height: 2px;
    background: #C9A227;
}

.sub-title p {
    margin: 0;
    color: #C9A227;
    text-transform: uppercase;
    letter-spacing: .22em;
    font-size: 12px;
    font-weight: 700;
}

.section-heading h2 {
    margin: 0;
    color: #fff;
    font-size: clamp(28px, 3vw, 44px);
    font-weight: 800;
    line-height: 1.1;
}

/*=========================
Navigation
=========================*/

.testimonial-navigation {
    display: flex;
    gap: 12px;
}

.testimonial-slide blockquote p {
    font-weight: 500;
    font-size: clamp(17px, 2vw, 22px);
    color: rgb(255, 255, 255);
    line-height: 1.65;
    letter-spacing: -0.01em;
    font-style: italic;
}

.testimonial-navigation button {

    width: 52px;
    height: 52px;

    border-radius: 50%;

    border: 1px solid rgba(255, 255, 255, .15);

    background: rgba(255, 255, 255, .08);

    color: #fff;

    font-size: 18px;

    cursor: pointer;

    transition: .3s;
}

.testimonial-navigation button:hover {

    background: #C9A227;

    color: #0B1F3A;

    border-color: #C9A227;

}

/*=========================
Layout
=========================*/

.testimonials-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/*=========================
Slides
=========================*/

.testimonial-content {

    position: relative;

    min-height: 420px;

}

.testimonial-slide {

    display: none;

    animation: fadeSlide .45s ease;

}

.testimonial-slide.active {

    display: block;

}

@keyframes fadeSlide {

    from {

        opacity: 0;

        transform: translateY(20px);

    }

    to {

        opacity: 1;

        transform: translateY(0);

    }

}

.quote-icon {

    font-size: 82px;

    color: #C9A227;

    line-height: 1;

    opacity: .75;

    margin-bottom: 25px;

    font-family: Georgia, serif;

}

.testimonial-slide blockquote {
    margin: 0 0 40px;
    color: #fff;
    font-size: 34px;
    line-height: 1.65;
    font-style: italic;
    font-weight: 400;
    max-width: 540px;
    padding: 0;
}

/*=========================
Client Info
=========================*/

.client-info {

    display: flex;

    align-items: center;

    gap: 18px;

}

.client-avatar {

    width: 58px;

    height: 58px;

    border-radius: 50%;

    background: #C9A227;

    color: #0B1F3A;

    font-weight: 800;

    display: flex;

    align-items: center;

    justify-content: center;

}

.client-details h4 {
    margin: 0;
    font-weight: 700;
    font-size: 15px;
    color: rgb(255, 255, 255);
}

.client-details p {
    margin: 8px 0 6px;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 2px;
}

.client-details span {
    font-size: 12px;
    color: rgb(201, 162, 39);
    margin-top: 2px;
}

/*=========================
Tabs
=========================*/
.testimonial-tabs {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.testimonial-tab {
    border: none;
    border-left: 3px solid rgba(255, 255, 255, .08);
    background: transparent;
    text-align: left;
    padding: 16px 20px;
    cursor: pointer;
    transition: .35s;
}

.testimonial-tab:hover {

    background: rgba(255, 255, 255, .03);

}

.testimonial-tab.active {

    border-left-color: #C9A227;

    background: rgba(255, 255, 255, .03);

}

.testimonial-tab h4 {
    margin: 0 0 6px;
    font-weight: 500;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 4px;
    transition: color 0.2s;
}

.testimonial-tab p {
    margin: 0;
    font-weight: 500;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.35);
    margin-bottom: 4px;
    transition: color 0.2s;
}

.testimonial-tab.active h4 {

    color: #fff;

}

.testimonial-tab.active p {

    color: rgba(255, 255, 255, .65);

}

/* front-page ends */

/* global CTA  */
/*==========================================
=              Global CTA                  =
==========================================*/
.global-cta {
    position: relative;
    background: #0B1F3A;
    padding: 96px 0;
    overflow: hidden;
}

/* Gold top line */

.global-cta__top-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, #C9A227 0%, transparent 65%);
}

/* Right Overlay */

.global-cta__overlay {
    position: absolute;
    top: 0;
    right: 0;
    width: 38%;
    height: 100%;
    background: linear-gradient(135deg,
            transparent 0%,
            rgba(201, 162, 39, .05) 100%);
    pointer-events: none;
}

.global-cta .container {

    max-width: 900px;
    margin: auto;
    padding: 0 64px;
    position: relative;
    z-index: 2;

}

.global-cta__inner {

    text-align: center;

}

/*==========================================
Badge
==========================================*/

.global-cta__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(201, 162, 39, .30);
    padding: 8px 18px;
    border-radius: 2px;
    margin-bottom: 24px;
}

.global-cta__badge-dot {

    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #C9A227;

}

.global-cta__badge p {

    margin: 0;

    color: #C9A227;

    text-transform: uppercase;

    letter-spacing: .20em;

    font-size: 11px;

    font-weight: 700;

}

body.page-template-template-about-us-ph .global-cta__buttons a.btn.btn-secondary {
    min-width: unset;
}

/*==========================================
Heading
==========================================*/

.global-cta__title {
    color: #fff;
    font-size: 56px;
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: -.03em;
    margin: 0 auto 24px;
    max-width: 720px;
}

/*==========================================
Description
==========================================*/

.global-cta__description {
    max-width: 580px;
    margin: 0 auto 48px;
}

.global-cta__description p {
    margin: 0;
    color: rgba(255, 255, 255, .62);
    font-size: 17px;
    line-height: 1.8;
}

/*==========================================
Buttons
==========================================*/

.global-cta__buttons {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 18px;

    flex-wrap: wrap;

    margin-bottom: 65px;

}

/*
Using existing theme button classes

.btn
.btn-primary
.btn-secondary
*/

.global-cta .btn {

    min-width: 240px;

    justify-content: center;

}

.global-cta .btn-primary {

    box-shadow: 0 8px 30px rgba(201, 162, 39, .28);

}

.global-cta .btn-primary:hover {

    transform: translateY(-3px);

}

.global-cta .btn-secondary:hover {

    border-color: #C9A227;

    color: #C9A227;

}

/*==========================================
Bottom Features
==========================================*/

.global-cta__features {

    border-top: 1px solid rgba(255, 255, 255, .08);

    padding-top: 42px;

    display: flex;

    justify-content: center;

    flex-wrap: wrap;

    gap: 38px;

}

.global-cta__feature {

    display: flex;

    align-items: center;

    gap: 10px;

}

.global-cta__feature span {

    color: #C9A227;

    font-size: 15px;

    font-weight: 700;

}

.global-cta__feature p {
    margin: 0;
    line-height: 1.5;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Inter';
}

/* Global CTA ENDS */




/* About Us */

/*==================================================
ABOUT PAGE HERO
==================================================*/
section.about-page-overview .container {
    display: block;
}

.inner-page-hero {
    padding: 160px 0 120px;
    background: #112746;
    text-align: center;
}

.inner-page-hero .section-subtitle {
    color: rgb(201, 162, 39);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.inner-page-hero__content {
    max-width: 760px;
    margin: 0 auto;
}

.inner-page-hero__title {
    color: #ffffff;
    margin: 0;
    font-size: clamp(36px, 5vw, 60px);
    font-family: Manrope;
    font-weight: 800;
    letter-spacing: 0.01em;
    line-height: 1.1;
}

.inner-page-hero p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 17px;
    margin-top: 16px;
}

/*==================================================
ABOUT PAGE OVERVIEW
==================================================*/
.about-page-overview {
    padding: 80px 0;
    background: #fff;
}

section.methodology-section .section-subtitle::after,
section.industries-section .section-subtitle::after {
    content: "";
    width: 30px;
    height: 2px;
    margin-left: 10px;
    background: #d4af37;
}

section.inner-page-hero span.section-subtitle::before {
    display: none;
}

.search-page-empty__form form>div {
    width: 100%;
}

.about-page-overview__wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: flex-start;
    max-width: 852px;
    margin: 0 auto;
}

.about-page-overview__left p {
    font-size: 18px;
    line-height: 1.8;
    color: rgb(34, 34, 34);
    margin-bottom: 24px;
}

.about-page-overview__left p:not(:first-child) {
    font-size: 16px;
    line-height: 1.8;
    color: rgb(91, 103, 112);
}

.about-page-overview__left p:last-child {
    margin-bottom: 0;
}

.about-page-overview__right {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.about-page-feature {
    background: #f6f8fb;
    border-left: 3px solid #c7a135;
    padding: 20px 24px;
}

.about-page-feature h3 {
    font-weight: 700;
    font-size: 15px;
    color: rgb(11, 31, 58);
    margin-bottom: 4px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-page-feature p {
    margin: 0;
    font-size: 14px;
    color: rgb(91, 103, 112);
    line-height: 1.6;
    padding-left: 20px;
    font-family: 'Inter';
}

.about-page-feature h3:before {
    content: "◆ ";
    color: rgb(201, 162, 39);
    font-size: 10px;
}

/*==================================================
ABOUT PAGE STATS
==================================================*/
.about-page-stats {
    padding: 48px 0px;
    border-top: 1px solid #e5e5e5;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
    max-width: 852px;
    margin: 90px auto 0px;
}

.about-page-stat h3 {
    margin-bottom: 8px;
    font-weight: 800;
    font-size: 42px;
    color: rgb(11, 31, 58);
    line-height: 1;
}

.about-page-stat span {
    font-size: 13px;
    color: rgb(91, 103, 112);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}


/* About us ends */

/* services */
/*==================================================
SERVICES PAGE HERO
==================================================*/

.inner-page-hero {
    padding: 50px 0 80px;
    background: #111f3b;
    text-align: center;
}

.inner-page-hero__content {
    max-width: 760px;
    margin: 0 auto;
}

.inner-page-hero .section-subtitle {
    margin-bottom: 24px;
}


/*==================================================
CONTACT PAGE SECTION
==================================================*/

.contact-page-section {
    padding: 80px 0;
    background: #ffffff;
}

.contact-page-section__wrapper {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 64px;
    align-items: start;
    padding: 0 24px;
}

/*==================================================
CONTACT INFO
==================================================*/

.contact-page-section__info h2 {
    margin: 0 0 16px;
    font-family: "Inter", sans-serif;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.3;
    color: #0b1f3a;
}

.contact-page-section__intro {
    margin: 0 0 32px;
    font-size: 16px;
    line-height: 1.7;
    color: #5b6770;
    font-family: "Inter", sans-serif;
    font-weight: 400;
}

.contact-page-section__details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-page-section__item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-page-section__icon {
    flex: 0 0 auto;
    margin-top: 2px;
    font-size: 20px;
    line-height: 1;
}

.contact-page-section__item h3 {
    margin: 0 0 2px;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #c9a227;
}

.contact-page-section__item p {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
    color: #222222;
    font-family: "Inter", sans-serif;
}

.contact-page-section__item a {
    color: inherit;
    text-decoration: none;
}

.contact-page-section__item a:hover {
    color: #c9a227;
}


/*==================================================
OFFICE HOURS
==================================================*/

.contact-page-section__hours {
    margin-top: 40px;
    padding: 28px 32px;
    background: #f5f7fa;
    border-left: 3px solid #c9a227;
}

.contact-page-section__hours h3 {
    margin: 0 0 8px;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #0b1f3a;
}

.contact-page-section__hours p {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
    color: #5b6770;
    font-family: "Inter", sans-serif;
}

/*==================================================
CONTACT FORM 7
==================================================*/

.contact-page-section .contact-page-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-page-section .contact-page-form .contact-page-form__field p {
    margin: 0;
}

.contact-page-section .contact-page-form__field label {
    display: block;
    font-family: "Inter", sans-serif;
    line-height: 1.4;
    font-weight: 600;
    font-size: 13px;
    color: rgb(11, 31, 58);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.contact-page-section .contact-page-form__field .wpcf7-form-control-wrap {
    display: block;
}

.contact-page-section .contact-page-form input[type="text"],
.contact-page-section .contact-page-form input[type="email"],
.contact-page-section .contact-page-form input[type="tel"],
.contact-page-section .contact-page-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e6ea;
    border-radius: 4px;
    background: #ffffff;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    line-height: 1.5;
    color: #222222;
    outline: none;
    box-sizing: border-box;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
    box-shadow: none;
}

.contact-page-section .contact-page-form textarea {
    min-height: 140px;
    resize: vertical;
}

.contact-page-section .contact-page-form input:focus,
.contact-page-section .contact-page-form textarea:focus {
    border-color: #c9a227;
    box-shadow: 0 0 0 1px #c9a227;
}

.contact-page-section .contact-page-form input::placeholder,
.contact-page-section .contact-page-form textarea::placeholder {
    color: #8b939a;
}


/*==================================================
SUBMIT BUTTON
==================================================*/

.contact-page-section .contact-page-form input[type="submit"] {
    width: 100%;
    padding: 16px 32px;
    border: 0;
    border-radius: 2px;
    background: #0b1f3a;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #ffffff;
    cursor: pointer;
    transition: background 0.2s ease;
}

.contact-page-section .contact-page-form input[type="submit"]:hover {
    background: #c9a227;
}


/*==================================================
CONTACT FORM 7 MESSAGES
==================================================*/

.contact-page-section .wpcf7-not-valid-tip {
    margin-top: 5px;
    font-size: 13px;
}

.contact-page-section .wpcf7-response-output {
    margin: 20px 0 0 !important;
}

/* services ends */



/*==================================================
BOOK CONSULTATION
==================================================*/

.book-consultation-section {
    padding: 64px 0 80px;
    background: #fff;
}

.book-consultation-section__inner {
    max-width: 700px;
    margin: 0 auto;
    width: 100%;
    padding: 0px 24px 0px;
}

/*==================================================
STEPS NAVIGATION
==================================================*/

.book-consultation-section .consultation-steps {
    display: flex;
    margin-bottom: 48px;
    border-bottom: 1px solid #e2e6ea;
}

.book-consultation-section .consultation-step-nav {
    flex: 1;
    padding: 0 5px 16px;
    border: 0;
    border-bottom: 3px solid transparent;
    background: transparent;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #5b6770;
    cursor: pointer;
}

.book-consultation-section .consultation-step-nav span {
    display: inline-block;
    width: 24px;
    height: 24px;
    margin-right: 8px;
    border-radius: 50%;
    background: rgb(11, 31, 58);
    font-size: 11px;
    line-height: 24px;
    text-align: center;
    color: #fff;
}

.book-consultation-section .consultation-step-nav.active {
    border-bottom-color: #c9a227;
    color: #0b1f3a;
}

.book-consultation-section .consultation-step-nav.active span {
    background: #c9a227;
    color: #fff;
}


/*==================================================
FORM STEPS
==================================================*/

.book-consultation-section .consultation-form-step {
    display: none;
}

.book-consultation-section .consultation-form-step.active {
    display: block;
}

.book-consultation-section .consultation-form-step>h2 {
    margin: 0 0 10px;
    font-family: "Inter", sans-serif;
    font-size: 24px;
    line-height: 1.3;
    font-weight: 800;
    color: #0b1f3a;
}

/*==================================================
SERVICE CARDS
==================================================*/

.book-consultation-section .consultation-services .wpcf7-form-control {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.book-consultation-section .consultation-services .wpcf7-list-item {
    margin: 0;
}

.book-consultation-section .consultation-services .wpcf7-list-item label {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 66px;
    padding: 20px 24px;
    border: 2px solid #e2e6ea;
    border-radius: 4px;
    background: #fff;
    cursor: pointer;
    transition: .15s ease;
}

.book-consultation-section .consultation-services input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.book-consultation-section .consultation-services .wpcf7-list-item-label {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.4;
    color: #0b1f3a;
}

.book-consultation-section .consultation-services label:has(input:checked) {
    border-color: #c9a227;
    background: #fdf8ec;
}


/*==================================================
FIELDS
==================================================*/

.book-consultation-section .consultation-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.book-consultation-section .consultation-field-full {
    grid-column: 1 / -1;
}

.book-consultation-section .consultation-field label {
    display: block;
    margin-bottom: 7px;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #0b1f3a;
}

.book-consultation-section .consultation-field input,
.book-consultation-section .consultation-field select,
.book-consultation-section .consultation-field textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e6ea;
    border-radius: 4px;
    background: #fff;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    color: #222;
    outline: none;
    box-sizing: border-box;
}

.book-consultation-section .consultation-field input:focus,
.book-consultation-section .consultation-field select:focus,
.book-consultation-section .consultation-field textarea:focus {
    border-color: #c9a227;
}

.book-consultation-section .consultation-time-note {
    margin-top: 15px;
    font-size: 13px;
    color: #5b6770;
}

.error-page-404__actions a.btn.btn-secondary-dark {
    min-height: 58px;
}

.error-page-404__actions a.btn.btn-secondary-dark:hover {
    color: #fff;
}

.error-page-404__actions a.btn.btn-primary:hover {
    background: transparent;
    color: #d4af37 !important;
}

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

.book-consultation-section .consultation-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-top: 32px;
}

.book-consultation-section .consultation-actions-right {
    justify-content: flex-start;
}

.book-consultation-section .consultation-next,
.book-consultation-section .consultation-submit {
    padding: 14px 28px;
    border: 0;
    border-radius: 2px;
    background: #0b1f3a;
    font-family: "Inter", sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    cursor: pointer;
}

.book-consultation-section .consultation-back {
    padding: 14px 0;
    border: 0;
    background: transparent;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #5b6770;
    cursor: pointer;
}

.meth-content {
    margin-bottom: 64px;
}

.footer-col.footer-newsletter .footer-newsletter-form p {
    margin: 0 0;
}

.footer-col.footer-newsletter .footer-newsletter-form p input.wpcf7-form-control {
    padding: 11px 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 2px;
    color: rgb(255, 255, 255);
    font-size: 13px;
    outline: none;
    height: auto;
    font-family: "Inter", sans-serif;
}

.footer-col.footer-newsletter .footer-newsletter-form p input.wpcf7-form-control.wpcf7-submit {
    margin: 0;
    padding: 11px 14px;
    background: rgb(201, 162, 39);
    color: rgb(11, 31, 58);
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: none;
    border-radius: 2px;
    font-family: Manrope;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: opacity 0.2s;
}

/*==================================================

BOOK CONSULTATION - STEP 2 & STEP 3

==================================================*/

.book-consultation-section .consultation-form-step {

    display: none;

}

.book-consultation-section .consultation-form-step.active {

    display: block;

}


/*==================================================

COMMON HEADINGS

==================================================*/

.book-consultation-section .consultation-form-step>h2 {

    font-family: "Manrope", sans-serif;

    font-size: 24px;

    line-height: 1.3;

    font-weight: 800;

    color: #0b1f3a;

}

.book-consultation-section .consultation-form-step>h2 br {

    display: none;

}

.book-consultation-section .consultation-step-description {

    margin: 0 0 26px;

    font-size: 14px;

    line-height: 1.6;

    color: #5b6770;

}

.book-consultation-section .consultation-step-description br {

    display: none;

}


/*==================================================

STEP 2 - DATE

==================================================*/

.book-consultation-section .consultation-date-field {

    margin-bottom: 22px;

}

.book-consultation-section .consultation-date-field>p {

    margin: 0;

}

.book-consultation-section .consultation-date-field .wpcf7-form-control-wrap {

    display: block;

    width: 100%;

}

.book-consultation-section .consultation-date-field input[type="date"] {

    display: block;

    width: 100%;

    height: 52px;

    padding: 0 16px;

    border: 1px solid #dce1e6;

    border-radius: 4px;

    background: #fff;

    color: #0b1f3a;

    font-family: "Manrope", sans-serif;

    font-size: 14px;

    outline: none;

    box-sizing: border-box;

    transition: border-color 0.2s ease;

}

.book-consultation-section .consultation-date-field input[type="date"]:focus {

    border-color: #c9a227;

}


/*==================================================

STEP 2 - TIME RADIO CARDS

==================================================*/

.book-consultation-section .consultation-times {

    margin-bottom: 30px;

}

.book-consultation-section .consultation-times>p {

    margin: 0;

}

.book-consultation-section .consultation-times .wpcf7-form-control-wrap {

    display: block;

    width: 100%;

}

.book-consultation-section .consultation-times .wpcf7-radio {

    display: grid;

    grid-template-columns: repeat(4, 1fr);

    gap: 10px;

    width: 100%;

}

.book-consultation-section .consultation-times .wpcf7-list-item {

    display: block;

    margin: 0;

}

.book-consultation-section .consultation-times .wpcf7-list-item label {

    position: relative;

    display: block;

    width: 100%;

    cursor: pointer;

}

.book-consultation-section .consultation-times input[type="radio"] {

    position: absolute;

    width: 1px;

    height: 1px;

    opacity: 0;

    pointer-events: none;

}

.book-consultation-section .consultation-times .wpcf7-list-item-label {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 100%;

    min-height: 50px;

    padding: 10px 12px;

    border: 2px solid #e1e5e9;

    border-radius: 4px;

    background: #fff;

    color: #0b1f3a;

    font-family: "Manrope", sans-serif;

    font-size: 13px;

    line-height: 1.2;

    font-weight: 700;

    text-align: center;

    box-sizing: border-box;

    transition:

        border-color 0.2s ease,

        background-color 0.2s ease;

}

.book-consultation-section .consultation-times label:hover .wpcf7-list-item-label {

    border-color: #c9a227;

}

.book-consultation-section .consultation-times input[type="radio"]:checked+.wpcf7-list-item-label {

    border-color: #c9a227;

    background: #fdf8ec;

}


/*==================================================

STEP 2 - CONTINUE

==================================================*/

.book-consultation-section .consultation-actions {

    margin-top: 18px;

}

.book-consultation-section .consultation-actions>p {

    margin: 0;

}

.book-consultation-section .consultation-time-continue {
    min-width: 120px;
    min-height: 50px;
    padding: 12px 26px;
    border: 0;
    border-radius: 2px;
    background: #0b1f3a;
    color: #fff;
    font-family: "Manrope", sans-serif;
    font-size: 14px;
    line-height: 1;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.2s ease;
    text-transform: capitalize;
}

.book-consultation-section .consultation-time-continue br {

    display: none;

}

.book-consultation-section .consultation-time-continue:hover {

    background: #16385f;

}


/*==================================================

STEP 3 - SESSION SUMMARY

==================================================*/

.book-consultation-section .consultation-session-summary {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 5px;

    width: 100%;

    margin: 22px 0 28px;

    padding: 18px 20px;

    border-left: 3px solid #c9a227;

    background: #f5f7fa;

    color: #5b6770;

    font-size: 14px;

    line-height: 1.5;

    box-sizing: border-box;

}

/*

CF7 is adding <p> around every span/strong.

Make those <p> behave like inline elements.

*/

.book-consultation-section .consultation-session-summary>p {

    display: contents;

    margin: 0;

}

.book-consultation-section .consultation-session-summary strong {

    color: #0b1f3a;

    font-weight: 700;

}

.book-consultation-section .consultation-summary-service,

.book-consultation-section .consultation-summary-date,

.book-consultation-section .consultation-summary-time {

    display: inline;

}


/*==================================================

STEP 3 - FORM FIELDS

==================================================*/

.book-consultation-section .consultation-fields {

    display: grid;

    grid-template-columns: 1fr;

    gap: 18px;

}

.book-consultation-section .consultation-field {

    width: 100%;

}

.book-consultation-section .consultation-field>p {

    margin: 0;

}

.book-consultation-section .consultation-field label {

    display: block;

    margin: 0 0 7px;

    color: #0b1f3a;

    font-family: "Manrope", sans-serif;

    font-size: 12px;

    line-height: 1.4;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.05em;

}

.book-consultation-section .consultation-field label br {

    display: none;

}

.book-consultation-section .consultation-field .wpcf7-form-control-wrap {

    display: block;

    width: 100%;

}

.book-consultation-section .consultation-field input[type="text"],

.book-consultation-section .consultation-field input[type="email"],

.book-consultation-section .consultation-field input[type="tel"] {

    display: block;

    width: 100%;

    height: 48px;

    padding: 0 14px;

    border: 1px solid #dce1e6;

    border-radius: 4px;

    background: #fff;

    color: #222;

    font-family: "Manrope", sans-serif;

    font-size: 14px;

    box-sizing: border-box;

    outline: none;

    transition:

        border-color 0.2s ease,

        box-shadow 0.2s ease;

}

.book-consultation-section .consultation-field input::placeholder {

    color: #8b949e;

}

.book-consultation-section .consultation-field input:focus {

    border-color: #c9a227;

    box-shadow: 0 0 0 1px #c9a227;

}


/*==================================================

STEP 3 - SUBMIT BUTTON

==================================================*/

.book-consultation-section .consultation-form-step[data-step="3"] .consultation-actions {

    margin-top: 18px;

}

.book-consultation-section .consultation-form-step[data-step="3"] .consultation-actions>p {
    position: relative;
    margin: 0;
    width: 100%;
}

.book-consultation-section .consultation-submit {

    display: block;

    width: 100%;

    min-height: 56px;

    padding: 14px 25px;

    border: 0;

    border-radius: 2px;

    background: #c9a227;

    color: #0b1f3a;

    font-family: "Manrope", sans-serif;

    font-size: 15px;

    line-height: 1.2;

    font-weight: 800;

    letter-spacing: 0.02em;

    cursor: pointer;

    box-sizing: border-box;

    transition:

        background-color 0.2s ease,

        opacity 0.2s ease;

}

.book-consultation-section .consultation-submit:hover {

    background: #d6ad22;

}

.book-consultation-section .consultation-submit:disabled {

    opacity: 0.6;

    cursor: not-allowed;

}


/* CF7 Spinner */

.book-consultation-section .consultation-actions .wpcf7-spinner {

    position: absolute;

    right: 15px;

    top: 50%;

    margin: 0;

    transform: translateY(-50%);

}


/*==================================================

CF7 VALIDATION

==================================================*/

.book-consultation-section .wpcf7-not-valid-tip {

    display: block;

    margin-top: 6px;

    font-size: 12px;

}

.book-consultation-section .consultation-field .wpcf7-not-valid {

    border-color: #dc3232;

}

.book-consultation-section .wpcf7-response-output {

    margin: 20px 0 0 !important;

}


/*==================================================

RESPONSIVE

==================================================*/






/*==================================================

SINGLE INSIGHT HERO

==================================================*/

.single-insight-hero {

    background: #0b1f3a;

    padding: 100px 0;

}

.single-insight-hero__content {

    max-width: 950px;

    margin: 0 auto;

    text-align: center;

}

.single-insight-hero__title {

    margin: 0;

    color: #fff;

    font-family: "Manrope", sans-serif;

    font-size: 52px;

    font-weight: 800;

    line-height: 1.15;

}


/*==================================================

FEATURED IMAGE

==================================================*/

.single-insight-featured-image {

    padding-top: 70px;

}

.single-insight-featured-image__inner {

    max-width: 1050px;

    margin: 0 auto;

}

.single-insight-featured-image img {

    display: block;

    width: 100%;

    height: auto;

}


/*==================================================

INSIGHT META

==================================================*/

.single-insight-meta {

    padding: 28px 0 0;

}

.single-insight-meta__inner {

    max-width: 780px;

    margin: 0 auto;

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 12px;

    color: #5b6770;

    font-size: 14px;

}

.single-insight-meta__inner>span:not(:last-child)::after {

    content: "â€¢";

    margin-left: 12px;

    color: #b5bbc2;

}

.single-insight-meta__category {

    color: #c9a227;

    font-family: "Manrope", sans-serif;

    font-size: 13px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 0.08em;

}

.single-insight-meta__date,

.single-insight-meta__read-time {

    font-size: 14px;

}


/*==================================================

ARTICLE CONTENT

==================================================*/

.single-insight-content {

    padding: 35px 0 100px;

}

.single-insight-content__article {

    max-width: 780px;

    margin: 0 auto;

    color: #5b6770;

    font-size: 17px;

    line-height: 1.8;

}

.single-insight-content__article p {

    margin: 0 0 24px;

}

.single-insight-content__article h2,

.single-insight-content__article h3,

.single-insight-content__article h4,

.single-insight-content__article h5,

.single-insight-content__article h6 {

    margin: 45px 0 18px;

    color: #0b1f3a;

    font-family: "Manrope", sans-serif;

    font-weight: 800;

    line-height: 1.3;

}

.single-insight-content__article h2 {

    font-size: 32px;

}

.single-insight-content__article h3 {

    font-size: 26px;

}

.single-insight-content__article h4 {

    font-size: 21px;

}

.single-insight-content__article h5 {

    font-size: 18px;

}

.single-insight-content__article h6 {

    font-size: 16px;

}

.single-insight-content__article ul,

.single-insight-content__article ol {

    margin: 0 0 28px;

    padding-left: 25px;

}

.single-insight-content__article li {

    margin-bottom: 10px;

}

.single-insight-content__article a {

    color: #c9a227;

}

.single-insight-content__article blockquote {

    margin: 40px 0;

    padding: 25px 30px;

    background: #f5f7fa;

    border-left: 3px solid #c9a227;

    color: #0b1f3a;

    font-size: 19px;

    line-height: 1.7;

}

.single-insight-content__article blockquote p:last-child {

    margin-bottom: 0;

}

.single-insight-content__article img {

    max-width: 100%;

    height: auto;

}


/*==================================================

RESPONSIVE

==================================================*/




/*==================================================

SINGLE SERVICE HERO

==================================================*/

.single-service-hero {

    padding: 100px 0;

    background: #0b1f3a;

    text-align: center;

}

.single-service-hero__content {

    max-width: 900px;

    margin: 0 auto;

}

.single-service-hero .section-subtitle {

    display: inline-block;

    margin-bottom: 20px;

}

.single-service-hero__title {

    margin: 0;

    color: #fff;

    font-family: "Manrope", sans-serif;

    font-size: 52px;

    font-weight: 800;

    line-height: 1.15;

}

.single-service-hero__description {

    max-width: 720px;

    margin: 25px auto 0;

    color: #c5ccd5;

    font-size: 18px;

    line-height: 1.7;

}


/*==================================================

SINGLE SERVICE CONTENT

==================================================*/

.single-service-content {

    padding: 90px 0 110px;

}

.single-service-content__wrapper {

    display: grid;

    grid-template-columns: minmax(0, 1fr) 340px;

    gap: 70px;

    align-items: start;

}


/*==================================================

MAIN CONTENT

==================================================*/

.single-service-content__main {

    min-width: 0;

}

.single-service-content__icon {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 65px;

    height: 65px;

    margin-bottom: 30px;

    background: #fdf8ec;

    color: #c9a227;

    font-size: 30px;

    border-radius: 4px;

}

.single-service-content__article {

    color: #5b6770;

    font-size: 17px;

    line-height: 1.8;

}

.single-service-content__article p {

    margin: 0 0 25px;

}

.single-service-content__article h2,

.single-service-content__article h3,

.single-service-content__article h4,

.single-service-content__article h5,

.single-service-content__article h6 {

    margin: 45px 0 18px;

    color: #0b1f3a;

    font-family: "Manrope", sans-serif;

    font-weight: 800;

    line-height: 1.3;

}

.single-service-content__article h2 {

    font-size: 32px;

}

.single-service-content__article h3 {

    font-size: 26px;

}

.single-service-content__article h4 {

    font-size: 21px;

}

.single-service-content__article h5 {

    font-size: 18px;

}

.single-service-content__article h6 {

    font-size: 16px;

}

.single-service-content__article ul,

.single-service-content__article ol {

    margin: 0 0 30px;

    padding-left: 25px;

}

.single-service-content__article li {

    margin-bottom: 10px;

}

.single-service-content__article a {

    color: #c9a227;

}

.single-service-content__article img {

    max-width: 100%;

    height: auto;

}


/*==================================================

SERVICE SIDEBAR

==================================================*/

.single-service-sidebar {

    position: sticky;

    top: 120px;

}

.single-service-sidebar__box {

    padding: 32px;

    background: #f5f7fa;

    border-top: 3px solid #c9a227;

}

.single-service-sidebar__box h3 {

    margin: 0 0 22px;

    color: #0b1f3a;

    font-family: "Manrope", sans-serif;

    font-size: 21px;

    font-weight: 800;

}

.single-service-sidebar__box ul {

    margin: 0;

    padding: 0;

    list-style: none;

}

.single-service-sidebar__box li {

    display: flex;

    align-items: flex-start;

    gap: 12px;

    padding: 14px 0;

    color: #5b6770;

    font-size: 15px;

    line-height: 1.5;

    border-bottom: 1px solid #e2e6ea;

}

.single-service-sidebar__box li:first-child {

    padding-top: 0;

}

.single-service-sidebar__box li:last-child {

    padding-bottom: 0;

    border-bottom: 0;

}

.single-service-sidebar__check {

    flex: 0 0 auto;

    color: #c9a227;

    font-weight: 700;

}


/*==================================================

TABLET

==================================================*/




/*==================================================

MOBILE

==================================================*/



/*==================================================

DEFAULT PAGE

==================================================*/

.default-page-content {

    padding: 80px 0 100px;

}

.default-page-content__inner {

    max-width: 900px;

    margin: 0 auto;

}

.default-page-article {

    margin: 0;

}


/*==================================================

DEFAULT PAGE TYPOGRAPHY

==================================================*/

.default-page-entry {

    color: #5b6770;

    font-size: 16px;

    line-height: 1.8;

}

.default-page-entry>*:first-child {

    margin-top: 0;

}

.default-page-entry>*:last-child {

    margin-bottom: 0;

}


/* Headings */

.default-page-entry h1,

.default-page-entry h2,

.default-page-entry h3,

.default-page-entry h4,

.default-page-entry h5,

.default-page-entry h6 {

    margin: 45px 0 18px;

    color: #0b1f3a;

    font-family: "Manrope", sans-serif;

    font-weight: 800;

    line-height: 1.3;

}

.default-page-entry h1 {

    font-size: 38px;

}

.default-page-entry h2 {

    font-size: 30px;

}

.default-page-entry h3 {

    font-size: 25px;

}

.default-page-entry h4 {

    font-size: 21px;

}

.default-page-entry h5 {

    font-size: 18px;

}

.default-page-entry h6 {

    font-size: 16px;

}


/* Paragraph */

.default-page-entry p {

    margin: 0 0 22px;

}


/* Links */

.default-page-entry a {

    color: #c9a227;

    text-decoration: underline;

    text-underline-offset: 3px;

}

.default-page-entry a:hover {

    text-decoration: none;

}


/* Strong */

.default-page-entry strong {

    color: #0b1f3a;

    font-weight: 700;

}


/* Lists */

.default-page-entry ul,

.default-page-entry ol {

    margin: 0 0 25px;

    padding-left: 25px;

}

.default-page-entry li {

    margin-bottom: 8px;

}


/* Blockquote */

.default-page-entry blockquote {

    margin: 35px 0;

    padding: 25px 30px;

    background: #f5f7fa;

    border-left: 3px solid #c9a227;

    color: #0b1f3a;

}

.default-page-entry blockquote p:last-child {

    margin-bottom: 0;

}


/* Images */

.default-page-entry img {

    max-width: 100%;

    height: auto;

}


/* Horizontal Line */

.default-page-entry hr {

    margin: 40px 0;

    border: 0;

    border-top: 1px solid #e2e6ea;

}


/*==================================================

TABLE

==================================================*/

.default-page-entry table {

    width: 100%;

    margin: 30px 0;

    border-collapse: collapse;

}

.default-page-entry th,

.default-page-entry td {

    padding: 13px 15px;

    border: 1px solid #e2e6ea;

    text-align: left;

}

.default-page-entry th {

    background: #0b1f3a;

    color: #fff;

    font-family: "Manrope", sans-serif;

    font-weight: 700;

}


/*==================================================

WORDPRESS ALIGNMENTS

==================================================*/

.default-page-entry .aligncenter {

    display: block;

    margin-left: auto;

    margin-right: auto;

}

.default-page-entry .alignleft {

    float: left;

    margin: 5px 25px 20px 0;

}

.default-page-entry .alignright {

    float: right;

    margin: 5px 0 20px 25px;

}


/*==================================================

MOBILE

==================================================*/



/*==================================================

ARCHIVE PAGE

==================================================*/

.archive-page-hero__description {

    max-width: 700px;

    margin: 20px auto 0;

    color: rgba(255, 255, 255, 0.75);

    font-size: 16px;

    line-height: 1.7;

}

.archive-page-hero__description p {

    margin: 0;

}


/*==================================================

ARCHIVE CONTENT

==================================================*/

.archive-page-section {

    padding: 90px 0 110px;

}


/*==================================================

ARCHIVE GRID

==================================================*/

.archive-page-grid {

    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 32px;

}


/*==================================================

ARCHIVE CARD

==================================================*/

.archive-page-card {

    display: flex;

    flex-direction: column;

    margin: 0;

    background: #fff;

    border: 1px solid #e2e6ea;

    transition:

        transform 0.3s ease,

        box-shadow 0.3s ease,

        border-color 0.3s ease;

}

.archive-page-card:hover {

    transform: translateY(-5px);

    border-color: transparent;

    box-shadow: 0 15px 45px rgba(11, 31, 58, 0.1);

}


/*==================================================

CARD IMAGE

==================================================*/

.archive-page-card__image {

    position: relative;

    overflow: hidden;

    aspect-ratio: 16 / 10;

}

.archive-page-card__image a {

    display: block;

    width: 100%;

    height: 100%;

}

.archive-page-card__image img {

    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform 0.4s ease;

}

.archive-page-card:hover .archive-page-card__image img {

    transform: scale(1.04);

}


/*==================================================

CARD CONTENT

==================================================*/

.archive-page-card__content {

    display: flex;

    flex: 1;

    flex-direction: column;

    padding: 28px;

}


/* Meta */

.archive-page-card__meta {

    display: flex;

    align-items: center;

    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 14px;

    color: #8a949c;

    font-size: 12px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 0.06em;

}

.archive-page-card__meta span:first-child {

    color: #c9a227;

}


/* Title */

.archive-page-card__title {

    margin: 0 0 14px;

    color: #0b1f3a;

    font-family: "Manrope", sans-serif;

    font-size: 21px;

    font-weight: 800;

    line-height: 1.4;

}

.archive-page-card__title a {

    color: inherit;

    text-decoration: none;

}

.archive-page-card__title a:hover {

    color: #c9a227;

}


/* Excerpt */

.archive-page-card__excerpt {

    margin-bottom: 22px;

    color: #5b6770;

    font-size: 14px;

    line-height: 1.7;

}


/* Read More */

.archive-page-card__link {

    display: inline-flex;

    align-items: center;

    gap: 8px;

    margin-top: auto;

    color: #0b1f3a;

    font-family: "Manrope", sans-serif;

    font-size: 13px;

    font-weight: 700;

    text-decoration: none;

    text-transform: uppercase;

    letter-spacing: 0.05em;

}

.archive-page-card__link span {

    color: #c9a227;

    font-size: 18px;

    transition: transform 0.2s ease;

}

.archive-page-card__link:hover span {

    transform: translateX(5px);

}


/*==================================================

PAGINATION

==================================================*/

.archive-page-pagination {

    margin-top: 65px;

}

.archive-page-pagination .nav-links {

    display: flex;

    justify-content: center;

    align-items: center;

    flex-wrap: wrap;

    gap: 8px;

}

.archive-page-pagination .page-numbers {

    display: flex;

    align-items: center;

    justify-content: center;

    min-width: 44px;

    height: 44px;

    padding: 0 14px;

    border: 1px solid #e2e6ea;

    color: #0b1f3a;

    font-family: "Manrope", sans-serif;

    font-size: 14px;

    font-weight: 700;

    text-decoration: none;

    transition: 0.2s ease;

}

.archive-page-pagination .page-numbers:hover,

.archive-page-pagination .page-numbers.current {

    background: #0b1f3a;

    border-color: #0b1f3a;

    color: #fff;

}


/*==================================================

NO RESULTS

==================================================*/

.archive-page-empty {

    max-width: 650px;

    margin: 0 auto;

    padding: 70px 30px;

    background: #f5f7fa;

    text-align: center;

}

.archive-page-empty h2 {

    margin: 0 0 15px;

    color: #0b1f3a;

    font-family: "Manrope", sans-serif;

    font-size: 28px;

    font-weight: 800;

}

.archive-page-empty p {

    margin: 0;

    color: #5b6770;

    font-size: 15px;

    line-height: 1.7;

}


/*==================================================

TABLET

==================================================*/




/*==================================================

MOBILE

==================================================*/



/*==================================================

SINGLE BLOG POST

==================================================*/

.single-post-page__hero {

    padding: 100px 0 80px;

    background: #0b1f3a;

    text-align: center;

}

.single-post-page__hero-content {

    max-width: 900px;

    margin: 0 auto;

}

.single-post-page__category {

    display: inline-block;

    margin-bottom: 20px;

    font-family: "Manrope", sans-serif;

    font-size: 13px;

    font-weight: 700;

    line-height: 1.4;

    letter-spacing: 0.1em;

    text-transform: uppercase;

    color: #c9a227;

}

.single-post-page__title {

    margin: 0;

    font-family: "Manrope", sans-serif;

    font-size: 48px;

    line-height: 1.15;

    font-weight: 800;

    color: #fff;

}

.single-post-page__meta {

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 10px;

    margin-top: 24px;

    font-size: 14px;

    color: rgba(255, 255, 255, 0.7);

}


/* Content */

.single-post-page {

    padding: 80px 0;

}

.single-post-page__wrapper {

    max-width: 900px;

    margin: 0 auto;

}

.single-post-page__featured-image {

    margin-bottom: 50px;

}

.single-post-page__featured-image img {

    display: block;

    width: 100%;

    height: auto;

    border-radius: 4px;

}


/* Typography */

.single-post-page__content {

    font-size: 17px;

    line-height: 1.8;

    color: #5b6770;

}

.single-post-page__content p {

    margin: 0 0 24px;

}

.single-post-page__content h2,

.single-post-page__content h3,

.single-post-page__content h4 {

    font-family: "Manrope", sans-serif;

    color: #0b1f3a;

    line-height: 1.3;

}

.single-post-page__content h2 {

    margin: 50px 0 20px;

    font-size: 30px;

    font-weight: 800;

}

.single-post-page__content h3 {

    margin: 40px 0 16px;

    font-size: 24px;

    font-weight: 700;

}

.single-post-page__content h4 {

    margin: 32px 0 14px;

    font-size: 20px;

    font-weight: 700;

}

.single-post-page__content ul,

.single-post-page__content ol {

    margin: 0 0 28px;

    padding-left: 24px;

}

.single-post-page__content li {

    margin-bottom: 10px;

}

.single-post-page__content a {

    color: #c9a227;

}

.single-post-page__content blockquote {

    margin: 40px 0;

    padding: 24px 30px;

    border-left: 3px solid #c9a227;

    background: #f5f7fa;

    color: #0b1f3a;

}


/* Taxonomy */

.single-post-page__taxonomy {

    margin-top: 50px;

    padding-top: 30px;

    border-top: 1px solid #e2e6ea;

}

.single-post-page__taxonomy-item {

    display: flex;

    flex-wrap: wrap;

    gap: 8px;

    margin-bottom: 10px;

    font-size: 14px;

}

.single-post-page__taxonomy-item strong {

    font-family: "Manrope", sans-serif;

    color: #0b1f3a;

}

.single-post-page__taxonomy-item a {

    color: #5b6770;

}


/* Previous / Next */

.single-post-page__navigation {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 30px;

    margin-top: 50px;

    padding-top: 35px;

    border-top: 1px solid #e2e6ea;

}

.single-post-page__navigation a {

    display: flex;

    flex-direction: column;

    gap: 6px;

    text-decoration: none;

}

.single-post-page__navigation span {

    font-size: 12px;

    font-weight: 700;

    letter-spacing: 0.08em;

    text-transform: uppercase;

    color: #c9a227;

}

.single-post-page__navigation strong {

    font-family: "Manrope", sans-serif;

    font-size: 16px;

    line-height: 1.5;

    color: #0b1f3a;

}

.single-post-page__next {

    text-align: right;

}


/*==================================================

RESPONSIVE

==================================================*/



/*==================================================

404 PAGE

==================================================*/

.error-page-404 {

    position: relative;

    display: flex;

    align-items: center;

    min-height: 650px;

    padding: 100px 0;

    overflow: hidden;

    background: #f5f7fa;

}

.error-page-404__content {

    position: relative;

    z-index: 2;

    max-width: 750px;

    margin: 0 auto;

    text-align: center;

}


/*==================================================

404 NUMBER

==================================================*/

.error-page-404__number {

    display: block;

    margin-bottom: -25px;

    font-family: "Manrope", sans-serif;

    font-size: 180px;

    font-weight: 800;

    line-height: 1;

    color: rgba(11, 31, 58, 0.06);

}

.error-page-404 .section-subtitle {

    display: inline-block;

    margin-bottom: 18px;

}

.error-page-404__title {

    margin: 0 0 22px;

    font-family: "Manrope", sans-serif;

    font-size: 46px;

    font-weight: 800;

    line-height: 1.2;

    color: #0b1f3a;

}


/*==================================================

DESCRIPTION

==================================================*/

.error-page-404__description {

    max-width: 620px;

    margin: 0 auto 35px;

    font-size: 16px;

    line-height: 1.8;

    color: #5b6770;

}


/*==================================================

BUTTONS

==================================================*/

.error-page-404__actions {

    display: flex;

    align-items: center;

    justify-content: center;

    flex-wrap: wrap;

    gap: 15px;

}


/*==================================================

DECORATIVE BACKGROUND

==================================================*/

.error-page-404::before {

    content: "";

    position: absolute;

    top: -180px;

    right: -180px;

    width: 450px;

    height: 450px;

    border: 1px solid rgba(201, 162, 39, 0.15);

    border-radius: 50%;

}

.error-page-404::after {

    content: "";

    position: absolute;

    bottom: -250px;

    left: -200px;

    width: 500px;

    height: 500px;

    border: 1px solid rgba(11, 31, 58, 0.08);

    border-radius: 50%;

}

/*==================================================

SEARCH PAGE

==================================================*/

.search-page-section {

    padding: 80px 0 100px;

}

section.search-page-section .container {
    display: block;
}

.search-page-header {

    margin-bottom: 30px;

    padding-bottom: 18px;

    border-bottom: 1px solid #e2e6ea;

}

.search-page-header p {

    margin: 0;

    color: #5b6770;

    font-size: 14px;

}

.search-page-grid {

    display: grid;

    grid-template-columns: repeat(3, minmax(0, 1fr));

    gap: 30px;

}

.search-page-card {

    display: flex;

    flex-direction: column;

    margin: 0;

    overflow: hidden;

    background: #fff;

    border: 1px solid #e2e6ea;

    transition: 0.3s ease;

}

.search-page-card:hover {

    transform: translateY(-4px);

    box-shadow: 0 15px 40px rgba(11, 31, 58, 0.08);

}


/* Image */

.search-page-card__image {

    aspect-ratio: 16 / 10;

    overflow: hidden;

}

.search-page-card__image a {

    display: block;

    width: 100%;

    height: 100%;

}

.search-page-card__image img {

    display: block;

    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: transform 0.35s ease;

}

.search-page-card:hover .search-page-card__image img {

    transform: scale(1.04);

}


/* Content */

.search-page-card__content {

    display: flex;

    flex: 1;

    flex-direction: column;

    padding: 26px;

}


/* Post Type */

.search-page-card__type {

    display: block;

    margin-bottom: 10px;

    color: #c9a227;

    font-family: "Manrope", sans-serif;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: 0.1em;

    text-transform: uppercase;

}


/* Title */

.search-page-card__title {

    margin: 0 0 13px;

    font-family: "Manrope", sans-serif;

    font-size: 21px;

    font-weight: 800;

    line-height: 1.4;

}

.search-page-card__title a {

    color: #0b1f3a;

    text-decoration: none;

}

.search-page-card__title a:hover {

    color: #c9a227;

}


/* Excerpt */

.search-page-card__excerpt {

    margin-bottom: 22px;

    color: #5b6770;

    font-size: 14px;

    line-height: 1.7;

}


/* Link */

.search-page-card__content .search-page-card__link {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin-top: auto;
    color: #c9a227;
    font-family: "Manrope", sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
}
.search-page-card__content .search-page-card__link:hover {
    color: #0b1f3a;
}

.search-page-card__link span {
    color: #c9a227;
    font-size: 18px;
    transition: transform 0.2s ease;

}
.search-page-card__content .search-page-card__link:hover span {
    color: #0b1f3a;
}

.search-page-card__link:hover span {

    transform: translateX(4px);

}


/*==================================================

PAGINATION

==================================================*/

.search-page-pagination {

    margin-top: 60px;

}

.search-page-pagination .nav-links {

    display: flex;

    justify-content: center;

    align-items: center;

    flex-wrap: wrap;

    gap: 8px;

}

.search-page-pagination .page-numbers {

    display: flex;

    align-items: center;

    justify-content: center;

    min-width: 44px;

    height: 44px;

    padding: 0 14px;

    border: 1px solid #e2e6ea;

    color: #0b1f3a;

    font-family: "Manrope", sans-serif;

    font-size: 14px;

    font-weight: 700;

    text-decoration: none;

}

.search-page-pagination .page-numbers:hover,

.search-page-pagination .page-numbers.current {

    background: #0b1f3a;

    border-color: #0b1f3a;

    color: #fff;

}


/*==================================================

NO SEARCH RESULTS

==================================================*/

.search-page-empty {

    max-width: 720px;

    margin: 0 auto;

    padding: 50px 0;

    text-align: center;

}

.search-page-empty h2 {

    margin: 10px 0 15px;

    color: #0b1f3a;

    font-family: "Manrope", sans-serif;

    font-size: 32px;

    font-weight: 800;

    line-height: 1.3;

}

.search-page-empty>p {

    max-width: 580px;

    margin: 0 auto 30px;

    color: #5b6770;

    font-size: 15px;

    line-height: 1.7;

}


/* Search Form */

.search-page-empty__form {

    max-width: 550px;

    margin: 0 auto 25px;

}

.search-page-empty__form form {

    display: flex;

}

.search-page-empty__form input[type="search"],

.search-page-empty__form input[type="text"] {

    flex: 1;

    min-width: 0;

    height: 52px;

    padding: 0 18px;

    border: 1px solid #dfe4e8;

    outline: none;

    font-size: 15px;

}

.search-page-empty__form input:focus {

    border-color: #c9a227;

}

.search-page-empty__form input[type="submit"],

.search-page-empty__form button {

    min-height: 52px;

    padding: 0 25px;

    border: 0;

    background: #0b1f3a;

    color: #fff;

    font-family: "Manrope", sans-serif;

    font-weight: 700;

    cursor: pointer;

}

.book-consultation-section .consultation-steps p {
    width: 100%;
    margin: 0;
}

.book-consultation-section .consultation-steps p button.consultation-step-nav {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.book-consultation-section .consultation-steps p button.consultation-step-nav br {
    display: none;
}

.featured-insights__button a.btn.btn-secondary {
    background: transparent;
    color: rgb(11, 31, 58);
    border: 1px solid rgb(11, 31, 58);
    padding: 12px 24px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
    white-space: nowrap;
}

.services-intro a.btn.btn-secondary-dark:HOVER {
    color: #fff;
}

.header-btn .btn-consultation {
    background: rgb(201, 162, 39);
    color: rgb(11, 31, 58);
    border-width: medium;
    border-style: none;
    border-color: currentcolor;
    border-image: none;
    padding: 10px 22px;
    font-family: Manrope;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
}

.about-image:after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background: linear-gradient(to top, rgba(11, 31, 58, 0.4) 0%, transparent 50%);
    z-index: 1;
    top: 0;
    left: 0;
}

.about-page-overview__left p {
    font-family: 'Inter';
}

.search-page-card__link:hover {
    color: #c9a227;
}
/* =========================================
   FOUNDry About Section
   ========================================= */

.foundry-about {
  --foundry-navy: #0b1f3a;
  --foundry-gold: #c9a227;
  --foundry-text: #5b6770;
  --foundry-light: #f5f7fa;
  --foundry-white: #ffffff;

  width: 100%;
  padding: 96px 0;
  background-color: var(--foundry-white);
  box-sizing: border-box;
}

.foundry-about *,
.foundry-about *::before,
.foundry-about *::after {
  box-sizing: border-box;
}


/* =========================================
   Container
   ========================================= */

.foundry-about__container {
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;

  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: 80px;
}


/* =========================================
   Left Content
   ========================================= */

.foundry-about__content {
  width: 100%;
}


/* =========================================
   Eyebrow
   ========================================= */

.foundry-about__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.foundry-about__eyebrow-line {
  display: block;
  width: 28px;
  height: 2px;
  flex: 0 0 28px;
  background-color: var(--foundry-gold);
}

.foundry-about__eyebrow-text {
  margin: 0;

  color: var(--foundry-gold);
  font-family: "Manrope", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}


/* =========================================
   Heading
   ========================================= */

.foundry-about__title {
  margin: 0 0 24px;

  color: var(--foundry-navy);
  font-family: "Manrope", sans-serif;
  font-size: clamp(26px, 2.8vw, 38px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}


/* =========================================
   Description
   ========================================= */

.foundry-about__description {
  margin: 0 0 16px;

  color: var(--foundry-text);
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}

.foundry-about__description--last {
  margin-bottom: 36px;
}


/* =========================================
   Button
   ========================================= */

.foundry-about__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 13px 26px;

  color: var(--foundry-navy);
  background-color: transparent;
  border: 1px solid var(--foundry-navy);
  border-radius: 2px;

  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;

  cursor: pointer;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease;
}

.foundry-about__button:hover {
  color: var(--foundry-white);
  background-color: var(--foundry-navy);
  border-color: var(--foundry-navy);
}


/* =========================================
   Values
   ========================================= */

.foundry-about__values {
  display: flex;
  flex-direction: column;
  gap: 3px;
  width: 100%;
}


/* =========================================
   Individual Value
   ========================================= */

.foundry-value {
  position: relative;

  width: 100%;
  padding: 20px 24px;

  background-color: var(--foundry-light);
  border-left: 3px solid transparent;

  transition:
    border-color 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease;
}

.foundry-value:hover {
  border-left-color: var(--foundry-gold);
  background-color: #f0f3f7;
  transform: translateX(3px);
}

.foundry-value__content {
  width: 100%;
}

.foundry-value__title {
  margin: 0 0 4px;

  color: var(--foundry-navy);
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
}

.foundry-value__text {
  margin: 0;

  color: var(--foundry-text);
  font-family: "Inter", sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.6;
}

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

.advisory-focus-section {
  background: rgb(245, 247, 250);
  padding: 96px 0px;
}

.advisory-container {
  max-width: 1100px;
  margin: 0px auto;
  padding: 0px 48px;
}

.advisory-header-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 56px;
}

.advisory-subtitle-group {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.advisory-subtitle-line {
  width: 28px;
  height: 2px;
  background: rgb(201, 162, 39);
}

.advisory-subtitle {
  font-family: Manrope, sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: rgb(201, 162, 39);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.advisory-main-title {
  font-family: Manrope, sans-serif;
  font-weight: 800;
  font-size: clamp(24px, 2.8vw, 38px);
  color: rgb(11, 31, 58);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.advisory-action-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
  justify-content: flex-end;
}

.advisory-header-desc {
  font-size: 15px;
  color: rgb(91, 103, 112);
  line-height: 1.75;
  font-family: "Inter", sans-serif;
}

.advisory-all-services-btn {
  background: none;
  border: none;
  cursor: pointer;
  font-family: Manrope, sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: rgb(201, 162, 39);
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.advisory-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}

.advisory-card {
  background: rgb(255, 255, 255);
  padding: 36px 32px;
  border-top: 3px solid transparent;
  cursor: default;
  transition: border-color 0.2s, background 0.2s;
}

.advisory-card-icon {
  font-family: Manrope, sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: rgb(201, 162, 39);
  margin-bottom: 16px;
}

.advisory-card-tag {
  font-family: Manrope, sans-serif;
  font-weight: 700;
  font-size: 11px;
  color: rgb(201, 162, 39);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.advisory-card-title {
  font-family: Manrope, sans-serif;
  font-weight: 800;
  font-size: 18px;
  color: rgb(11, 31, 58);
  margin-bottom: 12px;
  line-height: 1.2;
}

.advisory-card-desc {
  font-size: 14px;
  color: rgb(91, 103, 112);
  line-height: 1.7;
  font-family: "Inter", sans-serif;
}
.how-we-help-section {
           

                margin: 0;
    padding: 60px 0px;
    background-color: #ffffff;

        }

        .content-grid {
             max-width: 1100px;
            margin: 0 auto;
            padding: 0 48px;
            display: grid;
            grid-template-columns: 1fr 2fr;
            gap: 80px;
            align-items: start;
        }

        /* --- Left Column (Sticky) --- */
        .info-column {
            position: sticky;
            top: 100px;
        }

        .subtitle-wrapper {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
        }

        .subtitle-line {
            width: 28px;
            height: 2px;
            background: var(--primary-gold);
        }

        .subtitle-text {
            font-family: var(--font-main);
            font-weight: 700;
            font-size: 12px;
            color: var(--primary-gold);
            letter-spacing: 0.2em;
            text-transform: uppercase;
        }

        .section-heading {
            font-family: var(--font-main);
            font-weight: 800;
            font-size: clamp(24px, 2.5vw, 34px);
            color: var(--primary-dark);
            line-height: 1.2;
            letter-spacing: -0.02em;
            margin-bottom: 20px;
        }

        .section-description {
            font-family: var(--font-body);
            font-size: 15px;
            color: var(--text-gray);
            line-height: 1.75;
            margin-bottom: 28px;
        }

        .action-link {
            display: flex;
            align-items: center;
            gap: 8px;
            background: none;
            border: none;
            cursor: pointer;
            font-family: var(--font-main);
            font-weight: 700;
            font-size: 13px;
            color: var(--primary-gold);
            letter-spacing: 0.06em;
            text-transform: uppercase;
            padding: 0;
            transition: opacity 0.2s ease;
        }

        .action-link:hover {
            opacity: 0.8;
        }

        /* --- Right Column (Process Cards) --- */
        .process-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2px;
        }

        .process-card {
            padding: 32px 28px;
            background: var(--bg-card);
            position: relative;
            overflow: hidden;
        }

        .step-number {
            font-family: var(--font-main);
            font-weight: 800;
            font-size: 11px;
            color: var(--primary-gold);
            letter-spacing: 0.2em;
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        .step-title {
            font-family: var(--font-main);
            font-weight: 800;
            font-size: 20px;
            color: var(--primary-dark);
            margin-bottom: 10px;
        }

        .step-description {
            font-family: var(--font-body);
            font-size: 13px;
            color: var(--text-gray);
            line-height: 1.65;
        }
         .experience-section {
  background: rgb(245, 247, 250);
  padding: 96px 0px;
}

.experience-container {
  max-width: 1100px;
  margin: 0px auto;
  padding: 0px 48px;
}

.experience-header-wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 52px;
  flex-wrap: wrap;
  gap: 24px;
}

.experience-subtitle-group {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.experience-subtitle-line {
  width: 28px;
  height: 2px;
  background: rgb(201, 162, 39);
}

/* Manrope Font Applied to Subtitle, Headings, and Button */
.experience-subtitle {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: rgb(201, 162, 39);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.experience-main-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(24px, 2.8vw, 38px);
  color: rgb(11, 31, 58);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.experience-action-btn {
  background: transparent;
  color: rgb(11, 31, 58);
  border: 1px solid rgb(11, 31, 58);
  padding: 12px 22px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  white-space: nowrap;
  transition: 0.2s;
}

.experience-action-btn:hover {
  background: rgb(11, 31, 58);
  color: rgb(255, 255, 255);
}

.experience-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.experience-card {
  background: rgb(255, 255, 255);
  padding: 36px 32px;
  transition: transform 0.2s;
  cursor: default;
  transform: translateY(0px);
}

/* Manrope Font Applied to Card Tags and Titles */
.experience-card-tag {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 11px;
  color: rgb(201, 162, 39);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 14px;
}

.experience-card-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 17px;
  color: rgb(11, 31, 58);
  line-height: 1.3;
  margin-bottom: 14px;
}

/* Inter Font Applied to Card Descriptions */
.experience-card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgb(91, 103, 112);
  line-height: 1.7;
}
.foundry-section {
  background: rgb(245, 247, 250);
  padding: 96px 0px;
}

.foundry-container {
  max-width: 1100px;
  margin: 0px auto;
  padding: 0px 48px;
}

.foundry-grid-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 72px;
  align-items: start;
}

.foundry-sticky-col {
  position: sticky;
  top: 100px;
}

.foundry-subtitle-group {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}

.foundry-subtitle-line {
  width: 28px;
  height: 2px;
  background: rgb(201, 162, 39);
}

.foundry-subtitle {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: rgb(201, 162, 39);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.foundry-main-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(22px, 2.5vw, 34px);
  color: rgb(11, 31, 58);
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}

.foundry-header-desc {
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  color: rgb(91, 103, 112);
  line-height: 1.75;
}

.foundry-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}

.foundry-card {
  padding: 36px 30px;
  border-top: 3px solid transparent;
  transition: border-color 0.2s;
}

.foundry-card-white {
  background: rgb(255, 255, 255);
}

.foundry-card-tinted {
  background: rgb(236, 238, 241);
}

.foundry-card-icon {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: rgb(201, 162, 39);
  margin-bottom: 14px;
}

.foundry-card-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 17px;
  color: rgb(11, 31, 58);
  margin-bottom: 12px;
  line-height: 1.2;
}

.foundry-card-desc {
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: rgb(91, 103, 112);
  line-height: 1.75;
}
section.advisory-focus-section .advisory-cards-grid .advisory-card:hover {
    background: rgb(250, 251, 252);
}
.experience-section .experience-cards-grid .experience-card:hover {
    transform: translateY(-3px);
}
section.foundry-section .foundry-cards-grid .foundry-card.foundry-card-white:hover,
section.foundry-section .foundry-cards-grid .foundry-card.foundry-card-tinted:hover{
    border-top: 3px solid rgb(201,162,39);
}
@media (max-width: 1199px) {

    .featured-insights__wrapper {
        grid-template-columns: 1fr;
    }

    .featured-insights__sidebar {
        margin-top: 2px;
    }

    .industries-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .why-choose-wrapper {
        grid-template-columns: 330px 1fr;
        gap: 60px;
    }

    .method-content {
        grid-template-columns: 280px 1fr;
        gap: 40px;
    }

    .method-right {
        grid-template-columns: repeat(2, 1fr);
    }


    .testimonials-wrapper {

        grid-template-columns: 1fr;

        gap: 50px;

    }

    .testimonial-tabs {

        order: 2;

    }

    .about-wrapper {
        gap: 40px;
        align-items: flex-start;
    }

    .why-choose-section,
    .industries-section,
    .featured-insights,
    .testimonials-section,
    .global-cta,
    .methodology-section,
    .section-padding,
    .about-page-overview,
    .global-cta,
    .about-page-overview {
        padding: 50px 0;
    }

    .industries-section .section-heading {
        margin: 0 auto 40px;
    }

    .testimonial-slide blockquote {
        max-width: 100%;
    }

    .site-footer .container {
        padding: 0 32px;
    }
}

@media (max-width: 991px) {
    .foundry-container { 
    padding: 0 24px !important; 
  }
  .foundry-grid-layout { 
    grid-template-columns: 1fr !important; 
    gap: 40px !important; 
  }
  .foundry-sticky-col {
    position: relative;
    top: 0;
  }
    .experience-cards-grid {
    grid-template-columns: 1fr !important;
  }
  .experience-container {
    padding: 0 24px !important;
  }
     .content-grid {
                grid-template-columns: 1fr;
                gap: 48px;
            }
            .info-column {
                position: static;
            }
     .advisory-focus-section .advisory-container { 
    padding: 0 24px !important; 
  }
  .advisory-cards-grid { 
    grid-template-columns: 1fr !important; 
  }
  .advisory-header-grid {
    grid-template-columns: 1fr !important;
  }

    .single-service-content__wrapper {

        grid-template-columns: 1fr;

        gap: 50px;

    }

    .single-service-sidebar {

        position: static;

    }

    .archive-page-section {

        padding: 70px 0 90px;

    }

    .archive-page-grid {

        grid-template-columns: repeat(2, minmax(0, 1fr));

        gap: 25px;

    }

    .error-page-404 {

        min-height: 600px;

        padding: 80px 0;

    }

    .error-page-404__number {

        font-size: 150px;

    }

    .error-page-404__title {

        font-size: 40px;

    }

    .search-page-grid {

        grid-template-columns: repeat(2, minmax(0, 1fr));

    }

    .container {
        flex-wrap: wrap;
        position: relative;
    }

    .header-btn {
        display: none;
    }

    .main-navigation {
        flex: 0;
        margin-left: auto;
    }

    .menu-toggle {
        display: block;
    }

    .menus-wrap {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: #132744;
        padding: 20px;
        z-index: 999;
    }

    .menus-wrap.active {
        display: block;
    }

    .primary-menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 18px;
    }

    .primary-menu li {
        width: 100%;
    }

    .primary-menu li a {
        display: block;
        width: 100%;
    }

    .footer-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-row {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }

    .footer-bottom-menu {
        margin-left: 0;
    }

    .footer-policy-menu {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }

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

    .experience-box {
        position: relative;
        right: auto;
        bottom: auto;
        display: inline-block;
        margin-top: -40px;
        margin-left: 20px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

    .services-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .services-heading,
    .services-intro {
        max-width: 100%;
        flex: 100%;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .method-tabs {
        grid-template-columns: repeat(2, 1fr);
    }

    .method-content {
        grid-template-columns: 1fr;
        gap: 45px;
        padding: 40px;
    }

    .method-left h3 {
        margin-top: 60px;
    }

    .method-right {
        grid-template-columns: repeat(2, 1fr);
    }


    .why-choose-wrapper {
        grid-template-columns: 1fr;
    }

    .why-left-inner {
        position: static;
    }

    .why-right {
        margin-top: 20px;
    }

    .industries-section {
        padding: 80px 0;
    }

    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .featured-insight__image {
        height: 350px;
    }

    .featured-insight__content {
        padding: 28px;
    }

    .featured-insight h3 a {
        font-size: 30px;
    }



    .global-cta .container {
        padding: 0 40px;
    }

    .global-cta__title {
        font-size: 46px;
    }

    .about-page-overview__wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-page-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }


    .contact-page-section {
        padding: 70px 0;
    }

    .contact-page-section__wrapper {
        grid-template-columns: 1fr;
        gap: 55px;
    }

    .container {
        padding: 0px 24px;
    }

    .main-navigation {
        padding-right: 0;
    }

    .hero-buttons {
        margin-bottom: 30px;
    }

    .why-choose-wrapper {
        gap: 10px;
    }

    .service-card {
        padding: 25px;
    }

    .services-intro a.btn.btn-secondary-dark:HOVER {
        color: #fff;
    }

    .site-header .container .main-navigation {
        position: static;
    }

    .menus-wrap {
        display: block;
        transform: translateX(100%);
        transition: all 0.4s ease;
        left: 0;
        right: unset;
        height: 100vh;
    }

    .menus-wrap.active {
        transform: translateX(0);
    }

    body:has(nav.menus-wrap.active) {
        overflow: hidden;
    }

    header.site-header {
        overflow-x: hidden;
    }

    header.site-header:has(.menu-toggle.active) {
        overflow: unset;
    }

    .about-page-stats {
        margin-top: 40px;
        padding: 28px 0px;
    }

    .inner-page-hero {
        padding: 30px 0 50px;
    }

    .about-page-overview__left p {
        font-size: 16px;
    }
  .foundry-about {
    padding: 72px 0;
  }

  .foundry-about__container {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 0 32px;
  }

}

@media (max-width: 767px) {
     .process-grid {
                grid-template-columns: 1fr;
            }
            .how-we-help-section {
                padding: 0 24px;
            }

    .book-consultation-section .consultation-times .wpcf7-radio {

        grid-template-columns: repeat(2, 1fr);

    }

    .book-consultation-section .consultation-form-step>h2 {

        font-size: 21px;

    }

    .book-consultation-section .consultation-session-summary {

        padding: 16px;

    }

    .single-insight-hero {

        padding: 70px 0;

    }

    .single-insight-hero__title {

        font-size: 36px;

    }

    .single-insight-featured-image {

        padding-top: 40px;

    }

    .single-insight-meta {

        padding-top: 22px;

    }

    .single-insight-meta__inner {

        gap: 8px;

    }

    .single-insight-meta__inner>span:not(:last-child)::after {

        margin-left: 8px;

    }

    .single-insight-content {

        padding: 30px 0 70px;

    }

    .single-insight-content__article {

        font-size: 16px;

    }

    .single-service-hero {

        padding: 70px 0;

    }

    .single-service-hero__title {

        font-size: 36px;

    }

    .single-service-hero__description {

        font-size: 16px;

    }

    .single-service-content {

        padding: 60px 0 70px;

    }

    .single-service-content__article {

        font-size: 16px;

    }

    .single-service-content__article h2 {

        font-size: 27px;

    }

    .single-service-content__article h3 {

        font-size: 23px;

    }

    .single-service-sidebar__box {

        padding: 25px;

    }

    .default-page-content {

        padding: 50px 0 70px;

    }

    .default-page-entry {

        font-size: 15px;

    }

    .default-page-entry h1 {

        font-size: 31px;

    }

    .default-page-entry h2 {

        font-size: 26px;

    }

    .default-page-entry h3 {

        font-size: 22px;

    }

    .default-page-entry h4 {

        font-size: 19px;

    }

    .default-page-entry blockquote {

        padding: 20px;

    }

    .default-page-entry .alignleft,

    .default-page-entry .alignright {

        float: none;

        display: block;

        margin: 20px 0;

    }

    .archive-page-section {

        padding: 50px 0 70px;

    }

    .archive-page-grid {

        grid-template-columns: 1fr;

        gap: 25px;

    }

    .archive-page-card__content {

        padding: 23px;

    }

    .archive-page-card__title {

        font-size: 19px;

    }

    .archive-page-pagination {

        margin-top: 45px;

    }

    .single-post-page__hero {

        padding: 70px 0 60px;

    }

    .single-post-page__title {

        font-size: 34px;

    }

    .single-post-page {

        padding: 55px 0;

    }

    .single-post-page__featured-image {

        margin-bottom: 35px;

    }

    .single-post-page__content {

        font-size: 16px;

    }

    .single-post-page__content h2 {

        font-size: 26px;

    }

    .single-post-page__content h3 {

        font-size: 22px;

    }

    .single-post-page__navigation {

        grid-template-columns: 1fr;

    }

    .single-post-page__next {

        text-align: left;

    }

    .error-page-404 {

        min-height: 550px;

        padding: 70px 0;

    }

    .error-page-404__number {

        margin-bottom: -15px;

        font-size: 110px;

    }

    .error-page-404__title {

        font-size: 31px;

    }

    .error-page-404__title br {

        display: none;

    }

    .error-page-404__description {

        font-size: 15px;

    }

    .error-page-404__actions {

        flex-direction: column;

    }

    .error-page-404__actions .btn {

        width: 100%;

        max-width: 300px;

        text-align: center;

    }

    .search-page-section {

        padding: 50px 0 70px;

    }

    .search-page-grid {

        grid-template-columns: 1fr;

        gap: 24px;

    }

    .search-page-card__content {

        padding: 22px;

    }

    .search-page-empty {

        padding: 30px 0;

    }

    .search-page-empty h2 {

        font-size: 27px;

    }

    .search-page-empty__form form {

        flex-direction: column;

        gap: 10px;

    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .method-tabs {
        grid-template-columns: 1fr;
    }

    .method-tab {
        padding: 20px;
    }

    .method-tab .number {
        font-size: 34px;
    }

    .method-content {
        padding: 30px 20px;
    }

    .method-left h3 {
        font-size: 40px;
    }

    .bg-number {
        font-size: 70px;
    }

    .method-right {
        grid-template-columns: 1fr;
    }

    .why-right {
        grid-template-columns: 1fr;
    }

    .why-card {
        padding: 30px;
    }

    .why-card h3 {
        font-size: 26px;
    }

    .why-counter h3 {
        font-size: 48px;
    }

    .industry-card {
        min-height: auto;
        padding: 30px 24px;
    }

    .featured-insights__header {
        align-items: flex-start;
    }

    .featured-insights__button {
        width: 100%;
    }

    .featured-insights .btn {
        width: 100%;
    }

    .insight-card {
        flex-direction: column;
    }

    .insight-card__image {
        width: 100%;
        height: 220px;
    }

    .featured-insight__image {
        height: 260px;
    }

    .featured-insight h3 a {
        font-size: 26px;
    }

    .featured-insight__footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .testimonials-section {

        padding: 80px 0;

    }

    .testimonials-section .container {

        padding: 0 20px;

    }

    .testimonials-header {

        flex-direction: column;

        align-items: flex-start;

        margin-bottom: 45px;

    }



    .testimonial-slide blockquote {

        font-size: 22px;

    }

    .client-info {

        align-items: flex-start;

    }

    .global-cta .container {

        padding: 0 20px;

    }

    .global-cta__title {

        font-size: 34px;

    }

    .global-cta__description {

        margin-bottom: 40px;

    }

    .global-cta__description p {

        font-size: 16px;

    }

    .global-cta__buttons {

        flex-direction: column;

        gap: 16px;

        margin-bottom: 45px;

    }

    .global-cta .btn {

        width: 100%;

        max-width: 320px;

    }

    .global-cta__features {

        justify-content: flex-start;

        gap: 20px;

    }

    .global-cta__feature {

        width: 100%;

    }

    .global-cta__overlay {

        display: none;

    }


    .inner-page-hero__content {
        max-width: 100%;
    }

    .contact-page-section {
        padding: 60px 0;
    }

    .contact-page-section__wrapper {
        gap: 45px;
    }

    .contact-page-section__info h2 {
        font-size: 26px;
    }

    .contact-page-section__hours {
        padding: 24px;
    }


    .book-consultation-section {
        padding: 50px 0 60px;
    }

    .book-consultation-section .consultation-step-nav {
        font-size: 11px;
        letter-spacing: .05em;
    }

    .book-consultation-section .consultation-step-nav span {
        display: block;
        margin: 0 auto 7px;
    }

    .book-consultation-section .consultation-services .wpcf7-form-control,
    .book-consultation-section .consultation-fields {
        grid-template-columns: 1fr;
    }

    .book-consultation-section .consultation-field-full {
        grid-column: auto;
    }

    .service-link {
        opacity: 1;
        visibility: visible;
    }

    .service-card {
        padding: 20px;
    }

    .methodology-section {
        padding: 40px 0;
    }

    .meth-content {
        margin-bottom: 10px;
    }

    .featured-insights {
        padding: 30px 0;
    }

    .hero-title {
        font-size: clamp(30px, 5.5vw, 70px);
    }

    .inner-page-hero__title {
        font-size: clamp(28px, 5vw, 60px);
    }

    .book-consultation-section__inner {
        padding: 0;
    }
    .hero-buttons a {
        font-size: 13px;
    }
    .foundry-about {
    padding: 56px 0;
  }

  .foundry-about__container {
    gap: 40px;
    padding: 0 20px;
  }

  .foundry-about__eyebrow {
    margin-bottom: 16px;
  }

  .foundry-about__title {
    margin-bottom: 20px;
    font-size: 28px;
  }

  .foundry-about__description {
    font-size: 15px;
    line-height: 1.7;
  }

  .foundry-about__description--last {
    margin-bottom: 28px;
  }

  .foundry-about__button {
    width: 100%;
    padding: 14px 20px;
  }

  .foundry-value {
    padding: 18px 20px;
  }
}

@media (max-width: 575px) {

    .industries-grid {
        grid-template-columns: 1fr;
    }

    .featured-insight__content {
        padding: 24px;
    }

    .insight-filter {
        width: 100%;
        text-align: center;
    }


    .about-page-stats {
        grid-template-columns: 1fr;
    }

    .contact-page-section {
        padding: 30px 0;
    }

    .contact-page-section__item {
        gap: 12px;
    }

    .contact-page-section__hours {
        margin-top: 32px;
        padding: 22px 20px;
    }

    .hero-buttons {
        gap: 10px;
        flex-wrap: wrap;
    }

    .hero-description {
        margin-bottom: 15px;
        font-size: 17px;
    }

    .section-padding {
        padding: 40px 0;
    }

    .container {
        padding: 0px 16px;
    }

    .hero-stats {
        gap: 8px;
        padding-top: 18px;
    }

    .hero-stat h3 {
        font-size: 26px;
        line-height: 29px;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .hero-title {
        margin-bottom: 8px;
    }

    .about-content .section-title {
        font-size: clamp(24px, 3vw, 44px);
    }

    .services-top {
        margin-bottom: 20px;
    }

    .services-heading .section-title {
        margin-top: 0;
        margin-bottom: 0;
    }

    .method-left h3 {
        font-size: 27px;
    }

    .why-card {
        border: 1px solid #ddd;
    }

    .featured-insights__header {
        margin-bottom: 20px;
        flex-wrap: wrap;
    }

    .featured-insights__header {
        gap: 15px;
    }

    .featured-insight h3 a {
        font-size: 24px;
    }

    .site-footer {
        padding: 20px 0 24px;
    }

    .footer-row {
        padding-bottom: 0;
    }

    .footer-row {
        gap: 20px;
    }

    .why-choose-section,
    .industries-section,
    .featured-insights,
    .testimonials-section,
    .global-cta,
    .methodology-section,
    .section-padding,
    .about-page-overview,
    .global-cta,
    .about-page-overview {
        padding: 30px 0;
    }

    .contact-page-section__wrapper {
        gap: 25px;
        padding: 0;
    }

    .contact-page-form__submit {
        position: relative;
    }

    .contact-page-form__submit span.wpcf7-spinner {
        position: absolute;
        left: 50%;
        transform: translate(-130%, -90%);
        top: 50%;
    }

    .book-consultation-section .consultation-steps {
        margin-bottom: 18px;
    }

    .hero-buttons a.btn.btn-secondary {
        max-width: 286px;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-buttons a.btn.btn-secondary {
        max-width: 100%;
        width: 100%;
    }

    .book-consultation-section .consultation-times .wpcf7-radio {

        grid-template-columns: 1fr 1fr;

    }

    .client-avatar {
        width: 48px;
        height: 34px;
    }

    .book-consultation-section .consultation-time-continue {

        width: 100%;

    }

    .btn.btn-secondary,
    .btn-primary {
        width: 100%;
    }
}



/*services new*/

/* --- Layout & Base --- */
    .advisory-services-section {
      background: #ffffff;
      padding: 80px 0;
    }

    .advisory-services-container {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 48px;
    }

    /* --- Header Section --- */
    .advisory-services-header {
      display: grid;
      grid-template-columns: 1fr;
      gap: 40px;
      align-items: end;
      margin-bottom: 56px;
    }

    .advisory-services-subtitle-wrapper {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: 20px;
    }

    .advisory-services-accent-line {
      width: 28px;
      height: 2px;
      background: #c9a227;
    }

    .advisory-services-subtitle {
      font-family: 'Manrope', sans-serif;
      font-weight: 700;
      font-size: 12px;
      color: #c9a227;
      letter-spacing: 0.2em;
      text-transform: uppercase;
      margin: 0;
    }

    .advisory-services-main-title {
      font-family: 'Manrope', sans-serif;
      font-weight: 800;
      font-size: clamp(24px, 2.8vw, 38px);
      color: #0b1f3a;
      line-height: 1.15;
      letter-spacing: -0.02em;
      margin: 0;
    }

    /* --- Accordion List --- */
    .advisory-services-accordion-list {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2px;
      /*background: #eaeaea; */
      border-top: 1px solid #eaeaea;
    }

    .advisory-services-accordion-item {
      background: #ffffff;
      padding: 40px 48px;
      border-top: 3px solid transparent;
      cursor: pointer;
      transition: border-color 0.2s, background 0.2s;
    }

    .advisory-services-accordion-item:hover {
      background: #fafafa;
    }

    /* --- Active State (Expanded) --- */
    .advisory-services-accordion-item.advisory-services-active {
      border-top-color: #c9a227;
      background: #ffffff;
    }

    /* Hide short description when active */
    .advisory-services-accordion-item.advisory-services-active .advisory-services-short-desc {
      display: none;
    }

    /* --- Accordion Header --- */
    .advisory-services-accordion-header {
      display: flex;
      align-items: flex-start;
      justify-content: space-between;
      gap: 24px;
    }

    .advisory-services-accordion-item.advisory-services-active .advisory-services-accordion-header {
      margin-bottom: 32px; 
    }

    .advisory-services-header-left {
      display: flex;
      gap: 24px;
      align-items: flex-start;
    }

    .advisory-services-item-number {
      font-family: 'Manrope', sans-serif;
      font-weight: 800;
      font-size: 11px;
      color: #c9a227;
      letter-spacing: 0.12em;
      margin-top: 4px;
      margin-bottom: 0;
      flex-shrink: 0;
    }

    .advisory-services-item-category {
      font-family: 'Manrope', sans-serif;
      font-weight: 700;
      font-size: 11px;
      color: #c9a227;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      margin: 0 0 6px 0;
    }

    .advisory-services-item-title {
      font-family: 'Manrope', sans-serif;
      font-weight: 800;
      font-size: 22px;
      color: #0b1f3a;
      line-height: 1.2;
      margin: 0;
    }

    .advisory-services-short-desc {
      font-size: 14px;
      color: #5b6770;
      font-family: sans-serif;
      line-height: 1.7;
      margin-top: 10px;
      max-width: 600px;
    }

    .advisory-services-item-icon {
      color: #c9a227;
      font-size: 20px;
      flex-shrink: 0;
      margin-top: 4px;
      transition: transform 0.25s ease;
      line-height: 1;
    }

    /* Rotate icon to 'x' when active */
    .advisory-services-accordion-item.advisory-services-active .advisory-services-item-icon {
      transform: rotate(45deg);
    }

    /* --- Accordion Body (Expanded Content) --- */
    .advisory-services-accordion-body {
      display: none; 
      grid-template-columns: repeat(3, 1fr);
      gap: 32px;
      margin-left: 40px;
      animation: 0.3s expand forwards ease-in-out;
    }

    /* Show body when item is active */
    .advisory-services-accordion-item.advisory-services-active .advisory-services-accordion-body {
      display: grid;
    }

    .advisory-services-body-column {
      display: flex;
      flex-direction: column;
    }

    .advisory-services-col-title {
      font-family: 'Manrope', sans-serif;
      font-weight: 700;
      font-size: 11px;
      color: #0b1f3a;
      text-transform: uppercase;
      letter-spacing: 0.12em;
      margin: 0 0 10px 0;
      border-bottom: 1px solid #f0f2f5;
      padding-bottom: 8px;
    }

    .advisory-services-col-desc {
      font-size: 14px;
      color: #5b6770;
      font-family: sans-serif;
      line-height: 1.75;
      margin: 0;
    }

    .advisory-services-body-action {
      grid-column: 1 / -1; 
      margin-top: 10px;
    }

    /* --- Bottom CTA Box --- */
    .advisory-services-cta-box {
      margin-top: 40px;
      padding: 28px 36px;
      background: #f5f7fa;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 16px;
    }

    .advisory-services-cta-text {
      font-size: 15px;
      color: #5b6770;
      font-family: sans-serif;
      line-height: 1.6;
      margin: 0;
    }

    /* --- Buttons --- */
    .advisory-services-btn {
      font-family: 'Manrope', sans-serif;
      font-weight: 800;
      font-size: 12px;
      letter-spacing: 0.07em;
      text-transform: uppercase;
      cursor: pointer;
      border-radius: 2px;
      border: none;
      white-space: nowrap;
      transition: opacity 0.2s;
    }

    .advisory-services-btn:hover {
      opacity: 0.9;
    }

    .advisory-services-btn-primary {
      background: #c9a227;
      color: #0b1f3a;
      padding: 13px 26px;
      font-size: 13px;
    }

    .advisory-services-btn-dark {
      background: #0b1f3a;
      color: #ffffff;
      padding: 12px 24px;
      font-weight: 700;
    }
    body.page-template-template-services section.inner-page-hero .inner-page-hero__content {
    text-align: left;
}

    body.page-template-template-our-approches section.inner-page-hero .inner-page-hero__content,
    body.page-template-template-advisory-visit section.inner-page-hero .inner-page-hero__content,
    body.page-template-template-new-contact-page section.inner-page-hero .inner-page-hero__content,
    body.page-template-template-new-insight-template section.inner-page-hero .inner-page-hero__content{
    text-align: left;
}
body.page-template-template-our-approches section.inner-page-hero .inner-page-hero__content p,
body.page-template-template-advisory-visit section.inner-page-hero .inner-page-hero__content p,
body.page-template-template-new-contact-page section.inner-page-hero .inner-page-hero__content p,
body.page-template-template-services section.inner-page-hero .inner-page-hero__content p,
body.page-template-template-new-insight-template section.inner-page-hero .inner-page-hero__content p{
    line-height: 30px;
}

    /* --- Animations --- */
    @keyframes expand { 
      from { 
        opacity: 0; 
        transform: translateY(-10px); 
      } 
      to { 
        opacity: 1; 
        transform: translateY(0); 
      } 
    }

    /* --- Responsive Media Queries --- */
    @media (max-width: 900px) {
      .advisory-services-container { padding: 0 24px; }
      .advisory-services-accordion-item { padding: 32px 24px; }
      .advisory-services-accordion-body { 
        grid-template-columns: 1fr; 
        margin-left: 0;
        margin-top: 20px;
      }
    }

    @media (max-width: 600px) {
      .advisory-services-header-left { flex-direction: column; gap: 12px; }
      .advisory-services-item-number { margin-top: 0; }
    }
    
    
    
    
    /* --- Layout & Base --- */
.approach-section {
  background: #0b1f3a;
  padding: 96px 0;
  font-family: sans-serif; /* Fallback for body text */
}

.approach-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}

/* --- Header Section --- */
.approach-header {
  text-align: center;
  margin-bottom: 64px;
}

.approach-subtitle-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}

.approach-accent-line {
  width: 28px;
  height: 2px;
  background: #c9a227;
}

.approach-subtitle {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 12px;
  color: var(--approach-gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin: 0;
}

.approach-main-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: clamp(26px, 3vw, 42px);
  color: #ffffff;
  line-height: 1.12;
  letter-spacing: -0.02em;
  margin: 0 0 16px 0;
}

.approach-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.5);
  max-width: 520px;
  margin: 0 auto;
}

/* --- Tabs Navigation --- */
.approach-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 48px;
  flex-wrap: wrap; /* Allows wrapping on very small screens */
}

.approach-tab-wrapper {
  display: flex;
  align-items: center;
}

.approach-tab {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.5);
  padding: 10px 24px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 0;
}

.approach-tab:hover {
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.8);
}

.approach-tab.active {
  background: #c9a227;
  border-color: #c9a227;
  color: var(#0b1f3a);
}

.approach-arrow {
  color: #c9a227;
  font-size: 14px;
  padding: 0 4px;
  opacity: 0.5;
}

/* Hide arrow on the last item for mobile wrapping gracefully */
.approach-tab-wrapper:last-child .approach-arrow {
  display: none;
}

/* --- Tabs Content Area --- */
.approach-content-container {
  position: relative;
}

.approach-content {
  display: none; /* Hidden by default */
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  background: rgba(255, 255, 255, 0.04);
  padding: 48px;
}

.approach-content.active {
  display: grid; /* Show when active */
  animation: approachFadeIn 0.3s ease forwards;
}

/* Left Column */
.approach-step-number {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 64px;
  color: rgba(201, 162, 39, 0.15); /* Tinted gold */
  line-height: 1;
  letter-spacing: -0.04em;
  margin: 0 0 -8px 0;
}

.approach-step-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 32px;
  color: #ffffff;
  line-height: 1.1;
  margin: 0 0 20px 0;
}

.approach-step-divider {
  width: 36px;
  height: 3px;
  background: var(--approach-gold);
  margin-bottom: 24px;
}

.approach-step-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin: 0;
}

/* Right Column */
.approach-activities-heading {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 11px;
  color: var(--approach-gold);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 20px 0;
}

.approach-activities-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.approach-activity-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.05);
}

.approach-activity-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: rgb(201, 162, 39);
  flex-shrink: 0;
}

.approach-activity-text {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.4;
  margin: 0;
}

/* --- Animations --- */
@keyframes approachFadeIn {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

/* --- Responsive Media Queries --- */
@media (max-width: 900px) {
  .approach-container {
    padding: 0 24px;
  }
  .approach-content {
    grid-template-columns: 1fr;
    padding: 32px 24px;
    gap: 40px;
  }
  .approach-tabs {
    gap: 8px; /* Adds space when buttons wrap on mobile */
  }
  .approach-arrow {
    display: none; /* Hides arrows on mobile for a cleaner stacked look */
  }
}


/* --- Container & Layout --- */
.case-studies-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 80px 48px;
  font-family: sans-serif;
}

.case-studies-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* --- Individual Cards --- */
.case-studies-card {
  background: #ffffff;
  padding: 48px;
  border-left: 3px solid transparent;
  transition: border-color 0.2s ease;
}

.case-studies-card.alt-bg {
  background: #f5f7fa;
}

/* Hover effect on cards to reveal gold border */
.case-studies-card:hover {
  border-left-color: #c9a227;
}

.case-studies-layout {
  display: flex;
  gap: 32px;
}

.case-studies-number {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 36px;
  color: rgba(11, 31, 58, 0.1);
  line-height: 1;
  flex-shrink: 0;
  margin: 4px 0 0 0;
}

.case-studies-content {
  flex: 1 1 0%;
}

.case-studies-category {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 11px;
  color: #c9a227;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 10px 0;
}

.case-studies-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: #0b1f3a;
  margin: 0 0 24px 0;
  line-height: 1.2;
}

/* --- 3-Column Grid inside Cards --- */
.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.case-studies-col-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 11px;
  color: #0b1f3a;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin: 0 0 8px 0;
}

.case-studies-col-text {
  font-size: 13px;
  color: #5b6770;
  line-height: 1.7;
  margin: 0;
}

/* --- Confidentiality Notice Box --- */
.case-studies-notice {
  margin-top: 48px;
  padding: 24px 28px;
  background: #f5f7fa;
  border-left: 3px solid #c9a227;
}

.case-studies-notice-text {
  font-size: 13px;
  color: #5b6770;
  line-height: 1.7;
  margin: 0;
}

.case-studies-notice-text strong {
  color: #0b1f3a;
  font-family: 'Manrope', sans-serif;
}

/* --- Bottom CTA Section --- */
.case-studies-cta {
  text-align: center;
  margin-top: 64px;
}

.case-studies-cta-text {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #0b1f3a;
  margin: 0 0 24px 0;
}

.case-studies-btn {
  background: #c9a227;
  color: #0b1f3a;
  border: none;
  padding: 16px 36px;
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 2px;
  transition: opacity 0.2s ease;
}

.case-studies-btn:hover {
  opacity: 0.9;
}

/* --- Responsive Media Queries --- */
@media (max-width: 900px) {
  .case-studies-container {
    padding: 60px 24px;
  }
}

@media (max-width: 768px) {
  .case-studies-layout {
    flex-direction: column;
    gap: 16px;
  }
  
  .case-studies-number {
    font-size: 28px;
  }

  .case-studies-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .case-studies-card {
    padding: 32px 24px;
  }
}



/*new conact css*/
/* ----------------------------------
   Layout Container
----------------------------------- */
.contact-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 48px;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 72px;
}

/* ----------------------------------
   Left Column: Contact Info
----------------------------------- */
.contact-heading {
  font-family: 'Manrope', sans-serif;
  font-weight: 800;
  font-size: 22px;
  color: #0b1f3a;
  margin-bottom: 16px;
}

.contact-intro {
  color: #5b6770;
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 36px;
}

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

.contact-icon {
  font-size: 18px;
  margin-top: 1px;
}

.contact-item-label {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 11px;
  color: #c9a227;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 3px;
}

.contact-item-text {
  font-size: 14px;
  color: #222222;
  line-height: 1.6;
}

.contact-notice {
  padding: 22px 24px;
  background: #f5f7fa;
  margin-top: 16px;
}

.notice-confidential {
  margin-top: 36px;
  border-left: 3px solid #c9a227;
}

.notice-hours {
  border-left: 3px solid #e2e6ea;
}

.notice-title {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  color: #0b1f3a;
  font-size: 14px;
  margin-bottom: 6px;
}

.notice-text {
  font-size: 13px;
  color: #5b6770;
  line-height: 1.65;
}

/* ----------------------------------
   Right Column: CF7 Form Styles
----------------------------------- */
.contact-form-wrapper .wpcf7 {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cf7-grid-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 18px;
}

.cf7-field {
  margin-bottom: 18px;
}

.cf7-grid-row .cf7-field {
  margin-bottom: 0;
}

.contact-form-wrapper label {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 12px;
  color: #0b1f3a;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-form-wrapper input[type="text"],
.contact-form-wrapper input[type="email"],
.contact-form-wrapper input[type="tel"],
.contact-form-wrapper select,
.contact-form-wrapper textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #e2e6ea;
  border-radius: 3px;
  font-size: 14px;
  color: #222222;
  font-family: 'Inter', sans-serif;
  outline: none;
  background: #ffffff;
  box-sizing: border-box;
}

.contact-form-wrapper textarea {
  resize: vertical;
  min-height: 120px;
}

/* Radio Button Styling for CF7 */
.cf7-radio-group .wpcf7-radio {
  display: flex;
  gap: 12px;
}

.cf7-radio-group .wpcf7-list-item {
  margin: 0;
}

.cf7-radio-group .wpcf7-list-item-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: #5b6770;
  cursor: pointer;
  text-transform: none; /* overrides the uppercase label style */
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  letter-spacing: normal;
}

.cf7-radio-group input[type="radio"] {
  accent-color: #c9a227;
}

.cf7-privacy-text {
  font-size: 12px;
  color: #5b6770;
  line-height: 1.6;
  margin-bottom: 18px;
}

.cf7-submit-btn {
  background: #0b1f3a;
  color: #ffffff;
  border: none;
  padding: 16px 32px;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  cursor: pointer;
  border-radius: 2px;
  text-transform: uppercase;
  transition: background 0.2s ease;
  display: inline-block;
  width: auto;
}

.cf7-submit-btn:hover {
  background: #17345b;
}

/* ----------------------------------
   Mobile Responsiveness
----------------------------------- */
@media (max-width: 768px) {
  .contact-section {
    grid-template-columns: 1fr;
    padding: 60px 24px;
    gap: 48px;
  }
  
  .cf7-grid-row {
    grid-template-columns: 1fr;
  }
}

.contact-section .contact-form-wrapper .wpcf7-submit {
    color: #fff;
}
.footer-cta-col a.footer-btn {
    color: rgb(11, 31, 58);
}
.footer-contact-item span.icon img.emoji {
    opacity: 0.3;
}



/*NEw Hero Banner*/

/* ----------------------------------
   Hero Banner Layout
----------------------------------- */
.foundry-hero-banner {
    position: relative;
    width: 100%;
}

.foundry-hero-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 128px 64px 80px;
    width: 100%;
    box-sizing: border-box;
}

.foundry-hero-content {
    max-width: 680px;
}

/* ----------------------------------
   Typography & Accents
----------------------------------- */
.foundry-hero-subtitle-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
}

.foundry-hero-subtitle-line {
    width: 28px;
    height: 2px;
    background: #c9a227;
}

.foundry-hero-subtitle {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 11px;
    color: #c9a227;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin: 0;
}

.foundry-hero-company {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin: 0 0 16px 0;
}

.foundry-hero-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: clamp(34px, 5vw, 62px);
    color: #ffffff;
    line-height: 1.08;
    letter-spacing: -0.025em;
    margin: 0 0 28px 0;
}

/* Turns the span inside the H1 gold, exactly like your design */
.foundry-hero-title span {
    color: #c9a227;
}

.foundry-hero-description {
    font-family: 'Inter', sans-serif;
    font-size: clamp(15px, 1.6vw, 18px);
    color: rgba(255, 255, 255, 0.68);
    line-height: 1.8;
    max-width: 580px;
    margin: 0 0 48px 0;
    font-weight: 400;
}

/* ----------------------------------
   Buttons
----------------------------------- */
.foundry-hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.foundry-hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
    text-decoration: none;
}

.foundry-hero-btn-primary {
    background: #c9a227;
    color: #0b1f3a;
    border: none;
    box-shadow: 0px 4px 20px rgba(201, 162, 39, 0.28);
    transition: transform 0.15s, box-shadow 0.15s;
}

.foundry-hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0px 6px 24px rgba(201, 162, 39, 0.4);
}

.foundry-hero-btn-secondary {
    background: transparent;
    color: #ffffff;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: border-color 0.2s, color 0.2s;
}

.foundry-hero-btn-secondary:hover {
    border-color: #ffffff;
    color: #ffffff;
}

/* ----------------------------------
   Bottom Services / Stats Loop
----------------------------------- */
.foundry-hero-services {
    display: flex;
    gap: 0px;
    margin-top: 80px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
}

.foundry-hero-service-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-right: 24px;
    margin-right: 24px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 12px;
}

/* Removes the divider line from the very last item */
.foundry-hero-service-item:last-child {
    border-right: none;
    margin-right: 0;
    padding-right: 0;
}

.foundry-hero-service-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #c9a227;
    flex-shrink: 0;
}

.foundry-hero-service-text {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.42);
    letter-spacing: 0.02em;
    margin: 0;
}

/* ----------------------------------
   Mobile Adjustments
----------------------------------- */
@media (max-width: 768px) {
    .foundry-hero-container {
        padding: 80px 24px 60px;
    }
    
    .foundry-hero-services {
        margin-top: 40px;
        flex-direction: column;
    }
    
    .foundry-hero-service-item {
        border-right: none;
        margin-right: 0;
        padding-right: 0;
    }
}


/* ----------------------------------
   Hero Banner Layout
----------------------------------- */
.foundry-hero-banner {
    position: relative;
    width: 100%;
    /* Solid base color so the transparent image has a dark background to blend into */
    background-color: rgb(11, 31, 58); 
}

/* Layer 1: The Image with 0.14 Opacity */
.foundry-hero-banner::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://thefoundrybiz.com/wp-content/uploads/2026/09/photo-1542744173-8e7e53415bb0.avif');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.14; /* Image opacity */
    z-index: 0;
}

/* Layer 2: The Gradient Overlay */
.foundry-hero-banner::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(110deg, rgba(11, 31, 58, 0.97) 50%, rgba(11, 31, 58, 0.72) 100%);
    z-index: 1;
}

/* Layer 3: The Content Container */
.foundry-hero-container {
    position: relative;
    z-index: 2; /* Forces the text to sit above the background layers */
    max-width: 1100px;
    margin: 0 auto;
    padding: 128px 64px 80px;
    width: 100%;
    box-sizing: border-box;
}

a.foundry-hero-btn.foundry-hero-btn-primary{
    color: rgb(11, 31, 58);
}
a.foundry-hero-btn.foundry-hero-btn-secondary{
    color: #fff;
}
a.foundry-about__button {
    color: rgb(11, 31, 58);
}
.advisory-subtitle {
    margin-bottom: 0;
}
section.how-we-help-section .info-column p.subtitle-text,
.experience-subtitle,
.foundry-section .foundry-container p.foundry-subtitle{
    margin-bottom: 0;
}
p.approach-subtitle,
.approach-activities-heading{
    color: rgb(201, 162, 39);
}
@media (max-width: 768px) {
    .foundry-cards-grid {
        grid-template-columns: 1fr;
    }
    .content-grid {
    padding: 30px 0px;
}
.foundry-hero-container {
    padding: 40px 34px 40px;
}
}





 /* ----------------------------------
   Insights Section Layout
----------------------------------- */
.insight-page-section {
    background: #ffffff;
    padding: 80px 0;
}

.insight-page-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 48px;
}

/* ----------------------------------
   Filters
----------------------------------- */
.insight-page-filters {
    display: flex;
    gap: 8px;
    margin-bottom: 56px;
    flex-wrap: wrap;
    padding-top: 8px;
}

.insight-page-filter-btn {
    padding: 8px 16px;
    background: #f5f7fa;
    color: #5b6770;
    border: none;
    border-radius: 2px;
    font-family: 'Manrope', sans-serif;
    font-weight: 600;
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.15s ease;
}

.insight-page-filter-btn:hover {
    background: #e2e6ea;
}

.insight-page-filter-btn.active {
    background: #0b1f3a;
    color: #ffffff;
}

/* ----------------------------------
   Grid & Cards
----------------------------------- */
.insight-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    margin-bottom: 48px;
}

.insight-page-card {
    background: #f5f7fa;
    padding: 40px 32px;
    border-top: 3px solid #e2e6ea;
    transition: opacity 0.2s;
}

.insight-page-category {
    font-family: 'Manrope', sans-serif;
    font-weight: 700;
    font-size: 11px;
    color: #c9a227;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin: 0 0 14px 0;
}

/* Skeleton UI */
.insight-page-skeleton-line {
    height: 12px;
    background: #e2e6ea;
    border-radius: 2px;
    margin-bottom: 10px;
}

.insight-page-skeleton-box {
    height: 80px;
    background: #eaeced;
    border-radius: 2px;
    margin-bottom: 16px;
}

.insight-page-note {
    font-size: 12px;
    color: #5b6770;
    font-style: italic;
    margin: 0;
}

/* ----------------------------------
   CTA / Newsletter Box
----------------------------------- */
.insight-page-cta {
    background: #0b1f3a;
    padding: 48px;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: center;
}

.insight-page-cta-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 20px;
    color: #ffffff;
    margin: 0 0 8px 0;
}

.insight-page-cta-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin: 0;
}

.insight-page-cta-form {
    display: flex;
    gap: 0;
    flex-shrink: 0;
}

.insight-page-cta-input {
    padding: 12px 16px;
    border: none;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    outline: none;
    width: 220px;
    border-radius: 2px 0 0 2px;
}

.insight-page-cta-btn {
    background: #c9a227;
    color: #0b1f3a;
    border: none;
    padding: 12px 20px;
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 12px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 0 2px 2px 0;
    white-space: nowrap;
}

/* ----------------------------------
   Responsive Design
----------------------------------- */
@media (max-width: 900px) {
    .insight-page-container {
        padding: 0 24px;
    }
    
    .insight-page-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .insight-page-cta {
        grid-template-columns: 1fr;
        padding: 32px 24px;
    }
    
    .insight-page-cta-form {
        flex-direction: column;
    }
    
    .insight-page-cta-input {
        width: 100%;
        border-radius: 2px 2px 0 0;
        box-sizing: border-box;
    }
    
    .insight-page-cta-btn {
        border-radius: 0 0 2px 2px;
        width: 100%;
    }
}

@media (max-width: 560px) {
    .insight-page-grid {
        grid-template-columns: 1fr;
    }
}

body.page-template-template-about-us .inner-page-hero__content {
    text-align: left;
}


/* ----------------------------------
   About Content Section
----------------------------------- */
.about-content-section {
    background: #ffffff;
    width: 100%;
}

.about-content-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 48px;
    box-sizing: border-box;
}

/* ----------------------------------
   Content Blocks
----------------------------------- */
.about-content-block {
    margin-bottom: 56px;
    padding-bottom: 56px;
    border-bottom: 1px solid #f0f2f5;
}

/* Removes the line and spacing from the very last item */
.about-content-block:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

/* ----------------------------------
   Typography
----------------------------------- */
.about-content-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 24px;
    color: #0b1f3a;
    margin: 0 0 18px 0;
    letter-spacing: -0.01em;
}

.about-content-text {
    font-size: 16px;
    color: #5b6770;
    line-height: 1.85;
    margin: 0;
    font-family: 'Inter', sans-serif;
}

/* ----------------------------------
   Mobile Responsiveness
----------------------------------- */
@media (max-width: 768px) {
    .about-content-container {
        padding: 60px 24px;
    }
    
    .about-content-block {
        margin-bottom: 40px;
        padding-bottom: 40px;
    }
}


/* ----------------------------------
   Why Process Matters Section
----------------------------------- */
.why-process-section {
    background: #ffffff;
    padding: 80px 0;
    width: 100%;
    box-sizing: border-box;
}

.why-process-container {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 48px;
    box-sizing: border-box;
}

.why-process-title {
    font-family: 'Manrope', sans-serif;
    font-weight: 800;
    font-size: 26px;
    color: #0b1f3a;
    margin: 0 0 20px 0;
}

.why-process-text {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #5b6770;
    line-height: 1.85;
    margin: 0 0 20px 0;
}

/* Removes margin from the last paragraph so it sits clean inside the container */
.why-process-text:last-child {
    margin-bottom: 0;
}

/* ----------------------------------
   Mobile Responsiveness
----------------------------------- */
@media (max-width: 768px) {
    .why-process-container {
        padding: 0 24px;
    }
}

section.inner-page-hero span.section-subtitle {
    padding-left: 30px;
}


.inner-page-hero__content {
    position: relative;
}

.inner-page-hero__content::before {
    content: "";
    background: rgb(201, 162, 39);
    height: 2px;
    width: 22px;
    position: absolute;
    top: 9px;
}

.contact-section .contact-form-wrapper div form div:nth-child(5) span.wpcf7-form-control.wpcf7-radio span.wpcf7-list-item label {
    display: flex;
}

form.insight-page-cta-form input.insight-page-cta-input {
    display: none;
}
.contact-item-text a {
    color: #222;
    text-decoration: none;
}