﻿
.body-content {

    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
html {
    scroll-behavior: smooth;
}

input,
select,
textarea {
    max-width: 280px;
}
:root {
    --primary: #b3c2bd;
    --primary-dark: #5a7a74;
    --secondary: #133453;
    --text-dark: #1f2d2b;
    --text-light: #6c757d;
    --bg-light: #ffffff;
    --white: #ffffff;

    --clr-secondary: #f9f7f5;
    --clr-accent: #b3c2bd;
}

.custom-navbar {
    background-color: var(--bg-light);
    color: var(--secondary);
    transition: all 0.3s ease;
}

.nav-link {
    font-weight: 500;

    position: relative;
    color: var(--secondary) !important;
    padding: 10px 12px;
    font-size: 0.98rem;
    line-height: 1;
}

    .nav-link.active {
        color: var(--primary) !important;
    }

.btn-contact {
    background-color: var(--primary) !important;
    color: #fff;
    border-radius: 6px;
    font-size: 14px;
}

    .btn-contact:hover {
        background-color: var(--primary-dark);
        color: #fff;
    }

@media (max-width: 991px) {
    .navbar-collapse {
        background: var(--white);
        padding: 20px;
        border-radius: 10px;
        margin-top: 10px;
    }

    .nav-link {
        margin: 10px 0;
    }
}

.logo-img {

    object-fit: contain;
    border-radius: 4px;
}

.logo-main {
    font-weight: 700;
    font-size: 16px;
    color: var(--text-dark);
    letter-spacing: 0.5px;
    line-height: 1;
}

.logo-sub {
    font-size: 10px;
    color: var(--text-light);
    line-height: 1;
}

.hero-section {
    background: var(--bg-light);
    overflow-x: hidden;

}

.hero-title {
    font-size: 2.3rem;
    font-weight: 600;
    color: var(--secondary );
    line-height: 1.4;
}

.hero-sub {
    font-size: 1.1rem;
    color: var(--secondary) !important;
}

.btn-hero {
    background-color: var(--primary) !important;
    color: #fff;
    border-radius: 6px;
    font-weight: 500;
}

    .btn-hero:hover {
        background-color: var(--primary);
        color: #fff;
    }

.hero-img {

    max-height: 390px;
    object-fit: cover;
    align-content:end !important;
    margin-top: 30px !important;
    border-style:groove;
}

.icon-row {
    border-top: 1px solid #e5e5e5;
    padding-top: 30px;
}

.icon-box {
    padding: 15px;
    transition: 0.3s;
    cursor: pointer;
}

    .icon-box i {
        font-size: 24px;
        color: var(--primary);
        margin-bottom: 8px;
    }

    .icon-box p {
        margin: 0;
        font-size: 14px;
        color: var(--text-dark);
    }

    .icon-box:hover {
        transform: translateY(-5px);
    }

@media (max-width: 768px) {
    .hero-title {
        font-size: 1.6rem;
    }

    .hero-img {
        max-height: 250px;
    }
}

.hero-title,
.hero-sub,
.btn-hero {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards;
}

.hero-sub {
    animation-delay: 0.2s;
}

.btn-hero {
    animation-delay: 0.4s;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
i.text-primary {
    color: var(--secondary) !important;
}
.section-buying {
    padding: 110px 0;
    background: #f9f7f5;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--secondary);
}

.section-lead {
    margin-top: 10px;
    line-height: 1.6;
    color: var(--text-dark);
}

.section-icon {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.stepper {
    border-left: 2px solid #e4e4e4;
    padding-left: 20px;
}

.step {
    position: relative;
    margin-bottom: 20px;
}

    .step span {
        position: absolute;
        left: -38px;
        top: 0;
        background: var(--primary-dark);
        color: #fff;
        width: 28px;
        height: 28px;
        border-radius: 50%;
        font-size: 12px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .step p {
        margin: 0;
        font-size: 0.95rem;
        color: var(--secondary);
    }

.image-block {
    position: relative;
}

    .image-block img {
        border-radius: 16px;
        width: 100%;
        height: 420px;
        object-fit: cover;
    }

.image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: #fff;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 500;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.section-bottom {
    color: var(--text-light);
}

.section-highlight {
    font-weight: 500;
    color: var(--secondary);
}

@media (max-width: 768px) {

    .image-block img {
        height: 260px;
    }

    .section-title {
        font-size: 1.6rem;
    }
}

.service-body
 {
    font-family: 'Inter', sans-serif;
    scroll-behavior: smooth;
    color: var(--primary);
}

.service-section {
    background: linear-gradient(180deg, #eef3f7 0%, #e7edf3 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.service-section .page-section {
    padding: 26px;
    border-radius: 20px;
    margin-bottom: 22px;
}

.service-section .page-section:nth-of-type(odd) {
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 14px 30px rgba(14, 39, 62, 0.09);
}

.service-section .page-section:nth-of-type(even) {
    background: rgba(238, 245, 250, 0.96);
    box-shadow: 0 14px 30px rgba(14, 39, 62, 0.09);
}

.service-section .page-section .row {
    min-height: 420px;
}

.service-section .page-section .col-lg-6 {
    display: flex;
    align-items: center;
}

.service-content h2 {
    font-weight: 600;
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #143453;
}

.service-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #2c4358;
}

.service-list {
    margin-top: 20px;
}

    .service-list li {
        margin-bottom: 10px;
        font-size: 1rem;
        color: #1f3a52;
    }

.check {
    color: #2f6f66;
    font-weight: 600;
    margin-right: 8px;
}

.service-section .service-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 520px;
    height: clamp(320px, 30vw, 420px);
    margin-inline: auto;
    border-radius: 18px;
    overflow: hidden;
}

    .service-section .service-image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        mix-blend-mode: normal;
        opacity: 0.95;
    }

    .service-section .service-image-wrapper::before {
        content: "";
        position: absolute;
        inset: 0;
        background: linear-gradient(to right, rgba(227, 236, 244, 0.72) 6%, transparent 44%);
        z-index: 1;
    }

    .service-section .page-section:nth-of-type(even) .service-image-wrapper::before {
        background: linear-gradient(to left, rgba(227, 236, 244, 0.72) 6%, transparent 44%);
    }

.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

    .fade-up.show {
        opacity: 1;
        transform: translateY(0);
    }

@media (max-width: 768px) {
    .service-section {
        padding: 60px 20px;
    }

    .service-section .page-section {
        padding: 16px 12px;
        border-radius: 14px;
        margin-bottom: 14px;
    }

    .service-section .page-section .row {
        min-height: auto;
    }

    .service-content h2 {
        font-size: 1.8rem;
    }

    .service-section .service-image-wrapper {
        animation: none;
        height: 250px;
    }
}

.service-section .service-image-wrapper {
    position: relative;
    transition: transform 0.6s ease;
    animation: floatImage 6s ease-in-out infinite;
    will-change: transform;
}

    .service-section .service-image-wrapper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        mix-blend-mode: normal;
        opacity: 0.95;
        transition: transform 0.6s ease, opacity 0.6s ease;
    }

@keyframes floatImage {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-12px);
    }

    100% {
        transform: translateY(0px);
    }
}

@media (min-width: 992px) {
    .service-section .service-image-wrapper:hover {
        transform: scale(1.03);
    }

    .service-section .service-image-wrapper:hover img {
        transform: none;
        opacity: 1;
    }
}

.parallax-img {
    transform: scale(1.1);
}

.service-section .service-image-wrapper::after {
    content: "";
    position: absolute;
    width: 70%;
    height: 70%;
    background: radial-gradient(circle, rgba(179,194,189,0.25), transparent 70%);
    top: 15%;
    left: 15%;
    z-index: 0;
    filter: blur(40px);
}

.about-section {
    background: linear-gradient(to bottom, #ffffff, #f9f7f5);
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

    .about-section::before {
        content: "";
        position: absolute;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(179,194,189,0.18), transparent 70%);
        top: -150px;
        right: -150px;
        z-index: 0;
    }

.about-content {
    max-width: 560px;
    z-index: 2;
    position: relative;
}

.about-title {
    font-size: clamp(1.85rem, 2.6vw, 2.5rem);
    font-weight: 700;
    letter-spacing: -0.025em;
    line-height: 1.18;
    color: #0b2242;
    margin-bottom: 0;
}

.about-text {
    margin-top: 15px;
    line-height: 1.7;
    color: var(--text-dark);
}

.about-list li {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}

.about-list .check {
    width: 28px;
    height: 28px;
    background: var(--primary);
    border-radius: 8px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 14px;
}

.team-grid-modern {
    position: relative;
    z-index: 2;
}

.team-card-modern {
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    transition: all 0.5s ease;
    box-shadow: 0 15px 40px rgba(0,0,0,0.06);
}

.team-img-modern {
    width: 100%;
    height: 260px;
    overflow: hidden;
}

    .team-img-modern img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.6s ease;
    }

.team-info {
    padding: 18px;
    text-align: left;
}

.team-name {
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 4px;
}

.team-role {
    font-size: 0.9rem;
    color: var(--text-light);
}

.team-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
}

    .team-card-modern:hover img {
        transform: scale(1.08);
    }

.team-card-modern:nth-child(2) {
    margin-top: 60px;
}

.team-card-modern:nth-child(3) {
    margin-top: 30px;
}

@media (max-width: 991px) {

    .team-card-modern:nth-child(2),
    .team-card-modern:nth-child(3) {
        margin-top: 20px;
    }

    .team-img-modern {
        height: 220px;
    }

    .about-title {
        font-size: clamp(1.65rem, 4.5vw, 1.9rem);
    }
}
.logo-slider-section {
    background: var(--bg-light);
}

.logo-slider {
    display: flex;
    overflow: hidden;
    position: relative;
}

.logo-slide {
    display: flex;
    animation: slide-left 20s linear infinite;
}

    .logo-slide .oc-item {
        flex: 0 0 auto;
        margin: 0 40px;
        transition: transform 0.3s ease, opacity 0.3s ease;
    }

        .logo-slide .oc-item img {
            filter: grayscale(50%);
            transition: transform 0.3s ease, filter 0.3s ease;
        }

            .logo-slide .oc-item img:hover {
                transform: scale(1.1);
                filter: grayscale(0%);
            }

@keyframes slide-left {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .logo-slide .oc-item {
        margin: 0 20px;
    }

        .logo-slide .oc-item img {
            height: 36px;
        }
}

.about-us-section .section-title {
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 20px;
}

.about-us-section .section-lead {
    color: var(--text-dark);
    font-size: 1.05rem;
    line-height: 1.7;
}

.team-card {
    background: #fff;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .team-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    }

.team-name {
    color: var(--secondary);
    font-weight: 600;
}

.team-role {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.team-desc {
    font-size: 0.95rem;
    color: var(--text-dark);
}

@media (max-width: 768px) {
    .team-card {
        padding: 20px;
    }
}

.founder-spotlight {
    position: relative;
    display: grid;
    grid-template-columns: minmax(220px, 320px) 1fr;
    gap: clamp(24px, 4vw, 56px);
    align-items: center;
    padding: clamp(28px, 4vw, 48px);
    background: linear-gradient(135deg, #ffffff 0%, #f4f7fb 100%);
    border: 1px solid rgba(19, 52, 83, 0.12);
    border-radius: 24px;
    box-shadow: 0 32px 80px rgba(11, 34, 66, 0.14);
    overflow: hidden;
}

.founder-spotlight::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
}

.founder-spotlight::after {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 240px;
    height: 240px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(179, 194, 189, 0.28), transparent 70%);
    pointer-events: none;
}

.founder-spotlight__media {
    position: relative;
    justify-self: center;
    width: auto;
    max-width: none;
}

.founder-spotlight__media img {
    width: 250px;
    height: 310px;
    aspect-ratio: auto;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 18px 40px rgba(19, 52, 83, 0.22);
    display: block;
}

.founder-spotlight__body {
    position: relative;
    z-index: 1;
}

.founder-spotlight__eyebrow {
    margin: 0 0 8px;
    color: var(--primary-dark);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.founder-spotlight__name {
    margin: 0 0 4px;
    font-size: clamp(1.6rem, 2.4vw, 2.1rem);
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: 0.2px;
}

.founder-spotlight__role {
    margin: 0 0 18px;
    font-size: 1rem;
    color: var(--text-light);
    font-weight: 500;
}

.founder-spotlight__bio {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.7;
    color: var(--text-dark);
}

@media (max-width: 767.98px) {
    .founder-spotlight {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 28px 20px 32px;
    }

    .founder-spotlight__media {
        max-width: none;
    }
}

.team-img-standard {
    width: 250px !important;
    height: 310px  !important;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid var(--primary);
    transition: transform 0.3s ease;
}

.team-card-modern:hover .team-img-standard {
    transform: scale(1.05);
}

.team-name {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 5px;
}

.team-role {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.team-desc {
    font-size: 0.95rem;
    color: var(--text-dark);
}
.btn-cta {
    color: var(--white);
    font-weight: 500;
    transition: background-color 0.3s ease;
}

    .btn-cta:hover {
        background-color: var(--primary-dark);
        color: var(--white);
    }

@media (max-width: 991px) {
    .cta-title {
        font-size: 1.8rem;
    }
}

.dk-footer-wrapper {
    background: linear-gradient(180deg, #0b3b4b 0%, #0f4c5c 100%);
    padding: 56px 0 28px;
    color: #fff;
    font-family: 'Montserrat', Arial, sans-serif;
}

.dk-footer-container {
    max-width: min(1320px, 100%);
    margin: 0 auto;
    padding: 0 clamp(16px, 3.5vw, 40px);
}

.dk-warning-box {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.35);
    text-align: center;
    padding: 10px 14px;
    font-size: 12.5px;
    font-weight: 600;
    letter-spacing: 0.35px;
    margin-top: 30px;
    margin-bottom: 14px;
}

.dk-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(18px, 2.2vw, 28px);
    align-items: start;
}

.dk-col {
    min-width: 0;
}

.dk-logo-img {
    width: min(190px, 100%);
    height: auto;
    display: block;
    margin: 0;
    filter: brightness(0) invert(1);
    opacity: 0.95;
}

.dk-social {
    gap: 12px;
}

.dk-contact-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.dk-social--under-contact {
    margin-top: 1.1rem;
    gap: 14px;
}

.dk-social--under-contact .social-icon {
    font-size: 1.35rem;
    line-height: 1;
    opacity: 0.9;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.dk-social--under-contact .social-icon:hover {
    opacity: 1;
    transform: translateY(-1px);
}

.dk-social .social-icon {
    color: rgba(255, 255, 255, 0.86) !important;
}

.dk-social .social-icon:hover {
    color: #ffffff !important;
}

.dk-heading {
    color: #f4a261;
    font-size: 1.2rem;
    line-height: 1.25;
    margin-bottom: 12px;
    font-weight: 700;
}

.dk-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .dk-list li {
        margin-bottom: 8px;
        font-size: 1rem;
        line-height: 1.5;
    }

    .dk-list a {
        color: rgba(207, 239, 247, 0.86);
        text-decoration: none;
        font-weight: 600;
    }

        .dk-list a:hover {
            color: #ffffff;
            text-decoration: underline;
            text-decoration-color: rgba(143, 211, 232, 0.9);
            text-underline-offset: 2px;
        }

    .dk-contact-list li {
        margin-bottom: 6px;
    }

.dk-contact-list a[href^="mailto:"] {
    font-size: inherit;
    line-height: inherit;
    font-weight: 400;
    letter-spacing: normal;
    overflow-wrap: anywhere;
}

.dk-contact-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 12px;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.92rem;
    transition: all 0.2s ease;
}

.dk-contact-btn:hover {
    color: #0f4c5c;
    background: rgba(255, 255, 255, 0.95);
}

.dk-text-block {
    text-align: center;
    font-size: 12.5px;
    line-height: 1.7;
    margin-top: 0;
    color: rgba(255, 255, 255, 0.92);
}

    .dk-text-block p {
        margin: 7px 0;
    }

.dk-copy {
    margin-top: 18px;
    text-align: center;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
}

    .dk-copy p {
        margin: 2px 0;
}

/* Powered by — sits at the very bottom of the footer with a thin
   divider above. Matches the dark footer theme. */
.dk-powered-by {
    margin-top: 22px;
    padding-top: 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.65);
}

.dk-powered-by__label {
    font-style: italic;
    letter-spacing: 0.2px;
}

.dk-powered-by__brand {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #ffffff;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.dk-powered-by__brand:hover,
.dk-powered-by__brand:focus-visible {
    opacity: 0.85;
    color: #ffffff;
}

.dk-powered-by__logo {
    height: 22px;
    width: auto;
    object-fit: contain;
    display: block;
}

.dk-powered-by__name {
    font-weight: 700;
    letter-spacing: 0.2px;
}

@media (max-width: 992px) {
    .dk-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 22px;
    }

    .dk-col {
        width: 100%;
    }

    .dk-logo-img {
        margin: 0 auto;
    }

    .dk-logo-col {
        text-align: center;
    }

    .dk-contact-col {
        align-items: center;
        text-align: center;
    }

    .dk-contact-col .dk-heading,
    .dk-contact-col .dk-contact-list {
        text-align: center;
    }

    .dk-contact-col .dk-contact-list {
        width: 100%;
    }

    .dk-social--under-contact {
        justify-content: center;
    }
}

@media (max-width: 600px) {
    .dk-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .dk-col {
        width: 100%;
    }

    .dk-heading {
        margin-bottom: 10px;
    }

    .dk-list li {
        margin-bottom: 6px;
    }

    .dk-contact-col {
        align-items: stretch;
        text-align: left;
    }

    .dk-contact-col .dk-heading,
    .dk-contact-col .dk-contact-list {
        text-align: left;
    }

    .dk-social--under-contact {
        justify-content: flex-start;
    }
}
.hero-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fafc, #eef2ff);
    overflow: hidden;
}

.hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1.2;
}

.hero-sub {
    font-size: 1.1rem;
    color: #64748b;
    max-width: 500px;
}

.btn-hero {
    background: #4f46e5;
    color: #fff;
    padding: 12px 28px;
    border-radius: 8px;
    font-weight: 500;
    transition: 0.3s;
}

    .btn-hero:hover {
        background: #4338ca;
        transform: translateY(-2px);
    }

.hero-img-wrapper {
    position: relative;
    display: inline-block;
}

    .hero-img-wrapper::before {
        content: "";
        position: absolute;
        top: -20px;
        left: -20px;
        width: 100%;
        height: 100%;
        background: #c7d2fe;
        border-radius: 20px;
        z-index: -1;
    }

.hero-img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    max-height: 420px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-section {
        text-align: center;
        padding: 60px 0;
    }

    .hero-sub {
        margin: 0 auto;
    }
}

.hero-clean {
    background: #f4f6f5;
    padding-bottom: 80px !important;
    position: relative !important;
}

.hero-heading {
    font-size: 2.6rem;
    font-weight: 600;
}

.hero-text {
    color: #555;
}

.cards-section {
    position: relative;
    margin-top: -120px !important;
    z-index: 10;

}

.cards-wrapper {
    display: flex;
    justify-content: center;

    flex-wrap: wrap;
}

.card-box {
    width: 260px;
    height: 200px;
    perspective: 1000px;
}

.card-inner {
    width: 100%;
    height: 100%;
    position: relative;
    transition: transform 0.6s ease;
    transform-style: preserve-3d;
}

.card-box:hover .card-inner {
    transform: rotateY(180deg);
}

.card-front,
.card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 6px;
    backface-visibility: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.card-front {
    background: #9fbec4;
    color: #fff;
    text-align: center;
    padding: 20px;
}
.card-front2 {
    background: var(--primary);
    color: #fff;
    text-align: center;
    padding: 20px;
}

.card-icon {
    font-size: 70px !important;

    margin-bottom: 10px;
}

.card-back {
    background: #6f8f96;
    color: white;
    transform: rotateY(180deg);
    text-align: center;
    padding: 20px;
}

    .card-back .btn {
        margin-top: 10px;
    }

.card-inner {
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

@media (max-width: 992px) {
    .card-box {
        width: 45%;
    }
}

@media (max-width: 576px) {
    .card-box {
        width: 100%;
    }

    .cards-section {
        margin-top: -80px;
    }
}
#filmstrip-hero-rev.slider-element {
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

#filmstrip-hero-rev .rev_slider_wrapper {
    padding: 0 !important;
    margin: 0 auto !important;
}

.feature-cards--fullbleed {
    width: 100%;
    max-width: none;
    margin: 0;
    margin-top: -18px;
    padding: clamp(28px, 4vw, 48px) clamp(20px, 4vw, 72px);
    position: relative;
    z-index: 10;
    background:
        radial-gradient(ellipse 80% 60% at 10% 0%, rgba(130, 170, 180, 0.28), transparent 55%),
        radial-gradient(ellipse 70% 50% at 90% 100%, rgba(11, 34, 66, 0.08), transparent 50%),
        #e4ecef;
}

.feature-cards__grid {
    width: 100%;
    max-width: none;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.feature-service {
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: 100%;
    text-decoration: none;
    color: inherit;
    border-radius: 20px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(11, 34, 66, 0.08);
    box-shadow: 0 10px 28px rgba(9, 32, 54, 0.1);
    outline: none;
    transition:
        transform 0.25s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.25s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.25s ease;
}

.feature-service:hover {
    transform: translateY(-5px);
    border-color: rgba(11, 34, 66, 0.16);
    box-shadow: 0 18px 40px rgba(7, 26, 44, 0.16);
}

.feature-service:focus-visible {
    box-shadow: 0 0 0 3px rgba(15, 76, 92, 0.4), 0 18px 40px rgba(7, 26, 44, 0.16);
}

.feature-service__front {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 0.55rem;
    min-height: 168px;
    padding: 28px 20px 22px;
}

.feature-service--accent .feature-service__front {
    background: linear-gradient(160deg, #7fa8b3 0%, #5f8794 100%);
    color: #fff;
}

.feature-service--soft .feature-service__front {
    background: linear-gradient(168deg, #f4f8fa 0%, #e2edf2 100%);
    color: #0b2242;
}

.feature-service__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    font-size: 1.45rem;
    line-height: 1;
    margin-bottom: 0.15rem;
    transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-service--accent .feature-service__icon {
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
}

.feature-service--soft .feature-service__icon {
    background: rgba(11, 34, 66, 0.08);
    color: #0a2d4a;
}

@media (hover: hover) {
    .feature-service:hover .feature-service__icon {
        transform: translateY(-2px) scale(1.06);
    }
}

.feature-service__heading {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.35rem;
}

.feature-service__title {
    margin: 0;
    font-size: 1.12rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.25;
}

.feature-service__tagline {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    line-height: 1.35;
}

.feature-service--accent .feature-service__tagline {
    color: rgba(255, 255, 255, 0.88);
}

.feature-service--soft .feature-service__tagline {
    color: rgba(7, 26, 48, 0.62);
}

.feature-service__detail {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
    padding: 20px 18px 18px;
    background: linear-gradient(180deg, #4f6d7d 0%, #3a5566 100%);
    color: #fff;
}

.feature-service--soft .feature-service__detail {
    background: linear-gradient(180deg, #627f8d 0%, #4d6878 100%);
}

.feature-service__lead {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.45;
    font-weight: 600;
    color: #fff;
}

.feature-service__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.8rem;
    line-height: 1.4;
    font-weight: 500;
    flex: 1;
}

.feature-service__list li {
    margin: 0;
    position: relative;
    padding-left: 1.2rem;
}

.feature-service__list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 0;
    color: #b8e0d4;
    font-size: 0.74rem;
    font-weight: 700;
    line-height: 1.4;
}

@media (prefers-reduced-motion: reduce) {
    .feature-service,
    .feature-service__icon {
        transition: none;
    }

    .feature-service:hover {
        transform: none;
    }
}

@media (max-width: 991.98px) {
    .feature-cards--fullbleed {
        padding: 24px 16px 32px;
    }

    .feature-cards__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
    }

    .feature-service {
        min-width: 0;
    }

    .feature-service:hover {
        transform: none;
    }

    .feature-service__front {
        min-height: 148px;
        padding: 24px 16px 18px;
    }

    .feature-service__lead,
    .feature-service__list {
        overflow-wrap: anywhere;
    }

    .landing-hero {
        padding-bottom: 16px;
    }

    .landing-hero .row > .col-xl-5.py-5 {
        padding-bottom: 0.75rem !important;
    }
}

@media (max-width: 575.98px) {
    .feature-cards--fullbleed {
        margin-top: 0;
        padding: 20px 12px 28px;
    }

    .feature-cards__grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .feature-service {
        border-radius: 16px;
    }

    .feature-service__front {
        min-height: 0;
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        gap: 14px;
        padding: 16px;
    }

    .feature-service__heading {
        align-items: flex-start;
        min-width: 0;
    }

    .feature-service__title {
        font-size: 1.05rem;
    }

    .feature-service__tagline {
        font-size: 0.68rem;
    }

    .feature-service__icon {
        margin-bottom: 0;
        flex-shrink: 0;
        width: 46px;
        height: 46px;
        font-size: 1.25rem;
    }

    .feature-service__detail {
        padding: 14px 16px 16px;
    }

    .feature-service__lead {
        font-size: 0.88rem;
    }

    .feature-service__list {
        font-size: 0.78rem;
    }

    .landing-hero {
        padding-top: 28px;
        padding-bottom: 8px;
    }

    .landing-hero .row > .col-xl-5.py-5 {
        padding-bottom: 0 !important;
    }
}
.service-section .page-section.service-article-section {
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    padding: 0;
    margin-bottom: 0;
}

.service-section .page-section.service-article-section .row {
    min-height: 0;
}

.service-article-region .service-article {
    opacity: 1;
    transform: none;
}

.service-article__media {
    min-height: 320px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

@media (min-width: 992px) {
    .service-article > .row {
        align-items: stretch !important;
    }

    .service-article__media {
        display: block !important;
        align-self: stretch;
        min-height: 100%;
        height: auto;
        background-size: cover;
        background-position: center;
    }

    .service-article__body {
        display: flex !important;
        align-items: stretch !important;
    }

    .service-article__inner {
        display: flex;
        flex-direction: column;
        flex: 1 1 auto;
        width: 100%;
        height: 100%;
    }

    .service-article__inner > .service-content-panel {
        flex: 1 1 auto;
        display: flex;
        flex-direction: column;
        height: 100%;
    }
}

.service-article__media--first-home {
    background-image: linear-gradient(105deg, rgba(11, 34, 66, 0.25) 0%, rgba(11, 34, 66, 0.05) 55%, transparent 100%),
        url("/Content/images/buying-first-place.png");
}

.service-article__media--remortgage {
    background-image: linear-gradient(105deg, rgba(11, 34, 66, 0.22) 0%, rgba(11, 34, 66, 0.04) 55%, transparent 100%),
        url("/Content/images/Home-Mover.webp");
}

.service-article__media--moving {
    background-image: linear-gradient(105deg, rgba(11, 34, 66, 0.22) 0%, rgba(11, 34, 66, 0.04) 55%, transparent 100%),
        url("/Content/images/Moving-your-mortgage-when-you-move-house.jpg");
}

.service-article__media--protection {
    background-image: linear-gradient(105deg, rgba(11, 34, 66, 0.2) 0%, rgba(11, 34, 66, 0.04) 50%, transparent 100%),
        url("/Content/images/Accident-Cover.webp");
}

.service-article__body {
    background: linear-gradient(165deg, #f0f5f8 0%, #e8eef3 45%, #f7f9fb 100%);
}

.service-article__inner {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: clamp(1.5rem, 4vw, 3.25rem) clamp(1.25rem, 4vw, 2.75rem);
}

@media (min-width: 992px) {
    .service-article__body .service-article__inner {
        max-width: none;
        padding-left: clamp(1.75rem, 4.5vw, 3.5rem);
        padding-right: clamp(1.75rem, 4.5vw, 3.5rem);
    }
}

.service-content-panel {
    background: #fff;
    border: 1px solid rgba(18, 48, 79, 0.1);
    border-radius: 20px;
    padding: clamp(1.0rem, 3.5vw, 2.25rem) clamp(1.25rem, 3vw, 2rem);
    box-shadow:
        0 1px 0 rgba(255, 255, 255, 0.9) inset,
        0 14px 36px rgba(11, 34, 66, 0.08);
}

.service-content-panel--flush-top {
    padding-top: clamp(1.15rem, 3vw, 1.85rem);
}

.service-content-panel--protection {
    padding-bottom: clamp(1.25rem, 3vw, 2rem);
}

@media (max-width: 991.98px) {
    .protection-proposal-header .service-content-panel__head {
        justify-content: center;
        text-align: center;
    }

    .protection-proposal-header .service-content-panel__head-text {
        text-align: center;
    }
}

@media (min-width: 992px) {
    .protection-proposal-header .service-content-panel__head {
        justify-content: flex-start;
    }

    .protection-proposal-header .service-content-panel__head-text {
        text-align: left;
    }
}

.service-content-panel__head {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.service-content-panel__head--compact {
    margin-bottom: 1rem;
}

@media (min-width: 992px) {
    .service-content-panel__head--stack-lg {
        align-items: center;
    }
}

.service-content-panel__icon {
    flex-shrink: 0;
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.55rem;
    color: #0b2242;
    background: linear-gradient(145deg, #dce8ec 0%, #c5d8df 100%);
    box-shadow: 0 4px 14px rgba(11, 34, 66, 0.1);
}

.service-content-panel__icon--shield {
    background: linear-gradient(145deg, #8eb4bc 0%, #739da8 100%);
    color: #fff;
}

.service-content-panel__head-text {
    min-width: 0;
}

.service-content-panel__title {
    font-weight: 700;
    font-size: clamp(1.55rem, 2.8vw, 2.05rem);
    line-height: 1.2;
    color: #0b2242;
    letter-spacing: -0.02em;
    margin: 0;
}

.service-content-panel .lead {
    color: #3d5670;
    font-weight: 500;
}

.service-list-intro {
    color: #143453;
    font-size: 0.95rem;
}

.service-content-panel .service-list {
    margin-top: 0.35rem;
}

.service-content-panel__footnote {
    font-size: 1.02rem;
    line-height: 1.65;
    color: #3d5670;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(18, 48, 79, 0.08);
}

.mortgage-risk-disclosure {
    margin-top: 1.25rem;
    display: grid;
    gap: 0.85rem;
}

.mortgage-risk-disclosure--hero {
    margin-top: 0.35rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(18, 48, 79, 0.08);
}

.mortgage-risk-disclosure--hero .mortgage-risk-warning {
    text-align: center;
}

.mortgage-risk-warning {
    padding: 18px 20px;
    background: #f6f7f8;
    border: 1px solid rgba(18, 48, 79, 0.14);
    border-radius: 10px;
    font-size: clamp(0.8rem, 1.15vw, 0.92rem);
    font-weight: 700;
    line-height: 1.65;
    letter-spacing: 0.035em;
    text-transform: uppercase;
    text-align: left;
    color: #1c2b3a;
}

.mortgage-risk-note {
    margin: 0;
    padding: 0 2px;
    font-size: clamp(0.82rem, 1vw, 0.9rem);
    line-height: 1.6;
    font-weight: 500;
    color: #4a5568;
    text-align: left;
}

@media (max-width: 575.98px) {
    .mortgage-risk-disclosure {
        margin-top: 1rem;
        gap: 0.75rem;
    }

    .mortgage-risk-warning {
        padding: 16px 14px;
        font-size: 0.78rem;
        line-height: 1.6;
        text-align: center;
    }

    .mortgage-risk-note {
        text-align: center;
    }
}

.service-list--icons li {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
    margin-bottom: 0.65rem;
    line-height: 1.45;
}

.service-list--icons li:last-child {
    margin-bottom: 0;
}

.service-list__icon {
    flex-shrink: 0;
    margin-top: 0.12rem;
    font-size: 1.05rem;
    color: #2f6f66;
}

.service-article__body .service-content h2 {
    margin-top: 0;
}

.ls-wide {
    letter-spacing: 0.12em;
}

.moving-split {
    margin-top: 0.25rem;
}

.service-article__body .moving-subsection {
    height: 100%;
    background: linear-gradient(180deg, #f8fafb 0%, #f2f6f8 100%);
    border: 1px solid rgba(20, 52, 83, 0.12);
    border-radius: 16px;
    padding: 1.15rem 1.2rem 1.25rem;
    box-shadow: 0 6px 20px rgba(11, 34, 66, 0.06);
}

.moving-subsection__title {
    font-size: 1.08rem;
    font-weight: 700;
    color: #0b2242;
    margin: 0 0 0.65rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.moving-subsection__glyph {
    font-size: 1.2rem;
    color: #2f6f66;
    opacity: 0.95;
}

.moving-subsection__lead {
    font-size: 0.98rem;
    line-height: 1.6;
    color: #3d5670;
    margin-bottom: 0.85rem;
}

.service-article-region .protection-proposal {
    max-width: none;
    margin-inline: 0;
}

.service-article-region #protection .protection-proposal-header {
    margin-bottom: 1.25rem;
}

@media (max-width: 991.98px) {
    .service-article__media {
        min-height: 220px;
        display: block !important;
        height: auto;
        align-self: auto;
    }

    .service-section .service-article {
        --svc-inset: 0px;
    }

    .service-article__media {
        width: 100%;
        margin: 0;
        border-radius: 20px;
        background-position: center;
    }

    .service-article__body {
        display: block !important;
        align-items: initial !important;
    }

    .service-article__inner {
        display: block;
        height: auto;
        padding-left: 0;
        padding-right: 0;
        padding-top: clamp(1.25rem, 4vw, 2rem);
    }

    .service-article__inner > .service-content-panel {
        display: block;
        height: auto;
    }

    .service-content-panel {
        max-width: 100%;
        min-width: 0;
        overflow-wrap: anywhere;
    }

    .mortgage-risk-warning {
        overflow-wrap: anywhere;
        word-break: break-word;
    }
}

.landing-hero {
    background: linear-gradient(135deg, #f5f7f8 0%, #edf2f5 100%);
    padding: 58px 0 clamp(48px, 6vw, 72px);
    position: relative;
}

.hero-legal-notice {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(18, 48, 79, 0.08);
}

.hero-legal-notice__text {
    margin: 0;
    width: 100%;
    font-size: clamp(0.8125rem, 1.2vw, 0.9375rem);
    line-height: 1.7;
    font-weight: 500;
    color: #4a5568;
    text-align: left;
}

.hero-shell {
    padding-left: clamp(20px, 4vw, 72px);
    padding-right: clamp(20px, 4vw, 72px);
}

@media (max-width: 1199.98px) {
    /* Remove Bootstrap .px-4 from hero columns and fix shell to 20px so the
       hero content lines up with the service sections (both at 20px). */
    .landing-hero .hero-shell > .row > [class*="col-"] {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .landing-hero .hero-shell {
        padding-left: 20px;
        padding-right: 20px;
    }
}

.landing-title {
    font-size: 2.6rem;
    font-weight: 600;
}

.landing-text {
    color: #555;
}

.landing-img {
    height: 100%;
    object-fit: cover;
}

@media (max-width: 1199.98px) {
    .landing-img {
        height: auto;
        max-width: 100%;
    }
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

    .logo-img:hover {
        transform: scale(1.05);
    }

.brand-text {
    font-size: 20px;
    color: var(--secondary);
    transition: color 0.3s ease;
}

    .brand-text:hover {
        color: var(--primary);
    }

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

.beautiful-navbar {
    background: var(--bn-bg-light);
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    z-index: 1000;

}

.bn-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

    .bn-logo-img:hover {
        transform: scale(1.05);
    }

.bn-brand-text {
    font-size: 20px;
    font-weight: 600;
    color: var(--bn-secondary);
    transition: color 0.3s ease;
}

    .bn-brand-text:hover {
        color: var(--bn-primary);
    }

.bn-navlink {
    position: relative;
    color: var(--bn-secondary) !important;
    font-weight: 500;
    padding: 8px 12px;
    margin: 0 6px;
    transition: all 0.3s ease;
}

    .bn-navlink::after {
        content: "";
        position: absolute;
        width: 0%;
        height: 3px;
        bottom: 0;
        left: 0;
        background: linear-gradient(to right, #b3c2bd, #5a7a74);
        transition: width 0.3s ease;
    }

    .bn-navlink:hover::after {
        width: 100%;
    }

    .bn-navlink:hover {
        color: var(--bn-primary);
        transform: scale(1.05);
    }

    .bn-navlink.active {
        font-weight: 600;
        color: var(--bn-primary) !important;
    }

.bn-btn-contact {
    background: var(--bn-primary);
    color: #fff;
    padding: 8px 22px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0,0,0,0.12);
    display: inline-block;
}

    .bn-btn-contact:hover {
        background: var(--bn-primary-dark);
        transform: translateY(-2px) scale(1.05);
        box-shadow: 0 6px 12px rgba(0,0,0,0.2);
    }

@media (max-width: 991px) {
    #bnNavbar {
        background: var(--bn-bg-light);
        padding: 20px;
        border-radius: 12px;
        margin-top: 10px;
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }

    .bn-navlink {
        font-size: 18px;
        margin: 10px 0;
    }
}

.bn-toggler-icon {
    display: inline-block;
    width: 25px;
    height: 2px;
    background-color: var(--bn-secondary);
    position: relative;
    transition: all 0.3s ease;
}

    .bn-toggler-icon::before,
    .bn-toggler-icon::after {
        content: "";
        position: absolute;
        width: 25px;
        height: 2px;
        background-color: var(--bn-secondary);
        transition: all 0.3s ease;
    }

    .bn-toggler-icon::before {
        top: -8px;
    }

    .bn-toggler-icon::after {
        top: 8px;
    }

html {
    scroll-behavior: smooth;
}

:root {
  --nav-color: #133453;
  --nav-accent: #5a7a74;
  --btn-radius: 50px;
}

.logo-img {
  height: 60px;
  width: auto;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.05);
}

.nav-link.nav-hover {
  color: var(--nav-color) !important;
  font-weight: 500;
  position: relative;
  padding: 8px 12px;
  transition: all 0.3s ease;
}

.nav-link.nav-hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background-color: var(--nav-color);
  transition: width 0.4s cubic-bezier(0.25,1,0.5,1);
}

.nav-link.nav-hover:hover::after {
  width: 100%;
}

.nav-link.nav-hover:hover {
  transform: scale(1.05);
}

.nav-link.nav-hover.active {
  font-weight: 600;
  color: var(--nav-color) !important;
}

.btn-contact {
  background-color: var(--nav-color);
  color: #fff;
  padding: 8px 25px;
  font-weight: 600;
  border-radius: var(--btn-radius);
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.btn-contact:hover {
  background-color: var(--nav-accent);
  transform: translateY(-2px) scale(1.05);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

@media (max-width: 991px) {
  .nav-custom-list {
    text-align: center;
    padding-left: 0;
  }

  .nav-link.nav-hover {
    margin: 4px 0;
    font-size: 16px;
    padding: 8px 12px;
  }

  .btn-contact {
    margin-top: 8px;
  }

  .navbar-brand img {
    width: 130px !important;
    height: auto;
  }

  .navbar-collapse {
    padding: 14px 16px;
    margin-top: 6px;
    max-height: calc(100vh - 80px);
    overflow-y: auto;
  }
}

@media (max-width: 575.98px) {
  .navbar-brand img {
    width: 110px !important;
  }

  .nav-link.nav-hover {
    margin: 2px 0;
    font-size: 15px;
  }
}

.navbar.sticky-top {
  transition: box-shadow 0.25s ease, background-color 0.25s ease;
}

.navbar.sticky-top.is-scrolled {
  background-color: rgba(255, 255, 255, 0.97);
  box-shadow: 0 6px 18px rgba(11, 34, 66, 0.10);
  -webkit-backdrop-filter: saturate(160%) blur(8px);
          backdrop-filter: saturate(160%) blur(8px);
}

.custom-toggler {
  display: block;
  position: relative;
  width: 26px;
  height: 2px;
  margin: 0;
  background-color: var(--nav-color);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.custom-toggler::before,
.custom-toggler::after {
  content: "";
  position: absolute;
  width: 26px;
  height: 2px;
  left: 0;
  background-color: var(--nav-color);
  transform-origin: center;
  transition: top 0.3s ease, transform 0.3s ease;
}

.custom-toggler::before {
  top: -8px;
}

.custom-toggler::after {
  top: 8px;
}

@media (max-width: 991.98px) {
  .navbar .navbar-toggler {
    border: none !important;
    padding: 0.65rem 0.75rem !important;
    border-radius: 0.375rem !important;
    line-height: 1;
    overflow: visible;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    background-color: transparent !important;
  }

  .navbar .navbar-toggler:focus,
  .navbar .navbar-toggler:focus-visible {
    box-shadow: none !important;
  }
}

.navbar-toggler.collapsed .custom-toggler {
  background-color: var(--nav-color);
}

.navbar-toggler.collapsed .custom-toggler::before,
.navbar-toggler.collapsed .custom-toggler::after {
  transform: none;
}

.navbar-toggler:not(.collapsed) .custom-toggler {
  background-color: transparent;
}

.navbar-toggler:not(.collapsed) .custom-toggler::before {
  top: 0;
  transform: rotate(45deg);
}

.navbar-toggler:not(.collapsed) .custom-toggler::after {
  top: 0;
  transform: rotate(-45deg);
}

body, html {
  overflow-x: hidden;
  overflow-x: clip;
}

html {
  scroll-behavior: smooth;
}
.social-inline {
    gap: 16px;
}

.social-icon {
    font-size: 20px;
    color: #133453;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

    .social-icon:hover {
        color: #5a7a74;
        transform: scale(1.2);
    }

@media (max-width: 768px) {
    .social-inline {
        justify-content: center;
        gap: 20px;
    }

    .social-icon {
        font-size: 22px;
    }
}

.hero-shell {
    position: relative;
}

.hero-overlay-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    pointer-events: none;
}

.hero-overlay-img {
    width: 120px;
      opacity: 0.15;
}

    .landing-hero > .container-fluid {
    position: relative;
    z-index: 1;
}
.hero-bg-brand {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

    .hero-bg-brand::before {
        content: "";
        position: absolute;
        inset: 0;
        background-image: url('/Content/images/Logo.png');
        background-repeat: no-repeat;
        background-position: left;
        background-size: 70%;
        opacity: 0.50 !important;
        z-index: 1;
    }

.hero-inner-content {
    position: relative;
    z-index: 2;
    max-width: 2200px;
}
.hero-animate {
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeUp 1s ease forwards;
}

.hero-animate-delay {
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeUp 1s ease forwards;
    animation-delay: 0.3s;
}

.hero-animate-delay-2 {
    opacity: 0;
    transform: translateY(30px);
    animation: heroFadeUp 1s ease forwards;
    animation-delay: 0.6s;
}

@keyframes heroFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.btn-dark {
    transition: all 0.3s ease;
}

    .btn-dark:hover {
        transform: translateY(-2px);
    }

@media (max-width: 992px) {
    .hero-fixed::before {
        background-size: 60%;
        background-position: center;
        opacity: 0.06;
    }
}

@media (max-width: 576px) {
    .hero-fixed::before {
        background-size: 80% !important;
        opacity: 0.50;
    }
}

.page-section {
    scroll-margin-top: 180px !important;
}

.landing-title {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #0a1f44;

    letter-spacing: 0.5px;
    transition: all 0.5s ease;
}

@media (max-width: 768px) {
    .landing-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
}

.hero-bg-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.60;
    z-index: 1;
    pointer-events: none;
    width: 60%;
    animation: floatRotate 25s ease-in-out infinite alternate;
}

@keyframes floatRotate {
    0% {
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
        opacity: 0.08;
    }
    25% {
        transform: translate(-50%, -50%) scale(1.02) rotate(2deg);
        opacity: 0.12;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05) rotate(-1deg);
        opacity: 0.1;
    }
    75% {
        transform: translate(-50%, -50%) scale(1.03) rotate(1deg);
        opacity: 0.11;
    }
    100% {
        transform: translate(-50%, -50%) scale(1) rotate(0deg);
        opacity: 0.08;
    }
}

.hero-inner-content {
    position: relative;
    z-index: 2;
}

.hero-copy-stack {
    max-width: 640px;
    margin-inline: auto;
    display: grid;
    gap: 16px;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(18, 48, 79, 0.09);
    border-radius: 22px;
    padding: 28px 24px;
    backdrop-filter: blur(2px);
    box-shadow: 0 20px 36px rgba(11, 34, 66, 0.09);
}

.hero-copy-stack--match-media {
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    align-self: stretch;
    box-sizing: border-box;
}

@media (max-width: 1199.98px) {
    .landing-hero .hero-shell > .row {
        align-items: flex-start !important;
    }

    .hero-copy-stack--match-media {
        height: auto;
        min-height: 0;
        justify-content: flex-start;
        gap: 14px;
        padding: 22px 16px;
    }

    .hero-copy-stack--match-media .landing-title {
        font-size: clamp(1.45rem, 6.2vw, 1.85rem);
        line-height: 1.22;
        overflow-wrap: anywhere;
    }

    .hero-copy-stack--match-media .landing-promise {
        font-size: 1.05rem;
        line-height: 1.4;
    }

    .hero-copy-stack--match-media .landing-text {
        font-size: 0.95rem;
        line-height: 1.55;
    }

    .hero-copy-stack--match-media .hero-eyebrow {
        max-width: 100%;
        white-space: normal;
        line-height: 1.35;
        text-align: left;
    }

    .hero-copy-stack--match-media .hero-trust-strip {
        margin-top: 4px;
        padding-top: 14px;
    }

    .hero-copy-stack--match-media .mortgage-risk-disclosure--hero {
        margin-top: 4px;
        padding-top: 12px;
    }

    .hero-copy-stack--match-media .mortgage-risk-warning {
        overflow-wrap: anywhere;
        word-break: break-word;
    }
}

@media (min-width: 1200px) {
    .landing-hero .hero-shell > .row > .col-xl-7,
    .landing-hero .hero-shell > .row > .col-xl-5 {
        display: flex;
        align-items: stretch;
    }

    .hero-image-shell {
        flex: 1;
        width: 100%;
        min-height: 100%;
    }

    .landing-img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }

    .hero-copy-stack--match-media {
        gap: 0;
        padding: 26px 24px;
        justify-content: space-between;
        height: 100%;
        min-height: 100%;
    }

    .hero-copy-stack--match-media .landing-title {
        font-size: clamp(1.65rem, 2vw, 2.15rem);
        line-height: 1.2;
    }

    .hero-copy-stack--match-media .landing-promise {
        margin-top: 0;
        font-size: 1.12rem;
        line-height: 1.4;
    }

    .hero-copy-stack--match-media .landing-text {
        font-size: 0.98rem;
        line-height: 1.55;
    }

    .hero-copy-stack--match-media .hero-eyebrow {
        padding: 5px 10px;
        font-size: 0.72rem;
    }

    .hero-copy-stack--match-media .hero-cta-group {
        gap: 10px;
        margin-top: 4px;
    }

    .hero-copy-stack--match-media .hero-primary-cta.btn,
    .hero-copy-stack--match-media .hero-secondary-cta {
        min-height: 50px;
        padding: 12px 16px !important;
        font-size: 0.92rem !important;
    }

    .hero-copy-stack--match-media .hero-reassurance {
        font-size: 0.88rem;
        margin-top: 0;
    }

    .hero-copy-stack--match-media .hero-trust-strip {
        margin-top: 8px;
        padding-top: 14px;
        gap: 10px;
    }

    .hero-copy-stack--match-media .hero-trust-strip__icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }

    .hero-copy-stack--match-media .hero-trust-strip__label {
        font-size: 0.74rem;
    }

    .hero-copy-stack--match-media .mortgage-risk-disclosure--hero {
        margin-top: 8px;
        padding-top: 12px;
    }

    .hero-copy-stack--match-media .mortgage-risk-warning {
        padding: 12px 14px;
        font-size: 0.72rem;
        line-height: 1.45;
        letter-spacing: 0.025em;
    }

    .hero-copy-stack--match-media .hero-legal-notice {
        margin-top: 0.75rem;
        padding-top: 0.75rem;
    }

    .hero-copy-stack--match-media .hero-legal-notice__text {
        font-size: 0.72rem;
        line-height: 1.6;
    }
}

.hero-trust-strip {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid rgba(18, 48, 79, 0.08);
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.hero-trust-strip__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    padding: 4px 2px;
}

.hero-trust-strip__icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(19, 52, 83, 0.07);
    color: var(--secondary);
    font-size: 1.05rem;
    transition: transform 0.25s ease, background 0.25s ease;
}

.hero-trust-strip__item:hover .hero-trust-strip__icon {
    background: rgba(19, 52, 83, 0.12);
    transform: translateY(-2px);
}

.hero-trust-strip__label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--secondary);
    line-height: 1.25;
    letter-spacing: 0.1px;
}

.hero-eyebrow {
    width: fit-content;
    margin: 0;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(15, 76, 92, 0.1);
    color: #0f4c5c;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.6px;
    text-transform: uppercase;
}

.hero-copy-stack .landing-title {
    margin-bottom: 0;
    font-size: clamp(1.75rem, 2.4vw, 2.35rem);
    line-height: 1.2;
    color: #0b2242;
    letter-spacing: 0.2px;
}

.hero-copy-stack .landing-text {
    margin-bottom: 0;
    font-size: 1.02rem;
    line-height: 1.6;
    color: #314357;
}

.hero-copy-stack .landing-promise {
    margin: 4px 0 0;
    font-size: clamp(1.1rem, 1.35vw, 1.35rem);
    line-height: 1.4;
    font-weight: 600;
    color: var(--secondary);
    letter-spacing: 0.1px;
}

.hero-cta-group {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    gap: 12px;
}

.hero-cta-group--single {
    display: flex;
    grid-template-columns: 1fr;
}

.hero-cta-phone {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.45em;
    width: 100%;
    min-height: 56px;
    padding: 14px 24px;
    border-radius: 12px;
    border: 1px solid rgba(11, 34, 66, 0.12);
    background: var(--primary);
    color: #0b2242;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    box-shadow: 0 8px 16px rgba(11, 34, 66, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.hero-cta-phone i {
    font-size: 1.05rem;
    line-height: 1;
}

.hero-cta-phone strong {
    font-weight: 700;
}

.hero-cta-phone:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 12px 20px rgba(11, 34, 66, 0.16);
}

.hero-cta-phone:focus-visible {
    outline: 2px solid #0f4c5c;
    outline-offset: 2px;
}

.hero-primary-cta.btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 0;
    min-height: 56px;
    padding: 14px 18px !important;
    border-radius: 12px;
    background: var(--primary) !important;
    border: 1px solid rgba(11, 34, 66, 0.12);
    color: #0b2242 !important;
    font-weight: 600;
    font-size: 1rem !important;
    text-decoration: none;
    text-align: center;
    line-height: 1 !important;
    --bs-btn-line-height: 1;
    box-sizing: border-box;
    vertical-align: middle;
    box-shadow: 0 8px 16px rgba(11, 34, 66, 0.14);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.hero-primary-cta.btn i {
    font-size: 1.05rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.05rem;
    height: 1.05rem;
    margin: 0 !important;
    padding: 0 !important;
    flex-shrink: 0;
}

.hero-primary-cta.btn i::before {
    display: block;
    line-height: 1;
    transform: translateY(2px);
}

.hero-primary-cta.btn span {
    display: inline-flex;
    align-items: center;
    line-height: 1;
    margin: 0 !important;
    padding: 0 !important;
}

.hero-primary-cta__label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    line-height: 1;
}

.hero-primary-cta__label > span {
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

.hero-primary-cta.btn:hover {
    background: var(--primary-dark) !important;
    color: #fff !important;
    transform: translateY(-1px);
    box-shadow: 0 12px 20px rgba(11, 34, 66, 0.2);
}

.hero-primary-cta.btn:active {
    transform: translateY(0);
    box-shadow: 0 5px 10px rgba(11, 34, 66, 0.18);
}

.hero-primary-cta.btn:focus-visible {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

.hero-reassurance {
    font-size: 0.93rem;
    color: #4f5f72;
    margin-top: -2px;
}

.mortgage-risk-disclosure--after-team {
    margin: 0 !important;
}

.team-risk-row {
    margin-top: 1rem !important;
    margin-bottom: 1rem !important;
}

#about_us {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

.about-section.py-5 {
    padding-bottom: 0 !important;
}

.contact-cta-section {
    padding-top: 0 !important;
    padding-bottom: clamp(40px, 5vw, 56px);
    background: var(--clr-secondary);
}

.contact-cta-card .mortgage-risk-disclosure {
    margin-top: 0;
}

.contact-cta-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1.5rem;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    padding: clamp(28px, 3.5vw, 40px) clamp(24px, 3.5vw, 36px);
    text-align: left;
    background: #fff;
    border-radius: 20px;
    border: 1px solid rgba(11, 34, 66, 0.08);
    box-shadow: 0 15px 40px rgba(11, 34, 66, 0.06);
    box-sizing: border-box;
}

.contact-cta-card__copy {
    display: grid;
    gap: 0.75rem;
    min-width: 0;
}

.contact-cta-card__title {
    margin: 0;
    font-size: clamp(1.35rem, 2.2vw, 1.85rem);
    line-height: 1.25;
    color: #0b2242;
    font-weight: 700;
    letter-spacing: 0.01em;
}

.contact-cta-card__lead {
    margin: 0;
    max-width: 56ch;
    font-size: 1.02rem;
    line-height: 1.65;
    color: #314357;
    font-weight: 500;
}

.contact-cta-card__note {
    margin: 0.25rem 0 0;
    font-size: 0.93rem;
    line-height: 1.5;
    color: #4f5f72;
}

.contact-cta-card__action {
    --contact-cta-font-size: 0.875rem;
    --contact-cta-line-height: 1.35;
    --contact-cta-label-weight: 600;
    --contact-cta-value-weight: 700;
    flex-shrink: 0;
    display: grid;
    gap: 12px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
}

.contact-cta-card__phone,
.contact-cta-card__email {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    min-height: 56px;
    padding: 10px 14px 10px 12px;
    border-radius: 12px;
    border: 1px solid rgba(11, 34, 66, 0.14);
    background: var(--primary);
    color: #0b2242;
    font-size: var(--contact-cta-font-size);
    font-weight: var(--contact-cta-label-weight);
    line-height: var(--contact-cta-line-height);
    text-decoration: none;
    box-sizing: border-box;
    box-shadow: 0 8px 18px rgba(11, 34, 66, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.contact-cta-card__email {
    cursor: pointer;
}

.contact-cta-card__phone {
    cursor: default;
}

.contact-cta-card__phone-icon,
.contact-cta-card__email-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(11, 34, 66, 0.1);
    color: #0b2242;
    font-size: 1.1rem;
    line-height: 1;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.contact-cta-card__phone-icon i,
.contact-cta-card__email-icon i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.contact-cta-card__phone-icon i::before,
.contact-cta-card__email-icon i::before {
    display: block;
    line-height: 1;
}

.contact-cta-card__phone-text,
.contact-cta-card__email-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex: 1;
    min-width: 0;
    gap: 0.15rem;
    text-align: left;
}

.contact-cta-card__phone-text strong,
.contact-cta-card__email-text strong {
    font-size: inherit;
    line-height: inherit;
    font-weight: var(--contact-cta-value-weight);
    letter-spacing: 0;
    max-width: 100%;
}

.contact-cta-card__email-text strong {
    overflow-wrap: anywhere;
}

.contact-cta-card__email:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 12px 22px rgba(11, 34, 66, 0.18);
}

.contact-cta-card__email:hover .contact-cta-card__email-icon {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.contact-cta-card__email:focus-visible {
    outline: 2px solid #0f4c5c;
    outline-offset: 2px;
}

@media (min-width: 576px) {
    .contact-cta-card__phone-text,
    .contact-cta-card__email-text {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        gap: 0.4em;
    }
}

@media (min-width: 992px) {
    .contact-cta-card {
        display: grid;
        grid-template-columns: 1fr minmax(280px, 360px);
        align-items: center;
        gap: 1.25rem 2.5rem;
        padding: clamp(32px, 3vw, 44px) clamp(32px, 3.5vw, 44px);
    }

    .contact-cta-card__action {
        width: auto;
        min-width: 0;
    }

    .contact-cta-card__phone {
        white-space: nowrap;
    }

    .contact-cta-card .mortgage-risk-disclosure {
        grid-column: 1 / -1;
    }
}

@media (max-width: 575.98px) {
    .contact-cta-section .container {
        padding-inline: 12px;
    }

    .contact-cta-card {
        padding: 20px 14px;
        text-align: left;
    }

    .contact-cta-card__lead {
        margin-inline: 0;
        max-width: none;
    }

    .contact-cta-card__phone,
    .contact-cta-card__email {
        padding: 10px 12px;
        gap: 10px;
        --contact-cta-font-size: 0.8125rem;
    }

    .contact-cta-card__email-text strong {
        white-space: nowrap;
        overflow-wrap: normal;
    }

    .contact-cta-card__phone-icon,
    .contact-cta-card__email-icon {
        width: 36px;
        height: 36px;
        font-size: 1rem;
    }
}

@media (max-width: 390px) {
    .contact-cta-card__phone,
    .contact-cta-card__email {
        --contact-cta-font-size: 0.75rem;
        --contact-cta-line-height: 1.4;
        padding: 10px 10px;
        gap: 7px;
    }

    .contact-cta-card__phone-text,
    .contact-cta-card__email-text {
        gap: 0.2rem;
    }

    .contact-cta-card__phone-icon,
    .contact-cta-card__email-icon {
        width: 30px;
        height: 30px;
        font-size: 0.9rem;
    }
}

.hero-secondary-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-width: 0;
    min-height: 56px;
    padding: 14px 18px;
    border-radius: 12px;
    border: 1px solid rgba(11, 34, 66, 0.2);
    background: #fff;
    color: #0b2242;
    font-size: 0.94rem;
    line-height: 1.2;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    cursor: default;
    box-shadow: 0 8px 16px rgba(11, 34, 66, 0.09);
}

.hero-secondary-cta:hover {
    color: #0b2242;
    border-color: rgba(11, 34, 66, 0.2);
    transform: none;
    box-shadow: 0 8px 16px rgba(11, 34, 66, 0.09);
}

.hero-image-shell {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
    box-shadow: 0 22px 38px rgba(11, 34, 66, 0.2);
    border: 1px solid rgba(255,255,255,0.35);
}

.hero-image-shell::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(11, 34, 66, 0.16), transparent 42%);
    pointer-events: none;
}

.hero-image-badge {
    position: absolute;
    left: 18px;
    bottom: 18px;
    background: rgba(11, 34, 66, 0.82);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 8px 12px;
    border-radius: 999px;
    z-index: 2;
}

@media (max-width: 768px) {
    .hero-copy-stack {
        gap: 12px;
        padding: 22px 16px;
        border-radius: 16px;
        max-width: 100%;
        min-width: 0;
    }

    .hero-primary-cta,
    .hero-secondary-cta,
    .hero-cta-phone {
        width: 100%;
        text-align: center;
    }

    .hero-primary-cta,
    .hero-secondary-cta,
    .hero-cta-phone {
        min-height: 50px;
    }

    .hero-primary-cta {
        min-width: unset;
        height: 50px;
        padding: 0 18px !important;
    }

    .hero-secondary-cta {
        font-size: 0.88rem;
        line-height: 1.3;
        padding: 12px 14px;
        white-space: normal;
    }

    .hero-cta-group {
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        width: 100%;
    }

    .hero-image-shell {
        margin: 0 0 12px;
        border-radius: 16px;
        width: 100%;
    }

    .hero-image-badge {
        left: 12px;
        right: 12px;
        bottom: 12px;
        text-align: center;
        font-size: 0.75rem;
        padding: 7px 10px;
    }

    .hero-trust-strip__label {
        overflow-wrap: anywhere;
    }
}

@media (max-width: 575.98px) {
    .hero-trust-strip {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .hero-trust-strip__item {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        gap: 10px;
        padding: 2px 0;
    }

    .hero-trust-strip__label {
        font-size: 0.82rem;
    }

    .hero-eyebrow {
        font-size: 0.68rem;
        letter-spacing: 0.4px;
        padding: 5px 10px;
    }
}

.service-cta-strip {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 16px 0 8px;
    margin: 12px 0 4px;
    color: inherit;
    box-shadow: none;
}

.service-cta-inner {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
    flex-wrap: wrap;
}

.service-cta-strip .service-cta-primary {
    min-width: 220px;
    height: 48px;
    padding: 0 18px !important;
    font-size: 0.95rem;
}

.service-cta-strip .service-cta-primary span {
    font-size: 0.95rem;
}

.service-cta-strip .service-cta-secondary {
    min-height: 48px;
    padding: 0 18px;
}

.contact-cta-stack {
    display: grid;
    gap: 10px;
}

.contact-cta-stack .hero-secondary-cta {
    justify-self: start;
}

@media (max-width: 768px) {
    .service-cta-inner {
        flex-direction: column;
        gap: 10px;
    }

    .contact-cta-stack .hero-secondary-cta {
        justify-self: center;
    }
}

.pro-subheading {
    font-size: 1.05rem;
    margin-top: 18px;
    margin-bottom: 10px;
}

#protection.protection-proposal-section .protection-proposal-columns {
    min-height: auto;
    max-width: 100%;
}

#protection.protection-proposal-section .service-article__body {
    min-width: 0;
}

#protection.protection-proposal-section .service-article__inner,
#protection.protection-proposal-section .service-content-panel--protection {
    min-width: 0;
    max-width: 100%;
}

.protection-proposal {
    max-width: 1080px;
    margin-inline: auto;
}

.protection-proposal-body {
    margin-top: 0.35rem;
}

.protection-proposal-section .protection-proposal-image {
    max-width: 520px;
    height: clamp(220px, 36vw, 360px);
}

.protection-proposal-header {
    text-align: center;

    margin-bottom: 1.5rem;
}

.protection-proposal-header h2,
.protection-proposal-header .service-content-panel__title {
    font-weight: 700;
    font-size: clamp(1.65rem, 3vw, 2.05rem);
    margin-bottom: 0;
    color: #0b2242;
}

@media (min-width: 992px) {
    .protection-proposal-header {
        text-align: left;
    }
}

.protection-proposal-tagline {
    color: #314357;
    font-weight: 500;
    margin-bottom: 0.5rem !important;
}

.protection-proposal-intro {
    font-size: 1rem;
    line-height: 1.65;
    color: #2c4358;
    margin-bottom: 0;
    max-width: 52rem;
    margin-inline: auto;
}

@media (min-width: 992px) {
    .protection-proposal-intro {
        margin-inline: 0;
    }
}

.protection-pillar {
    background: #fff;
    border: 1px solid rgba(20, 52, 83, 0.1);
    border-top: 3px solid rgba(47, 111, 102, 0.45);
    border-radius: 18px;
    padding: 1rem 1.05rem 1.1rem;
    box-shadow: 0 10px 28px rgba(14, 39, 62, 0.07);
    height: 100%;
}

.protection-pillar-title {
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.02em;
    color: #0b2242;
    margin: 0 0 0.65rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(18, 48, 79, 0.12);
    display: flex;
    align-items: center;
    gap: 0.45rem;
}

.protection-pillar-title__icon {
    font-size: 1.1rem;
    color: #2f6f66;
    opacity: 0.92;
}

.protection-pillar-list li {
    margin-bottom: 0.4rem;
    font-size: 0.92rem;
    line-height: 1.45;
    color: #1f3a52;
}

.protection-pillar-list--icons li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.protection-pillar__check {
    flex-shrink: 0;
    margin-top: 0.12rem;
    font-size: 1.05rem;
    color: #2f6f66;
}

.protection-pillar-list li:last-child {
    margin-bottom: 0;
}

.protection-pillar-list--split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.4rem 0;
}

@media (min-width: 576px) {
    .protection-pillar--wide .protection-pillar-list--split {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 0.45rem 1.5rem;
        align-items: start;
    }

    .protection-pillar--wide .protection-pillar-list--split li {
        min-width: 0;
    }
}

@media (max-width: 991.98px) {
    #protection.protection-proposal-section .service-article__inner {
        padding: 1rem 0;
    }

    #protection.protection-proposal-section .service-content-panel--protection {
        padding: 1rem 1rem 1.05rem;
        border-radius: 16px;
    }

    #protection .protection-proposal-header {
        margin-bottom: 1rem;
    }

    #protection .protection-proposal-intro {
        max-width: none;
        margin-inline: 0;
    }

    #protection .protection-proposal-columns {
        --bs-gutter-x: 0;
        --bs-gutter-y: 0.75rem;
        width: 100%;
        max-width: 100%;
        margin-inline: 0;
    }

    #protection .protection-proposal-columns > [class*="col-"] {
        padding-inline: 0;
        max-width: 100%;
    }

    #protection .protection-pillar {
        width: 100%;
        box-sizing: border-box;
        background: linear-gradient(180deg, #f8fafb 0%, #f2f6f8 100%);
        border: 1px solid rgba(20, 52, 83, 0.12);
        border-top: 3px solid rgba(47, 111, 102, 0.45);
        border-radius: 16px;
        padding: 1.15rem 1.2rem 1.25rem;
        box-shadow: 0 6px 20px rgba(11, 34, 66, 0.06);
    }

    #protection .service-article__media--protection {
        min-height: 240px;
    }
}

@media (max-width: 768px) {
    .protection-proposal-header h2,
    .protection-proposal-header .service-content-panel__title {
        font-size: 1.55rem;
    }

    .service-content-panel__head {
        flex-direction: column;
        align-items: flex-start;
    }

    #protection .service-content-panel__head {
        align-items: center;
    }

    .service-content-panel__icon {
        width: 3rem;
        height: 3rem;
        font-size: 1.4rem;
    }

    .protection-proposal-tagline {
        font-size: 1.05rem;
    }
}

.why-choose-intro {
    margin-bottom: 1.25rem;
}

.why-choose-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.why-choose-card {
    background: #fff;
    border: 1px solid rgba(18, 48, 79, 0.12);
    border-radius: 18px;
    border-top: 3px solid rgba(47, 111, 102, 0.55);
    padding: 1.3rem 1.35rem 1.35rem;
    box-shadow: 0 10px 28px rgba(11, 34, 66, 0.07);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.why-choose-card h4 {
    margin: 0 0 0.65rem;
    font-size: 1.06rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    line-height: 1.3;
    color: #0b2242;
}

.why-choose-card p {
    margin-bottom: 0;
    font-size: 1.03rem;
    font-weight: 500;
    line-height: 1.65;
    color: #2a3d52;
}

@media (hover: hover) {
    .why-choose-card:hover {
        transform: translateY(-2px);
        box-shadow: 0 16px 34px rgba(11, 34, 66, 0.1);
    }
}

.why-choose-logo-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    min-height: 260px;
}

.why-choose-logo {
    max-width: min(360px, 100%);
    opacity: 0.95;
}

@media (max-width: 768px) {
    .why-choose-grid {
        grid-template-columns: 1fr;
    }

    .why-choose-logo-wrap {
        min-height: auto;
        padding: 0.5rem 0 0;
    }
}
@property --logo-scroll {
    syntax: "<length>";
    inherits: true;
    initial-value: 0px;
}

#logo-hero {
    --tile: clamp(185px, 62vw, 465px);
    animation: logoHeroScroll 7s linear infinite;
    position: relative;
    background: #eef1f3;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: clamp(36px, 7vw, 110px) 0;
    overflow: hidden;
}

.logo-hero__title {
    position: relative;
    z-index: 1;
    width: 100%;
    margin: 0;
    height: 100%;
    font-family: 'Anton', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    text-align: center;
    line-height: 0.92;
    letter-spacing: 0.01em;
    font-size: clamp(2.4rem, 11.5vw, 10rem);
    color: #0b2242;
    background-color: #73797f;
    background-image: url('/Content/images/Logo-strip.png');
    background-repeat: repeat-x;
    background-size: var(--tile) auto;
    background-position: var(--logo-scroll) center;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
    .logo-hero__title {
        color: transparent;
        -webkit-text-fill-color: transparent;
        -webkit-background-clip: text;
        background-clip: text;
    }
}

@keyframes logoHeroScroll {
    from { --logo-scroll: 0px; }
    to { --logo-scroll: calc(-1 * var(--tile)); }
}

@media (max-width: 575.98px) {
    #logo-hero {
        --tile: clamp(130px, 45vw, 200px);
    }
}
