/* Custom Styles */

@font-face {
    font-family: 'Suisse Intl';
    src: url('../fonts/SuisseIntl-Regular.eot');
    src: url('../fonts/SuisseIntl-Regular.eot?#iefix') format('embedded-opentype'),
        url('../fonts/SuisseIntl-Regular.woff2') format('woff2'),
        url('../fonts/SuisseIntl-Regular.woff') format('woff'),
        url('../fonts/SuisseIntl-Regular.ttf') format('truetype'),
        url('../fonts/SuisseIntl-Regular.svg#SuisseIntl-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'TT Intrphss Pr Trl Cnd Blc';
    src: url('../fonts/TTIntrphssPrTrlCnd-Blk.eot');
    src: url('../fonts/TTIntrphssPrTrlCnd-Blk.eot?#iefix') format('embedded-opentype'),
        url('../fonts/TTIntrphssPrTrlCnd-Blk.woff2') format('woff2'),
        url('../fonts/TTIntrphssPrTrlCnd-Blk.woff') format('woff'),
        url('../fonts/TTIntrphssPrTrlCnd-Blk.ttf') format('truetype'),
        url('../fonts/TTIntrphssPrTrlCnd-Blk.svg#TTIntrphssPrTrlCnd-Blk') format('svg');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

:root {
    /* Fonts */
    --font-suisse: 'Suisse Intl';
    --font-tt-int: 'TT Intrphss Pr Trl Cnd Blc';
    /* Colors */
    --black: #000000;
    --white: #ffffff;
    --primary: #0d6efd;
    --secondary: #6c757d;
    --light: #f8f9fa;
    --dark: #212529;
    --text-muted: #666666;

    /* Spacing */
    --spacing-responsive: clamp(2rem, 4vw + 1rem, 3.5rem);
    --padding-responsive: clamp(2rem, 4vw + 1rem, 3.5rem);
    --margin-responsive: clamp(2rem, 4vw + 1rem, 3.5rem);
}





body {
    font-family: var(--font-suisse);
    padding-top: 81px;
    background: #FFFAF5;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--black);
    font-family: var(--font-tt-int);
}

h1 {
    font-size: clamp(2.5rem, 5vw, 6rem);
}

h2 {
    font-size: clamp(1.8rem, 2vw + 1rem, 2rem);
}

h3 {
    font-size: clamp(1.75rem, 3vw + 1rem, 3rem);
}

h4 {
    font-size: clamp(1.5rem, 2vw + 1rem, 2.5rem);
}

h5 {
    font-size: clamp(1.25rem, 1vw + 1rem, 2rem);
}

h6 {
    font-size: clamp(1rem, 0.5vw + 1rem, 1.5rem);
}

p {
    font-size: 1rem;
}

.btn.btn-dark {
    background-color: var(--black);
    color: var(--white);
    border-radius: 8px;
    padding: 6px 7px 6px 29px;
    font-size: 1rem;
    font-weight: 400;
    font-family: var(--font-suisse);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    transition: all 0.3s ease;
}

.btn.btn-dark img {
    width: 58px;
    height: 44px;
}

.btn.btn-dark:hover {
    transform: scale(1.03);
}

.btn.btn-light {
    background-color: var(--white);
    color: var(--black);
    border-radius: 8px;
    padding: 6px 7px 6px 29px;
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-suisse);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    transition: all 0.3s ease;
}

.btn.btn-light img {
    width: 58px;
    height: 44px;
}

.btn.btn-light:hover {
    transform: scale(1.03);
}

.btn.btn-outline-secondary {
    border: 1px solid rgba(11, 14, 20, 0.2);
    border-radius: 8px;
    padding: 14px 23px;
    font-weight: 400;
    font-size: 1rem;
    color: var(--black);
    background-color: transparent;
    transition: all 0.3s ease;
    height: 48px;
}

.btn.btn-outline-secondary:hover {
    background-color: #fff;
    transform: scale(1.03);
}

.btn.btn-outline-secondary img {
    margin-right: 5px;
}



/* Header start here */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transition: transform 0.3s ease-in-out;
    z-index: 1050;
    /* Above bootstrap default sticky-top and offcanvas backdrop */
    background: #FFFAF5;
    border-bottom: 1px solid rgba(11, 14, 20, 0.05);
}

.header-hidden {
    transform: translateY(-100%);
}

.navbar-brand .brand-name {
    font-family: var(--font-suisse);
    font-weight: 700;
    color: var(--black);
    letter-spacing: -0.5px;
}

.navbar-brand .brand-sub {
    font-family: var(--font-suisse);
    font-weight: 400;
    color: var(--text-muted);
}

.navbar-nav .nav-link {
    font-family: var(--font-suisse);
    font-weight: 500;
    color: #0B0E14;
    font-size: 1rem;
    padding-left: 1.5rem !important;
    padding-right: 1.5rem !important;
    transition: color 0.3s ease;
    text-transform: none;
}

.navbar-nav .nav-link:hover {
    opacity: 0.8;
}

.phone-link {
    font-family: var(--font-suisse);
    font-weight: 500;
    font-size: 1rem;
    color: #0B0E14;
    transition: opacity 0.3s ease;
}

.phone-link:hover {
    opacity: 0.7;
}

.phone-link img {
    margin-right: 5px;
}

.why-tag-pill-container.show-on-mobile {
    display: flex !important;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .wealth-item {
        padding-bottom: 3rem;
    }

    .wealth-content {
        padding-top: 1.5rem;
    }
}

/* Wealth Protection List end here */


/* Hero section start here */
/* Hero section start here */
.overlay-hero {
    position: sticky;
    top: 0;
    padding-top: 80px;
    background-color: #FFFAF5;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 880px;
    background-color: #000;
    opacity: 0;
    pointer-events: none;
    z-index: 99;
}

.hero-content {
    position: relative;
    z-index: 10;
    width: 100%;
    /* Transition handled by JS or removed if not needed with sticky */
}

.page-content {
    position: relative;
    z-index: 20;
    background-color: #FFFAF5;
    /* Match design bg to cover hero */
}

/* Original hero styles mapping */
.hero {
    /* Legacy support if needed, but we used overlay-hero now */
    padding-top: 80px;
    background-color: #FFFAF5;
    overflow: hidden;
}

.hero-badge-wrapper {
    display: inline-block;
}

.hero-badge {
    background: #FFF3E1;
    color: var(--black);
    font-size: 1rem;
    font-weight: 500;
    padding: 6px 16px;
    border-radius: 100px;
    display: inline-block;
}


.hero-title {
    font-weight: 900;
    line-height: 1;
    color: #0B0E14;
    text-transform: uppercase;
}

.hero-title span {
    display: block;
    font-size: clamp(2rem, 3.35vw, 4rem);
}

.hero-subtitle {
    font-size: 1.14rem;
    color: #0B0E14;
    max-width: 600px;
    line-height: 23px;
    font-weight: 400;
    opacity: 0.9;
}

.hero-bottom-img {
    position: relative;
    z-index: 1;
}

.hero-bottom-img img {
    width: 100%;
    margin: 0 auto;
    height: 436px;
}

/* Hero section end here */

/* Featured Logos Section start here */
.featured {
    padding: clamp(6rem, 6vw + 1rem, 6rem) 0;
}

.featured h2 {
    line-height: 1.1;
}

.logo-item {
    padding: 0 10px;
}

.logo-card {
    background: #F3EAE2;
    border-radius: 8px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.logo-card:hover {
    background: #EAE2D7;
}

.logo-card img {
    max-width: 80%;
    max-height: 50%;
    filter: grayscale(1);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.logo-card:hover img {
    filter: grayscale(0);
    opacity: 1;
}

/* Slick Slider Custom Styles */


/* Featured Logos Section end here */

/* Strategic Asset Protection Section start here */
.strategic-protection {
    background: #FFFAF5;
}

.protection-img-wrapper {
    overflow: hidden;
    border-radius: 20px;
}

.protection-card {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: #FFFFFF;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.protection-item:hover .protection-card {
    transform: translateY(-5px);
}

.p-card-icon {
    width: 67px;
    height: 67px;
    background: #3A2F2B;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.p-card-icon img {
    width: 32px;
    height: 32px;
}

.protection-card h5 {
    font-size: 1.13rem;
    font-weight: 700;
    margin-bottom: 2px;
    font-family: var(--font-suisse);
    color: var(--black);
}

.protection-card p {
    font-size: 1.13rem;
    line-height: 1.2;
    color: var(--black);
}

.sticky-content-wrapper p {
    font-size: 1.13rem;
    line-height: 1.2;
    color: #0B0E14;
    max-width: 564px;
    width: 100%;
}

.sticky-content-wrapper.sticky-top {
    /* margin-top: 280px; */
    padding-top: 230px;
}

/* Strategic Asset Protection Section end here */

/* About Us Section start here */
.about-us {
    background-color: #FFFAF5;
    padding-bottom: clamp(3.2rem, 6vw + 1rem, 7rem);
    padding-top: clamp(3.2rem, 6vw + 1rem, 4rem);
}

.about-us h6 {
    font-size: 1rem;
    line-height: 1.2;
    color: var(--black);
    font-weight: 400;
    font-family: var(--font-suisse);
    margin-bottom: 0.5rem;
}

.about-us h3 {
    font-size: clamp(1.8rem, 2vw + 1rem, 2rem);
    line-height: 1.1;
}

.office-img-container {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border-radius: 8px;
}

.office-img-container img {
    transition: transform 0.5s ease;
}

.office-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 2;
}

.office-img-container:hover .office-overlay {
    opacity: 1;
}

.office-img-container:hover img {
    transform: scale(1.05);
}

.route-link {
    color: #fff;
    text-decoration: underline;
    font-weight: 500;
    font-size: 1.14rem;
    transition: all 0.3s ease;
    line-height: 1.2;
}

.route-link:hover {
    color: var(--white);
}

.about-us p {
    font-size: 1.14rem;
    line-height: 1.2;
    color: #0B0E14;
}

.office-icon {
    width: 64px;
    height: 64px;
    border: 2px solid rgba(0, 0, 0, 1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.office-text h5 {
    font-size: 1.14rem;
    color: #0B0E14;
    line-height: 1.2;
    font-family: var(--font-suisse);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.office-text p {
    font-size: 1.14rem;
    color: #0B0E14;
    line-height: 1.2;
}

.container-fluid,
.container {
    padding: 0 20px;
}

/* About Us Section end here */

/* Case Studies Section start here */

.case-studies {
    background-color: #887E7A;
    padding-bottom: clamp(3.2rem, 6vw + 1rem, 5rem);
    padding-top: clamp(3.2rem, 6vw + 1rem, 5rem);
}

.case-studies .section-subtitle {
    font-size: 1rem;
    font-weight: 500;
    font-family: var(--font-suisse);
}

.case-studies .section-title {
    font-family: var(--font-tt-int);
    font-size: clamp(2rem, 3.5vw, 2rem);
    line-height: 1.1;
    margin-bottom: 40px;
}

.custom-arrow {
    width: 58px;
    height: 44px;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
}

.custom-arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.custom-arrow .fa-solid.fa-chevron-left,
.custom-arrow .fa-solid.fa-chevron-right {
    font-size: 13px;
}

.case-study-item {
    padding-right: 20px;
    outline: none;
}

.case-study-card {
    min-height: 643px;
    padding: 24px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.case-study-card:hover .case-study-img img {
    transform: scale(1.05);
}

.case-study-img {
    overflow: hidden;
    border-radius: 6px;

}

.case-study-img img {
    height: 100%;
    width: 100%;
    object-position: center;
    transition: all 0.3s ease;

}

.case-study-content {
    width: 40%;
}

.case-study-content h3 {
    font-family: var(--font-suisse);
    font-size: clamp(1.5rem, 1vw, 1.5rem);
    color: #0B0E14;
    line-height: 120%;
    margin-bottom: 1.5rem;
}

.case-study-content .badge {
    font-family: var(--font-suisse);
    font-weight: 400;
    font-size: 1rem;
    padding: 8px 16px !important;
}

.case-study-content .stat-item h5 {
    font-family: var(--font-suisse);
    font-size: 1.15rem;
    color: var(--black);
}

.case-studies-slider {
    padding: 0 0 0 24px;
}

.case-study-content .stat-item p {
    font-size: 1rem;
    line-height: 1.4;
}


.case-study-content .tags {
    margin-bottom: 90px;
}

.case-study-content hr {
    border: none;
    opacity: 0.1;
    background: #0B0E14;
    height: 1px;
}

/* Case Studies Section end here */

/* Strategic Alliances Section */
.strategic-alliances {
    padding: clamp(3.2rem, 10vw + 1rem, 10rem) 0;
}

.strategic-alliances h2 {
    font-family: var(--font-tt-int);
    font-size: 2rem;
    color: #0B0E14;
    line-height: 110%;
    letter-spacing: -0.64px;
}

.alliances-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid #E5E5E5;
    border-radius: 20px;
    overflow: hidden;
}

.strategic-alliances p {
    color: #0B0E14;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -0.54px;
    margin-bottom: clamp(2.5rem, 3vw + 1rem, 4rem);
}

.alliance-item {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(58, 47, 43, 0.20);
    border-bottom: 1px solid rgba(58, 47, 43, 0.20);
    transition: background-color 0.3s ease;
}

.alliance-item:hover {
    background: #3A2F2B;
}

.alliance-item:hover svg path {
    fill: #fff;
}

/* Remove right border for the last column (3rd, 6th, etc.) */
.alliance-item:nth-child(3n) {
    border-right: none;
}

/* Remove bottom border for the last row elements */
/* Assuming 6 items, items 4, 5, 6 are the last row */
.alliance-item:nth-child(n+4) {
    border-bottom: none;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .alliances-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .alliance-item {
        border-right: 1px solid #E5E5E5;
        border-bottom: 1px solid #E5E5E5;
    }

    /* Reset desktop nth-child rules */
    .alliance-item:nth-child(3n) {
        border-right: 1px solid #E5E5E5;
    }

    .alliance-item:nth-child(n+4) {
        border-bottom: 1px solid #E5E5E5;
    }

    /* New rules for 2 columns */
    .alliance-item:nth-child(2n) {
        border-right: none;
    }

    .alliance-item:nth-child(n+5) {
        border-bottom: none;
    }
}

@media (max-width: 576px) {
    /* .alliances-grid {
        grid-template-columns: 1fr;
    } */

    /* .alliance-item {
        border-right: none !important;
        border-bottom: 1px solid #E5E5E5 !important;
        height: 150px;
    }

    .alliance-item:last-child {
        border-bottom: none !important;
    } */
    .why-tag-pill-container.show-on-mobile {
        display: flex !important;
    }
}

/* Exposure Section */
.exposure {
    background-color: #0B0E14;
    padding-top: clamp(3rem, 8vw, 8rem);
    padding-bottom: 0;
    overflow: hidden;
}

.exposure h2 {
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1.1;
    letter-spacing: -0.96px;
}

.exposure h2 span {
    font-size: clamp(1.5rem, 3vw, 3rem);
}

.exposure p {
    color: var(--white);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -0.54px;
    margin-bottom: clamp(2rem, 3vw, 3.5rem);
}

.exposure .btn-light {
    background-color: #fff;
    border: none;
    transition: all 0.3s ease;
}

.exposure .btn-light:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.facing-bg-wrapper {
    margin-top: clamp(2rem, 5vw, 4rem);
    line-height: 0;
}

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

/* Testimonials Section */
.testimonials {
    padding: clamp(3rem, 8vw, 8rem) 0;
}

.testimonials h2 {
    font-size: clamp(2rem, 2vw, 2rem);
    line-height: 110%;
    letter-spacing: -0.64px;
}

.heading-spacing {
    margin-bottom: clamp(1.5rem, 2vw, 3rem);
}

.testimonials .slick-slide {
    opacity: 0.2;
}

.testimonials .slick-current.slick-active {
    opacity: 1;
}

.testimonial-card {
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 8px;
    border: 1px solid var(--black-30, rgba(11, 14, 20, 0.30));
    padding: clamp(2rem, 3vw, 3.5rem);
}

.testimonial-card p {
    color: #0B0E14;
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 500;
    line-height: 140%;
    letter-spacing: -0.72px;
}

.testimonial-card h5 {
    color: #0B0E14;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: -0.54px;
    font-family: var(--font-suisse);
}

.testimonial-card .text-profession {
    color: #0B0E14;
    font-size: 18px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -0.54px;
}

.google-logo {
    transition: all 0.3s ease;
    border-radius: 8px;
    border: 2px solid #3A2F2B;
    display: inline-flex;
    width: 64px;
    height: 48px;
    padding: 12px 20px;
    justify-content: center;
    align-items: center;
}

.google-logo:hover {
    background-color: #f8f9fa;
}

.testimonials-arrows .custom-arrow {
    transition: all 0.3s ease;
    display: flex;
    width: 58px;
    height: 44px;
    padding: 14px 0;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    border: 2px solid #0B0E14;
}

.testimonials-arrows .custom-arrow:hover {
    background-color: var(--black);
    color: var(--white);
}

.testimonials-arrows .custom-arrow:hover svg path {
    stroke: #fff;
}

@media (max-width: 768px) {
    .testimonial-card p {
        font-size: 1rem !important;
    }
}

@media (max-width: 768px) {
    .testimonial-card p {
        font-size: 1rem !important;
    }
}

/* Contact Us Section */
.contact {
    padding-bottom: clamp(3rem, 8vw, 8rem);
}

.contact-form .form-label {
    margin-bottom: 0.5rem;
    color: #0B0E14;
    font-size: 18px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: -0.54px;
}

.contact-form .form-control,
.contact-form .form-select {
    border: none;
    border-bottom: 1px solid #0B0E14;
    border-radius: 0;
    padding: 0.75rem 0;
    background-color: transparent;
    font-size: 1rem;
    color: var(--black);
}

.contact-form .form-select {
    color: rgba(0, 0, 0, 0.5);
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
    box-shadow: none;
    border-color: var(--black);
}

.contact-form .form-control::placeholder {
    color: #9CA3AF;
}

.contact-form textarea {
    resize: none;
}

.contact-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: url(../images/contact-us-bg.jpg) no-repeat center center;
    background-size: cover;
    min-height: 652px;
    border-radius: 8px;
}

.contact-card h2 {
    font-size: clamp(2rem, 2vw, 2rem);
    line-height: 110%;
    letter-spacing: -0.64px;
    color: var(--white);
    margin-bottom: 40px;
}

.contact-form .btn.btn-dark {
    font-size: 18px;
    font-weight: 500;
}

.contact-form-info p {
    color: var(--white);
    font-size: 18px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -0.54px;
}

.contact-form-info p a {
    color: var(--white);
    text-decoration: none;
}

.contact-form-info {
    margin-bottom: 40px;
}

.location-card p {
    color: #0B0E14;
    font-size: 18px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -0.54px;
}

/* Footer Section */
.footer {
    background-color: #0B0E14;
    color: #fff;
    padding-top: 64px;
    z-index: 2;
    position: relative;
}

.footer-logo img {
    filter: brightness(0) invert(1);
}

.footer-contact a {
    font-size: 18px;
    transition: opacity 0.3s ease;
    color: var(--white);
    font-weight: 600;
    line-height: 20px;
    letter-spacing: -0.54px;
}

/*.footer-row {
    margin-bottom: clamp(3rem, 6vw, 6rem);
}*/

.details-block {
    margin: 80px 0;
}


.error-404.not-found {
    padding: 80px 0;
}

.search a.btn.btn-outline-dark {
    white-space: nowrap;
}

section#blogs {
    padding: 80px 0;
}

.footer-row h5 {
    color: var(--white);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: -0.54px;
    font-family: var(--font-suisse);
}

.footer .footer-row p {
    color: var(--white);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -0.54px;
}

.footer-contact a:hover {
    opacity: 0.8;
}

.footer-form .form-control {
    border-bottom: 1px solid #FFF;
    font-size: 1rem;
    padding-bottom: 10px;
    color: #fff;
}

.footer-form .form-control::placeholder {
    color: rgba(255, 255, 255, 0.5);
    font-size: 1rem;
}

.footer-form .form-control:focus {
    border-color: #fff !important;
}

.footer-form .btn-light {
    background: #fff;
    color: #000;
    border: none;
    transition: all 0.3s ease;
}

.footer-form .btn-light:hover {
    background: #e6e6e6;
    transform: scale(1.05);
}

.footer-links ul li a {
    font-size: 1rem;
    transition: opacity 0.3s ease;
    font-family: var(--font-suisse);
}

.footer-links ul li a:hover {
    opacity: 0.7;
}

.footer h6 {
    font-size: 1.13rem;
    font-family: var(--font-suisse);
}

.footer p {
    font-size: 1rem;
    line-height: 1.5;
}

.copyright {
    margin-top: clamp(2rem, 5vw, 5rem);
    margin-left: 0;
    margin-right: 0;
}

.copyright p {
    color: var(--white);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
    opacity: 0.8;
}

.show-on-mobile {
    display: none;
}

.protection-img-wrapper-img {
    position: relative;
}

.btn.btn-dark.show-on-mobile {
    display: none;
}

.contact-form textarea {
    height: 120px;
}

.mobile-phone-number {
    display: none;
}

.btn.btn-light.show-on-mobile {
    display: none;
}

.inner-page-hero .hero-bottom-img.hide-on-mobile {
    display: none !important;
}

.overlay-hero.inner-page-hero {
    min-height: auto;
    padding-top: 120px;
    padding-bottom: 60px;
}

/* Video Section */


.video-container {
    width: 100%;
    height: 720px;
    border-radius: 8px;
    padding-left: 20px;
    /* Initial state */
    padding-right: 20px;
    transition: all 0.1s ease-out;
}

.video-container img.video-bg {
    object-position: center;
}

.play-btn img {
    transition: transform 0.3s ease;
}

.play-btn:hover img {
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .video-container {
        height: 400px;
        width: 90%;
    }
}

/* Mission Section */
.mission {
    padding: clamp(6rem, 8vw + 1rem, 8.5rem) 0;
}

.mission-title {
    color: #0B0E14;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.48px;
    text-transform: uppercase;
    margin-bottom: 25px;
    font-family: var(--font-suisse);
}

#aboutVideo {
    border-radius: 8px;
}

.mission-text {
    color: #0B0E14;
    text-align: center;
    font-family: var(--font-suisse);
    font-size: 32px;
    font-weight: 600;
    line-height: 140%;
    letter-spacing: -0.96px;
}

.mission-text span {
    color: #cfcfcf;
    transition: color 0.1s ease;
}

.mission-text span.active {
    color: #000;
}

/* Trust Us Section */
.trust {
    padding-bottom: clamp(6rem, 8vw + 1rem, 8.5rem);
}

.trust-subtitle {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.48px;
    color: #0B0E14;
    font-family: var(--font-suisse);
    margin-bottom: 25px;
}

.trust-title {
    font-size: clamp(2rem, 3vw, 2rem);
    font-weight: 900;
    margin-bottom: 24px;
    line-height: 110%;
    letter-spacing: -0.64px;
}

.trust-body {
    flex: 1;
}

.trust-body p {
    color: #0B0E14;
    font-size: 18px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -0.54px;
}

.trust-icon-box {
    width: 64px;
    height: 64px;
    border: 2px solid #0B0E14;
    border-radius: 8px;
    font-size: 24px;
}

.rating-score {
    font-size: 1.13rem;
    color: #0B0E14;
}

.rating-score {
    font-size: 1.1rem;
    color: #0B0E14;
}

.trust-img {
    border-radius: 8px;
}

/* Awards Section */
.awards-grid-wrapper {
    border: 1px solid rgba(58, 47, 43, 0.20);
    border-radius: 20px;
}

.award-item {
    border-right: 1px solid rgba(58, 47, 43, 0.20);
}

.award-item:last-child {
    border-right: none;
}

.award-name {
    font-family: var(--font-suisse);
    font-size: 18px;
    font-weight: 600;
    color: #0B0E14;
}

.award-year {
    font-size: 16px;
    color: #0B0E14;
}

.award-img img {
    max-height: 180px;
    object-fit: contain;
}

.awards-subtitle {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.48px;
    color: #0B0E14;
    font-family: var(--font-suisse);
    margin-bottom: 25px;
}

.awards-title {
    font-size: clamp(2rem, 3vw, 2rem);
    font-weight: 900;
    margin-bottom: 24px;
    line-height: 110%;
    letter-spacing: -0.64px;
}

.awards-desc {
    font-size: 18px;
    font-weight: 400;
    line-height: 140%;
    letter-spacing: -0.54px;
    color: #0B0E14;
}

.awards {
    padding-bottom: clamp(6rem, 8vw + 1rem, 8.5rem);
}

/* Safety and Legality Section */
.safety-subtitle {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.48px;
    color: #0B0E14;
    font-family: var(--font-suisse);
    margin-bottom: 25px;
}

.safety-title {
    font-size: clamp(2rem, 3vw, 2rem);
    font-weight: 900;
    line-height: 110%;
    letter-spacing: -0.64px;
}

.safety-desc {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    letter-spacing: -0.54px;
    color: #666;
}

.safety-desc strong {
    color: #0B0E14;
}

.safety-img {
    border-radius: 8px;
    max-height: 600px;
    object-fit: cover;
}

.safety-features-card {
    position: absolute;
    bottom: 16px;
    left: 16px;
    right: 16px;
    border-radius: 8px;
    background: #FFFAF5;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    z-index: 2;
    padding: 24px;
}

.safety-feature-icon {
    width: 67px;
    height: 67px;
    background: #3A2F2B;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.safety-feature-text h5 {
    font-family: var(--font-suisse);
    font-size: 1.14rem;
    font-weight: 600;
    color: #0B0E14;
}

.safety-feature-text p {
    font-size: 1.14rem;
    color: rgba(11, 14, 20, 0.60);
}

/* Specialized Services Section */
.specialized-services {
    margin-top: clamp(6rem, 8vw + 1rem, 8.5rem);
    margin-bottom: clamp(6rem, 8vw + 1rem, 8.5rem);
    background: #887E7A;
    padding: 72px 0;
}

.services-subtitle {
    font-size: 16px;
    font-weight: 400;
    letter-spacing: -0.48px;
    color: var(--white);
    font-family: var(--font-suisse);
}

.services-title {
    font-size: clamp(1.8rem, 3.5vw, 2rem);
    font-weight: 900;
    line-height: 110%;
    letter-spacing: -0.64px;
    color: var(--white);
}

.service-feature-card {
    background-color: var(--white);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 24px;
}

.service-feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}


.service-feature-title {
    color: #0B0E14;
    font-family: var(--font-suisse);
    font-size: 18px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: -0.54px;
    margin-bottom: 10px;
}

.service-feature-desc {
    font-size: 1.1rem;
    line-height: 1.4;
    color: #555555;
}

/* Contact Us page start here */

.overlay-hero.inner-page-hero.contact-us-hero {
    position: relative !important;
}

.conact-us-page .contact-form textarea {
    height: 160px;
}

.contact-link {
    color: #0B0E14;
    font-size: 18px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: -0.54px;
    text-decoration: none;
}

.contact-page-icon {
    display: flex;
    width: 64px;
    height: 64px;
    padding: 20px;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    border: 2px solid var(--black-100, #0B0E14);
    margin-right: 24px;
}

.conact-us-page .contact .col-lg-6:first-child {
    margin-bottom: 0 !important;
}

/* Find Us Section */
.where-to-find-us {
    padding: 80px 0;
    background: #0B0E14;
    margin: 80px 0 0;
}

.where-to-find-us h2 {
    color: var(--white);
    text-align: center;
    font-size: 32px;
    font-weight: 900;
    line-height: 110%;
    letter-spacing: -0.64px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.where-to-find-us p {
    color: var(--white);
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -0.54px;
    margin-bottom: 20px;
}

/* Map Info Cards */
.map-info-card {
    background: #FFFFFF;
    border-radius: 8px;
    padding: 16px;
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.1);
    min-width: 320px;
    z-index: 10;
    transition: transform 0.3s ease;
    display: block;
}

.office-thumb {
    width: 120px;
    height: 120px;
    border-radius: 6px;
    overflow: hidden;
    margin-right: 16px;
    flex-shrink: 0;
}

.map-info-card:hover {
    transform: translateY(-5px);
}

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

.map-info-card h5 {
    color: #0B0E14;
    font-size: 18px;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: -0.54px;
}

.map-info-card p {
    color: rgba(11, 14, 20, 0.80);
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    text-align: left;
}

.map-info-card .btn-route {
    color: #0B0E14;
    font-size: 18px;
    font-weight: 500;
    line-height: 20px;
    letter-spacing: -0.54px;
    text-decoration: underline;
    font-family: var(--font-suisse);
}

/* Pointer Triangle */
.map-pointer {
    position: absolute;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
}

.pointer-bottom {
    bottom: -10px;
    left: 40px;
    border-top: 10px solid #FFFFFF;
}

.pointer-top {
    top: -10px;
    right: 40px;
    border-bottom: 10px solid #FFFFFF;
}

/* Marker Dot */
.map-marker {
    position: absolute;
    width: 14px;
    height: 14px;
    background: #FFFFFF;
    border: 2px solid #0B0E14;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2);
    z-index: 5;
}

/* Specific Positions (Approximate for visual balance) */
.card-newport {
    bottom: 30%;
    left: 15%;
}

.card-newport .map-marker {
    bottom: -45px;
    left: 43px;
}

.card-washington {
    top: 20%;
    right: 20%;
}

.card-washington .map-marker {
    top: -45px;
    right: 43px;
}

@media (max-width: 768px) {
    .map-container {
        height: auto !important;
    }

    .map-info-card {
        min-width: 280px;
        position: relative !important;
        top: auto !important;
        left: auto !important;
        right: auto !important;
        bottom: auto !important;
        margin: 10px auto;
        pointer-events: auto;
    }

    .map-overlay-wrapper {
        position: relative !important;
        display: flex;
        flex-direction: column;
        height: auto !important;
        padding: 20px;
    }

    .map-pointer,
    .map-marker {
        display: none;
    }
}

/* Our approach page start here */

.hero-subtitle span {
    color: rgba(11, 14, 20, 0.60);
    opacity: 0.9;
}

.our-approach-img img {
    height: 600px;
    object-fit: cover;
    border-radius: 8px;
    width: 100%;
}

.overlay-hero.inner-page-hero.our-approach-hero {
    padding-bottom: 40px;
}

/* Pillars Section Styles */
.pillars {
    padding: clamp(3rem, 8vw, 8rem) 0;
}

.pillars-header h2 {
    color: #0B0E14;
    font-size: 32px;
    font-weight: 900;
    line-height: 110%;
    letter-spacing: -0.64px;
    text-transform: uppercase;
}

.pillars-header p {
    color: #0B0E14;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.48px;
    text-transform: uppercase;
}

.pillar-item {
    transition: all 0.4s ease;
    cursor: pointer;
    color: #0b0e14;
    padding: 48px 24px;
}

.pillar-item:hover {
    background-color: #0b0e14;
    color: #fff;
}

.pillar-icon {
    margin-right: 20px;
}

.pillar-icon svg {
    transition: all 0.4s ease;
}

.pillar-item h3 {
    color: #0B0E14;
    font-size: 24px;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: -0.72px;
    font-family: var(--font-suisse);
}

.pillar-desc-wrapper {
    max-width: 100%;
    flex: 1;
    justify-content: center;
}

.pillar-desc {
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    transition: all 0.4s ease;
    font-size: 16px;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.8);
    margin-right: auto;
    margin-left: auto;
}

.pillar-item:hover .pillar-desc {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.pillar-arrow {
    display: flex;
    width: 52px;
    height: 52px;
    padding: 14px 21px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    border: 1px solid #000;
}

.pillar-item:hover .pillar-arrow {
    background-color: var(--white);
}

.pillar-item:hover h3 {
    color: var(--white);
}

.pillar-item:hover .pillar-icon svg path,
.pillar-item:hover .pillar-icon svg circle {
    stroke: var(--white);
}

.pillar-arrow img {
    width: 16px;
    height: 16px;
}

/* Approch Detail Page */
.our-approach-detail.overlay-hero.inner-page-hero {
    min-height: auto;
    padding-top: 32px;
    padding-bottom: 160px;
}

.breadcrumb-item {
    color: rgba(11, 14, 20, 0.40);
    font-size: 12px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -0.36px;

}

.breadcrumb-item a {
    color: #0B0E14;
    text-decoration: none;
}

.drafting-img img {
    max-width: 684px;
    height: 600px;
    object-fit: cover;
    width: 100%;
    border-radius: 8px;
}

.drafting-img {
    text-align: right;
}

.our-approach-detail .our-approach-hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.our-approach-detail .hero-subtitle {
    flex: 1;
}

/* Core Expertise Section */
.core-expertise {
    padding: clamp(3rem, 8vw, 8rem) 0;
}

.core-expertise .small-subtitle {
    color: #0B0E14;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.48px;
    text-transform: uppercase;
}

.core-expertise .section-title {
    color: #0B0E14;
    font-size: 32px;
    font-weight: 900;
    line-height: 110%;
    letter-spacing: -0.64px;
    text-transform: uppercase;
}


.custom-accordion .accordion-item {
    background: transparent;
    border: none;
    border-bottom: 1px solid rgba(11, 14, 20, 0.1);
    border-radius: 0 !important;
}

.custom-accordion .accordion-button {
    background-color: transparent;
    color: #0B0E14;
    font-size: 24px;
    font-weight: bold;
    padding: 48px 20px;
    box-shadow: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    line-height: 120%;
    letter-spacing: -0.72px;
    font-family: var(--font-suisse);
}

.custom-accordion .accordion-button::after {
    display: none;
}

.custom-accordion .accordion-button:not(.collapsed) {
    background-color: transparent;
    color: #0B0E14;
    box-shadow: none;
}

.custom-accordion .accordion-icon {
    width: 44px;
    height: 44px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border-radius: 8px;
    border: 1px solid #000;
}

.custom-accordion .accordion-icon::before,
.custom-accordion .accordion-icon::after {
    content: '';
    position: absolute;
    background-color: #0B0E14;
    transition: all 0.3s ease;
}

/* Horizontal line (always visible) */
.custom-accordion .accordion-icon::before {
    width: 12px;
    height: 1.4px;
}

/* Vertical line (visible when collapsed) */
.custom-accordion .accordion-icon::after {
    width: 1.4px;
    height: 12px;
}

/* When expanded, vertical line disappears to make a minus sign */
.custom-accordion .accordion-button:not(.collapsed) .accordion-icon::after {
    transform: scaleY(0);
}

.custom-accordion .accordion-body {
    padding: 0 20px 40px 20px;
}

.custom-accordion .tag-pill {
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    padding: 7px 16px;
    border-radius: 99px;
    border: 1px solid #0B0E14;
}

.custom-accordion .expertise-description {
    color: rgba(11, 14, 20, 0.60);
    font-size: 18px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -0.54px;
}

.custom-accordion .accordion-button:not(.collapsed) {
    color: #0B0E14;
}

/* Drafting Methodology Section */
.drafting-methodology {
    background-color: #FFFAF5;
    /* Light off-white background */
    padding: clamp(4rem, 8vw, 8rem) 0;
}

.drafting-methodology .small-subtitle {
    color: #0B0E14;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.48px;
    text-transform: uppercase;
}

.drafting-methodology .section-title {
    color: #0B0E14;
    font-size: 32px;
    font-weight: 900;
    line-height: 140%;
    letter-spacing: -0.64px;
    font-family: var(--font-suisse);
}

.drafting-methodology .sticky-panel {
    position: -webkit-sticky;
    position: sticky;
    top: 130px;
    /* Standard offset for sticky content */
}

.drafting-methodology .process-card {
    border-radius: 8px;
    background: #F3EAE2;
    border: none;
    padding: 32px;
}

.drafting-methodology .process-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.drafting-methodology .process-card .step-number {
    position: absolute;
    top: 24px;
    right: 24px;
    font-size: 18px;
    color: #0B0E14;
    font-weight: 500;
    letter-spacing: -0.54px;
    opacity: 0.5;
}

.drafting-methodology .process-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 60px;
}

.drafting-methodology .process-icon svg {
    max-width: 100%;
    height: auto;
}

.drafting-methodology .process-card .card-title {
    color: #0B0E14;
    font-family: var(--font-suisse);
    font-size: 24px;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: -0.72px;
}

.drafting-methodology .process-card .card-text {
    color: rgba(11, 14, 20, 0.70);
    font-family: var(--font-suisse);
    font-size: 18px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -0.54px;
}

.contact-card .bg-white {
    background: #FFFAF5 !important;
}

/* Why Choose Us Page */

.why-choose-us-img img {
    border-radius: 8px;
}

.why-tag-pill {
    display: inline-flex;
    padding: 7px 16px;
    align-items: center;
    gap: 8px;
    border-radius: 99px;
    border: 1px solid #0B0E14;
    color: #0B0E14;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    margin-bottom: 32px;
}


/* Our Legacy Asset Protection Section */
.our-legacy {
    padding: clamp(8rem, 8vw, 8rem) 0;
}

.our-legacy h2 {
    font-size: 2rem;
    color: #0B0E14;
    line-height: 110%;
    letter-spacing: -0.64px;
    margin-bottom: 50px;
}

.legacy-card {
    border-radius: 8px;
    transition: transform 0.3s ease;
    padding: 32px !important;
}

.legacy-card .why-tag-pill {
    margin-bottom: 0;
}

.asset-value-card {
    background-image: url(../images/protected-assets.jpg);
    background-size: cover;
    background-position: center;
    min-height: 400px;
}

.trusted-card,
.historical-card,
.featured-publications-card {
    background-color: #F3EAE2;
}

.avatar-group img {
    width: 64px;
    height: 64px;
    margin-left: -12px;
}

.avatar-group img:first-child {
    margin-left: 0;
}

.historical-card .icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.historical-card .badge {
    font-family: var(--font-suisse);
}

.featured-logos-slider .logo-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-logos-slider .logo-slide img {
    max-height: 50px;
}

.gray-logo {
    filter: grayscale(1);
}

.our-legacy p {
    color: #0B0E14;
    font-size: 18px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -0.54px;
}

@media (max-width: 991px) {
    .asset-value-card {
        min-height: 400px;
    }
}



/* Wealth Protection List start here */

.wealth-protection-list {
    padding-bottom: clamp(8rem, 8vw, 8rem);
}

.wealth-img-wrapper img {
    border-radius: 8px;
}

.wealth-item {
    border-bottom: 1px solid rgba(58, 47, 43, 0.20);
}

.wealth-item:last-child {
    border-bottom: none;
}

.wealth-content {
    padding: 32px 24px 32px 0;
}

.wealth-item .wealth-title {
    color: #0B0E14;
    font-family: var(--font-suisse);
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: -0.72px;
    margin-bottom: 20px;
}

.wealth-item .wealth-tag {
    font-family: var(--font-suisse);
    font-size: 1rem;
    padding: 6px 16px;
    border: 1px solid #0B0E14;
    border-radius: 100px;
    color: var(--black);
    display: inline-block;
}

.wealth-item .wealth-tags {
    margin-bottom: 90px;
}

.wealth-item .protection-detail-row {
    border-bottom: 1px solid rgba(58, 47, 43, 0.20);
    padding-bottom: 22px;
}

.wealth-item .protection-detail-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.wealth-item .protection-detail-row h5 {
    font-family: var(--font-suisse);
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--black);
}

.wealth-item .protection-detail-row p {
    font-family: var(--font-suisse);
    font-size: 1rem;
    color: #666;
}

.wealth-item .protection-btn-square {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 44px;
    background-color: #0b0e14;
    color: #ffffff;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.wealth-item .protection-btn-square img {
    width: 16px;
    height: 16px;
}

.protection-btn-square:hover {
    background-color: #1a1e26;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-load-more {
    display: inline-flex;
    height: 64px;
    padding: 0 24px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    border: 2px solid #0B0E14;
}

.btn-load-more:hover {
    background-color: #000;
    color: #fff;
}

.protection-btn-square-mobile {
    display: none;
    width: 58px;
    height: 44px;
    padding: 14px 21px;
    align-items: center;
    gap: 8px;
    border-radius: 8px;
    background: #FFFAF5;
    position: absolute;
    right: 10px;
    bottom: 10px;
}

.protection-btn-square-mobile img {
    width: 16px;
    height: 16px;
}

/* Privacy policy page start here */

.privacy-policy h1 {
    color: #000;
    font-size: 48px;
    font-weight: 900;
    line-height: 110%;
    letter-spacing: -0.96px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.privacy-policy p {
    color: #0B0E14;
    font-size: 18px;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -0.54px;
    margin-bottom: 30px;
}

.privacy-policy h2 {
    color: #0B0E14;
    font-family: var(--font-suisse);
    font-size: 32px;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: -0.96px;
    margin-top: 60px;
    margin-bottom: 25px;
}

.privacy-policy {
    padding: 32px 0 50px;
    max-width: 802px;
    margin: auto;
    width: 100%;
}

/* Key areas of expertise start here */
.family-wealth {
    padding: clamp(3.2rem, 6vw, 6rem) 0;
}

.family-wealth .small-subtitle {
    color: #0B0E14;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
    letter-spacing: -0.48px;
    text-transform: uppercase;
}

.family-wealth-hero .hero-title {
    color: #000;
    font-size: 48px;
    font-style: normal;
    font-weight: 900;
    line-height: 110%;
    letter-spacing: -0.96px;
    text-transform: uppercase;
    max-width: 566px;
    width: 100%;
}

.family-wealth .section-title {
    font-size: clamp(2rem, 2vw, 2rem);
    line-height: 110%;
    letter-spacing: -0.64px;
}

.family-wealth-row {
    margin-bottom: 30px;
}

.family-wealth .section-description {
    color: rgba(11, 14, 20, 0.60);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -0.54px;
}

.family-wealth .wealth-card {
    border-radius: 8px;
    border: 1px solid rgba(11, 14, 20, 0.30);
    padding: 32px 24px;
    transition: all 0.3s ease;
}

.family-wealth .wealth-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.family-wealth .wealth-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    background: #3A2F2B;
    display: flex;
    align-items: center;
    justify-content: center;
}

.family-wealth .wealth-icon-box img {
    width: 24px;
    height: 24px;
}

.family-wealth .wealth-card h3 {
    font-family: var(--font-suisse);
    font-weight: 600;
    font-size: 18px;
    color: #0B0E14;
}

.family-wealth .wealth-card p {
    font-size: 18px;
    line-height: 120%;
    color: #0B0E14;
    margin-bottom: 0;
}

.our-approach-detail.overlay-hero.inner-page-hero.family-wealth-hero {
    padding-bottom: 128px;
}

/* Key areas of expertise end here */

/* Practice Areas Grid start here */
.practice-areas-grid-custom {
    background-color: #FFFAF5;
    padding: 20px 0 160px;
}

.practice-areas-grid-custom .practice-card-col {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 448px;
    cursor: pointer;
}

.practice-areas-grid-custom .card-img-wrapper-col {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.practice-areas-grid-custom .card-img-wrapper-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.practice-areas-grid-custom .card-overlay-col {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.8) 100%); */
    transition: background 0.4s ease;
}

.practice-areas-grid-custom .card-content-col {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px;
    z-index: 2;
    transition: all 0.4s ease;
}

.practice-areas-grid-custom .card-title-col {
    color: var(--white);
    font-family: var(--font-suisse);
    font-size: 24px;
    font-style: normal;
    line-height: 120%;
    letter-spacing: -0.72px;
}

.practice-areas-grid-custom .card-subtitle-col {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    line-height: 120%;
    letter-spacing: -0.54px;
    font-family: var(--font-suisse);
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.4s ease;
    transform: translateY(10px);
}

.practice-areas-grid-custom .arrow-btn {
    width: 64px;
    height: 48px;
    border: 2px solid rgba(255, 255, 255, 1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    text-decoration: none;
    transition: all 0.4s ease;
    background: transparent;
    position: absolute;
    right: 24px;
    top: 24px;
}

/* Hover Effects */
.practice-areas-grid-custom .practice-card-col:hover .card-img-wrapper-col img {
    transform: scale(1.1);
}

.practice-areas-grid-custom .practice-card-col:hover .card-overlay-col {
    background: rgba(0, 0, 0, 0.5);
    /* Darker on hover */
}

.practice-areas-grid-custom .practice-card-col:hover .card-subtitle-col {
    max-height: 60px;
    opacity: 0.9;
    transform: translateY(0);
    margin-top: 10px;
}

.practice-areas-grid-custom .practice-card-col:hover .arrow-btn {
    background-color: #FFFFFF;
    color: #0B0E14;
    border-color: #FFFFFF;
}

/* Practice Areas Grid end here */

/* Outcome Cards Section start here */

.outcome-card {
    background-color: #F3EAE2;
    border-radius: 8px;
    padding: 32px;
    height: 100%;
    transition: transform 0.3s ease;
}

.outcome-card:hover {
    transform: translateY(-5px);
}

.outcome-card h3 {
    color: var(--black-100, #0B0E14);
    font-family: var(--font-suisse);
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 20px;
    letter-spacing: -0.54px;
}

.outcome-card p {
    color: rgba(11, 14, 20, 0.70);
    font-family: var(--font-suisse);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -0.54px;
}

/* Outcome Cards Section end here */

/* Case Study Narrative Section start here */
.case-study-narrative {
    background-color: #FFFAF5;
}

.toc-wrapper {
    padding-top: 10px;
}

.case-study-tabs .nav-link {
    color: #0B0E14;
    font-family: var(--font-suisse);
    font-size: 18px;
    font-weight: 500;
    padding: 10px 0 10px 36px;
    position: relative;
    border: none !important;
    background: transparent !important;
    text-align: left;
    transition: all 0.3s ease;
    line-height: 20px;
    letter-spacing: -0.54px;
}

.case-study-tabs .nav-link:hover {
    color: #0B0E14;
}

.case-study-tabs .nav-link.active {
    color: #0B0E14;
    font-weight: 600;
}

.case-study-tabs .nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 24px;
    height: 2px;
    background-color: #0B0E14;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.case-study-tabs .nav-link.active::before {
    opacity: 1;
}

.narrative-content h2 {
    color: #0B0E14;
    font-family: var(--font-suisse);
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: -0.72px;
    margin-bottom: 25px;
}

.narrative-content h3 {
    color: #0B0E14;
    font-family: var(--font-suisse);
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: -0.72px;
    margin-bottom: 25px;
}

.narrative-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    font-family: var(--font-suisse);
    color: #0B0E14;
    margin-bottom: 20px;
}

.narrative-content p {
    color: #0B0E14;
    font-family: var(--font-suisse);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -0.54px;
    margin-bottom: 20px;
}

.summary-highlight-box {
    background-color: #F3EAE2;
    /* Match outcome card color from existing CSS */
    border-radius: 8px;
    padding: 32px;
}

.summary-highlight-box .amount {
    font-size: 24px;
    font-family: var(--font-suisse);
    color: #0B0E14;
    line-height: 1;
}

.summary-highlight-box .label {
    font-size: 18px;
    font-family: var(--font-suisse);
    color: rgba(11, 14, 20, 0.7);
}

.why-tag-pill-container {
    flex-wrap: wrap;
}

/* Case Study Narrative Section end here */

@media (max-width: 991px) {
    .case-study-narrative .toc-wrapper {
        position: relative !important;
        top: 0 !important;
        margin-bottom: 30px;
    }

    .case-study-narrative .case-study-tabs {
        flex-direction: row !important;
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        border-bottom: 1px solid rgba(11, 14, 20, 0.1);
        padding-bottom: 5px;
        scrollbar-width: none;
        /* Hide scrollbar for cleaner look */
    }

    .case-study-narrative .case-study-tabs::-webkit-scrollbar {
        display: none;
    }

    .case-study-narrative .case-study-tabs .nav-link {
        padding: 8px 16px;
        white-space: nowrap;
        font-size: 0.95rem;
    }

    .case-study-narrative .case-study-tabs .nav-link::before {
        display: none;
    }

    .case-study-narrative .case-study-tabs .nav-link.active {
        border-bottom: 2px solid #0B0E14 !important;
    }
}

/* Blog Section start here */
.blog {
    padding: 100px 0;
}

.blog-filters .btn-outline-dark {
    color: #0B0E14;
    font-family: var(--font-suisse);
    font-size: 16px;
    font-weight: 500;
    border: 1px solid #0B0E14;
    border-radius: 8px;
    padding: 10px 24px;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.blog-filters .btn-outline-dark:hover {
    background-color: #0B0E14;
    color: #FFFFFF;
}

.blog-card {
    cursor: pointer;
}

.blog-image-container img {
    transition: transform 0.5s ease;
    height: 340px;
    object-fit: cover;
}

.blog-card:hover .blog-image-container img {
    transform: scale(1.05);
}

.blog-card-title {
    color: #0B0E14;
    font-family: var(--font-suisse);
    font-size: 24px;
    line-height: 120%;
    letter-spacing: -0.72px;
    transition: color 0.3s ease;
    margin-bottom: 20px;
}

.blog-card:hover .blog-card-title {
    color: #3A2F2B;
    /* Subtle shift on hover */
}

.blog-card-date {
    font-family: var(--font-suisse);
    font-size: 16px;
    color: rgba(11, 14, 20, 0.6);
    letter-spacing: -0.48px;
}

.blog-card .badge {
    background-color: #FFFAF5 !important;
    color: #0B0E14 !important;
    font-size: 16px;
    font-weight: 400;
    line-height: 20px;
}

.category-badge {
    font-family: var(--font-suisse);
    font-size: 14px;
    letter-spacing: -0.42px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.search-wrapper .form-control {
    border: none;
    border-bottom: 1px solid #0B0E14;
}

.blog-selectbox .form-select {
    border: none;
    border-bottom: 1px solid #0B0E14;
    background: url('../images/chevron-down.svg') no-repeat right center;
}

.stay-ahead-serchbox {
    max-width: 448px;
    width: 100%;
    margin: auto;
}

.stay-ahead-serchbox .form-control {
    border: none;
    border-bottom: 1px solid #fff;
    color: #fff;
}

.stay-ahead-serchbox .form-control::placeholder {
    color: #fff;
    opacity: 1;
}

.stay-ahead-serchbox .btn.btn-dark {
    min-width: 64px;
    height: 48px;
    border-radius: 8px;
    background: #fff;
}

.stay-ahead-serchbox .btn.btn-dark img {
    width: 16px;
    height: 16px;
}

/* Blog Pagination Styles */
.pagination {
    margin: 0;
}

.pagination .page-item {
    margin: 0;
}

.pagination .page-link {
    color: #0B0E14;
    background-color: transparent;
    font-family: var(--font-suisse);
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    padding: 25px 28px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.pagination .page-link:hover {
    background-color: rgba(11, 14, 20, 0.05);
    color: #0B0E14;
}

.pagination .page-item.active .page-link {
    background-color: #0B0E14;
    color: #FFFFFF;
    border-radius: 12px;
}

.pagination .page-link:focus {
    box-shadow: none;
}

/* Blog Section end here */

.blog-date p {
    color: rgba(11, 14, 20, 0.50);
    font-family: var(--font-suisse);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -0.54px;
    margin-bottom: 50px;
}

.drafting-img.blog-detail-img {
    border-radius: 6px;
    overflow: hidden;
    margin-top: 30px;
}

.drafting-img.blog-detail-img img {
    width: 100%;
    max-width: 100%;
    height: 520px;
    object-fit: cover;
}

.blog-content-img img {
    border-radius: 6px;
    height: 254px;
    width: 100%;
    object-fit: cover;
}

.blog-client-testimonials {
    border-radius: 8px;
    background: #0B0E14;
    padding: 40px 24px;
}

.blog-client-testimonials .comma-icon svg {
    min-width: 24px;
    height: 24px;
}

.blog-client-testimonials .blog-client-testimonials-content h6 {
    color: var(--white);
    font-family: var(--font-suisse);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -0.54px;
}

.blog-client-testimonials .blog-client-testimonials-content p {
    color: rgba(255, 255, 255, 0.70);
    font-family: var(--font-suisse);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.blog-detail-narrative .narrative-content h2 {
    color: #0B0E14;
    font-family: var(--font-suisse);
    font-size: 32px;
    font-style: normal;
    font-weight: 600;
    line-height: 120%;
    letter-spacing: -0.96px;
}

.result-item ul,
.solution-sub-item ul {
    padding-left: 20px;
}

.result-item ul li,
.solution-sub-item ul li {
    color: #0B0E14;
    font-family: var(--font-suisse);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
    letter-spacing: -0.54px;
    margin-bottom: 20px;
}

.blog-detail-narrative .video-container {
    height: 480px;
}

.our-approach-detail .breadcrumb {
    padding: 0 20px;
}

.article-item h3 {
    color: var(--white) !important;
    font-family: var(--font-suisse);
    font-size: 24px;
    font-style: normal;
    line-height: 120%;
    letter-spacing: -0.72px;
}

.article-item p {
    color: rgba(255, 255, 255, 0.80) !important;
    font-family: var(--font-suisse);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.footer-links ul li a {
    padding: 10px 0 !important;
}


.footer-form {
    display: flex;
    gap: 1.5rem;
    width: 100%;
}

.row.footer-links {
    margin-top: 50px;
}

span.wpcf7-not-valid-tip {
    position: relative;
    font-size: 14px;
    right: 0;
    margin-top: 5px;
}

.wpcf7-response-output {
    position: absolute;
    border: none !important;
    font-size: 12px;
}

.footer-form p:first-child {
    flex: 1;
    width: 100%;
}

.map-overlay-wrapper .slider-item {
    height: 120px;
}

.wpcf7 form .wpcf7-response-output {
    margin: 2em 0 1em;
    padding-left: 0;
}

.featured-logos-slider {
    position: relative;
}

.featured-logos-slider:before {
    content: "";
    position: absolute;
    background: linear-gradient(to right, rgba(243, 234, 226, 1) 20%, rgba(243, 234, 226, 0) 100%);
    width: 60px;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
}

.featured-logos-slider:after {
    content: "";
    position: absolute;
    background: linear-gradient(to left, rgba(243, 234, 226, 1) 20%, rgba(243, 234, 226, 0) 100%);
    width: 60px;
    height: 100%;
    top: 0;
    right: 0;
    z-index: 1;
}

body.blog.wp-theme-pauladvisory {
    padding-bottom: 0;
}

.why-tag-pill-container.show-on-mobile {
    display: none !important;
}

.why-tag-pill-container.hide-on-mobile {
    display: none !important;
}

.alliance-item svg {
    max-width: 300px;
    object-fit: cover;
    width: 100%;
}


.alliance-item {
    padding: 0 20px;
}