/********** Template CSS **********/
:root {
    --primary: #138075;
    --secondary: #C9A227;
    --light: #F6F8F7;
    --dark: #0A2E2A;
    --site-font-heading: 'Montserrat', sans-serif;
    --site-font-body: 'Open Sans', sans-serif;
    --site-text: #4a5568;
    --site-text-muted: #64748b;
    --site-fs-body: 1rem;
    --site-fs-lead: 1.125rem;
    --site-line-body: 1.7;
    --index-primary: var(--primary);
    --index-secondary: var(--secondary);
    --index-dark: var(--dark);
    --index-light: var(--light);
}


.back-to-top {
    position: fixed;
    display: none;
    right: 45px;
    bottom: 45px;
    z-index: 99;
}


/*** Heading ***/
h1,
h2,
.fw-bold {
    font-weight: 700 !important;
}

h3,
h4,
.fw-semi-bold {
    font-weight: 600 !important;
}

h5,
h6,
.fw-medium {
    font-weight: 500 !important;
}


/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
    border-radius: 50px;
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f067";
    font-family: "Font Awesome 5 Free";
    font-size: 10px;
    font-weight: bold;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar-light .navbar-nav .nav-link {
    position: relative;
    margin-right: 25px;
    padding: 35px 0;
    font-family: 'Jost', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: var(--light) !important;
    outline: none;
    transition: .5s;
}

.sticky-top.navbar-light .navbar-nav .nav-link {
    padding: 20px 0;
    color: var(--light) !important;
}

.navbar-light .navbar-nav .nav-link:hover,
.navbar-light .navbar-nav .nav-link.active {
    color: var(--secondary) !important;
}

.navbar-light .navbar-brand h1 {
    color: #FFFFFF;
}

.navbar-light .navbar-brand img {
    max-height: 120px;
    transition: .5s;
}

/* KURRE header: compact logo (see kurre.css for full breakpoints) */
.k-nav-wrap .navbar-brand img {
    max-height: 36px;
    transition: none;
}

.sticky-top.navbar-light .navbar-brand img {
    max-height: 45px;
}

    .navbar-brand_somall_screens {
        display: none;
    }

    @media (max-width: 768px) {
        .navbar-brand {
            display: none !important;
        }
        .navbar-brand_somall_screens {
            display: inline-block !important;
        }
    }
    

@media (max-width: 991.98px) {
    .sticky-top.navbar-light {
        position: relative;
        background: #FFFFFF;
    }

    .navbar-light .navbar-collapse {
        margin-top: 15px;
        border-top: 1px solid #DDDDDD;
    }

    .navbar-light .navbar-nav .nav-link,
    .sticky-top.navbar-light .navbar-nav .nav-link {
        padding: 10px 0;
        margin-left: 0;
        color: var(--dark) !important;
    }

    .navbar-light .navbar-brand h1 {
        color: var(--primary);
    }

    .navbar-light .navbar-brand img {
        max-height: 45px;
    }
}

@media (min-width: 992px) {
    .navbar-light:not(.site-front-navbar) {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        border-bottom: 1px solid rgba(256, 256, 256, .1);
        z-index: 999;
    }

    .navbar-light.site-front-navbar {
        position: sticky !important;
    }
    
    .sticky-top.navbar-light {
        position: fixed;
        background: #04000B;
        color: #FFFFFF;
    }

    .sticky-top.navbar-light .navbar-brand h1 {
        color: var(--primary);
    }

    .navbar-light .navbar-nav .nav-item .dropdown-menu {
        display: block;
        border: none;
        margin-top: 0;
        top: 150%;
        opacity: 0;
        visibility: hidden;
        transition: .5s;
    }

    .navbar-light .navbar-nav .nav-item:hover .dropdown-menu {
        top: 100%;
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }

    .navbar-light .btn {
        color: var(--dark);
        background: #FFFFFF;
    }

    .sticky-top.navbar-light .btn {
        color: var(--dark);
        background: var(--secondary);
    }
}


/*** Hero Header ***/
.hero-header {
    margin-bottom: 2rem;
    padding: 12rem 0;
    background-position:
        left 0px top 0px,
        right 0px top 0px,
        left 0px bottom 0px,
        right 0px bottom 0px,
        center center,
        center bottom;
    background-repeat: no-repeat;
}

@media (max-width: 991.98px) {
    .hero-header {
        padding: 6rem 0 9rem 0;
    }
}


/*** Section Title ***/
.section-title {
    position: relative;
    display: flex;
    align-items: center;
    font-weight: 500;
    text-transform: uppercase;
}

.section-title span:first-child,
.section-title span:last-child {
    position: relative;
    display: inline-block;
    margin-right: 30px;
    width: 30px;
    height: 2px;
}

.section-title span:last-child {
    margin-right: 0;
    margin-left: 30px;
}

.section-title span:first-child::after,
.section-title span:last-child::after {
    position: absolute;
    content: "";
    width: 15px;
    height: 2px;
    top: 0;
    right: -20px;
}

.section-title span:last-child::after {
    right: auto;
    left: -20px;
}

.section-title.text-primary span:first-child,
.section-title.text-primary span:last-child,
.section-title.text-primary span:first-child::after,
.section-title.text-primary span:last-child::after {
    background: var(--primary);
}

.section-title.text-secondary span:first-child,
.section-title.text-secondary span:last-child,
.section-title.text-secondary span:first-child::after,
.section-title.text-secondary span:last-child::after {
    background: var(--secondary);
}

.section-title.text-white span:first-child,
.section-title.text-white span:last-child,
.section-title.text-white span:first-child::after,
.section-title.text-white span:last-child::after {
    background: #FFFFFF;
}


/*** Feature ***/
.feature-item {
    transition: .5s;
}

.feature-item:hover {
    margin-top: -15px;
}


/*** About ***/
.progress {
    height: 5px;
}

.progress .progress-bar {
    width: 0px;
    transition: 3s;
}


/*** Fact ***/
.fact {
    margin: 6rem 0;
    background:
        url(../img/blob-top-left.png),
        url(../img/blob-top-right.png),
        url(../img/blob-bottom-left.png),
        url(../img/blob-bottom-right.png),
        url(../img/blob-center.png);
    background-position:
        left 0px top 0px,
        right 0px top 0px,
        left 0px bottom 0px,
        right 0px bottom 0px,
        center center;
    background-repeat: no-repeat;
}


/*** Service ***/
.service-item {
    position: relative;
    padding: 45px 30px;
    background: var(--light);
    overflow: hidden;
    transition: .5s;
}

.service-item:hover {
    margin-top: -15px;
    padding-bottom: 60px;
    background: var(--primary);
}

.service-item .service-icon {
    margin: 0 auto 20px auto;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    background: url(../img/blob-primary.png) center center no-repeat;
    background-size: contain;
    transition: .5s;
}

.service-item:hover .service-icon {
    color: var(--dark);
    background: url(../img/blob-secondary.png) center center no-repeat;
    background-size: contain;
}

.service-item h5,
.service-item p {
    transition: .5s;
}

.service-item:hover h5,
.service-item:hover p {
    color: #FFFFFF;
}

.service-item a.btn {
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 40px 40px 0 0;
    transition: .5s;
    z-index: 1;
}

.service-item a.btn:hover {
    color: var(--dark);
    background: var(--secondary);
}

.service-item:hover a.btn {
    bottom: 0;
}


.carousel-item {
    padding: 10px 0;
}
.carousel-item .col-lg-6 {
    display: flex;
    justify-content: center;
}

/*** Project Portfolio ***/
#portfolio-flters li {
    display: inline-block;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    transition: .5s;
    border-bottom: 2px solid transparent;
}

#portfolio-flters li:hover,
#portfolio-flters li.active {
    color: var(--primary);
    border-color: var(--primary);
}

.portfolio-item img {
    transition: .5s;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-item .portfolio-overlay {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(173, 131, 15, 0.37);
    transition: .5s;
    opacity: 0;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}


/*** Newsletter ***/
.newsletter {
    margin: 6rem 0;
    background:
        url(../img/blob-top-left.png),
        url(../img/blob-top-right.png),
        url(../img/blob-bottom-left.png),
        url(../img/blob-bottom-right.png),
        url(../img/blob-center.png);
    background-position:
        left 0px top 0px,
        right 0px top 0px,
        left 0px bottom 0px,
        right 0px bottom 0px,
        center center;
    background-repeat: no-repeat;
}


/*** Testimonial ***/
.testimonial-carousel .testimonial-item {
    padding: 0 30px 30px 30px;
}

.testimonial-carousel .owl-nav {
    display: flex;
    justify-content: center;
}

.testimonial-carousel .owl-nav .owl-prev,
.testimonial-carousel .owl-nav .owl-next {
    margin: 0 12px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background: var(--light);
    border-radius: 60px;
    font-size: 22px;
    transition: .5s;
}

.testimonial-carousel .owl-nav .owl-prev:hover,
.testimonial-carousel .owl-nav .owl-next:hover {
    color: #FFFFFF;
    background: var(--primary);
    box-shadow: 0 0 10px rgba(0, 0, 0, .5);
}


/*** Team ***/
.team-item .btn {
    color: var(--primary);
    background: #FFFFFF;
}

.team-item .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Footer ***/
.footer {
    margin-top: 6rem;
    padding-top: 9rem;
    /* background:
        url(../img/bg-top.png),
        url(../img/map.png); */
    background-position:
        center top,
        center center;
    background-repeat: no-repeat;
}

.footer .btn.btn-social {
    margin-right: 5px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--light);
    border: 1px solid rgba(256, 256, 256, .1);
    border-radius: 40px;
    transition: .3s;
}

.footer .btn.btn-social:hover {
    color: var(--primary);
}

.footer .btn.btn-link {
    display: block;
    margin-bottom: 10px;
    padding: 0;
    text-align: left;
    color: var(--light);
    font-weight: normal;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    letter-spacing: 1px;
    box-shadow: none;
    color: var(--secondary);
}

.footer .copyright {
    padding: 25px 0;
    font-size: 14px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .footer-menu a {
    margin-right: 15px;
    padding-right: 15px;
    border-right: 1px solid rgba(255, 255, 255, .1);
}

.footer .footer-menu a:last-child {
    margin-right: 0;
    padding-right: 0;
    border-right: none;
}

.footer .copyright a:hover,
.footer .footer-menu a:hover {
    color: var(--secondary);
}


/*** Site header & hero (attractive nav + hero) ***/
.site-brand-logo {
    max-height: 52px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.sticky-top.navbar-light .site-brand-logo {
    max-height: 44px;
}

.site-brand-text {
    font-family: 'Jost', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

@media (max-width: 991.98px) {
    .site-brand-text {
        color: var(--primary);
    }
}

/* Full-width header + hero stack */
.site-header-hero {
    position: relative;
    background: linear-gradient(165deg, #030508 0%, #0c1828 38%, #050a12 100%);
}

.site-header-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 110% 70% at 50% -25%, rgba(0, 128, 128, 0.28), transparent 55%),
        radial-gradient(ellipse 45% 55% at 92% 18%, rgba(251, 165, 4, 0.14), transparent 50%),
        radial-gradient(ellipse 40% 45% at 8% 75%, rgba(0, 128, 128, 0.12), transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.site-header-hero > .navbar,
.site-header-hero > .site-front-navbar,
.site-header-hero .site-hero-fullbleed {
    position: relative;
    z-index: 1;
}

.site-header-hero .site-hero-fullbleed.hero-header.bg-dark {
    background: transparent !important;
    margin-bottom: 0 !important;
    padding-top: 2.5rem !important;
    padding-bottom: 3.5rem !important;
    min-height: min(88vh, 780px);
}

@media (min-width: 992px) {
    .site-header-hero .site-hero-fullbleed.hero-header.bg-dark {
        padding-top: 3rem !important;
        padding-bottom: 4rem !important;
        min-height: min(90vh, 820px);
    }
}

/* Hero text column: 80% of viewport width, centered */
.site-hero-inner {
    width: 100%;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    box-sizing: border-box;
}

@media (max-width: 991.98px) {
    .site-hero-inner {
        max-width: 100%;
        padding-left: 0.25rem;
        padding-right: 0.25rem;
    }
}

/* Sticky front navigation */
.site-front-navbar {
    position: sticky !important;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1050;
    transition: background 0.35s ease, box-shadow 0.35s ease, backdrop-filter 0.35s ease;
}

@media (min-width: 992px) {
    .site-front-navbar {
        background: rgba(3, 5, 8, 0.72) !important;
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }

    .site-front-navbar.site-front-navbar--scrolled {
        background: rgba(4, 0, 11, 0.94) !important;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
    }
}

@media (max-width: 991.98px) {
    .site-front-navbar {
        background: #fff !important;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .site-front-navbar.site-front-navbar--scrolled {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    }

    /* Client login / log out — full-width tap target below main links */
    .site-front-navbar-cta {
        border-top: 1px solid rgba(0, 0, 0, 0.08);
        padding-top: 0.75rem;
    }
}

/* Desktop: single horizontal bar (fixes layout when duplicate Bootstrap CSS or div-only nav broke flex) */
@media (min-width: 992px) {
    .site-front-navbar .container-fluid {
        display: flex;
        align-items: center;
        gap: clamp(1rem, 2.2vw, 2.5rem);
    }

    .site-front-navbar .navbar-brand {
        margin-right: clamp(1.1rem, 2.6vw, 2.8rem);
    }

    .site-front-navbar .navbar-collapse {
        display: flex !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        justify-content: space-between;
        flex: 1 1 auto;
        min-width: 0;
    }

    .site-front-navbar .navbar-collapse > .navbar-nav {
        flex-direction: row !important;
        flex-wrap: nowrap !important;
        align-items: center !important;
        flex: 0 1 auto;
        margin-left: auto !important;
        margin-right: auto !important;
        gap: clamp(0.2rem, 0.8vw, 0.85rem);
        padding-inline: clamp(1rem, 3.2vw, 3.4rem);
    }

    .site-front-navbar .navbar-nav .nav-link {
        white-space: nowrap;
        margin-right: 0;
        padding: 0.75rem 0.9rem;
        border-radius: 999px;
        font-size: 0.92rem;
        letter-spacing: 0.035em;
        font-weight: 600;
        transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
    }

    .site-front-navbar .navbar-nav .nav-link:hover,
    .site-front-navbar .navbar-nav .nav-link:focus-visible {
        background: rgba(255, 255, 255, 0.12);
        transform: translateY(-1px);
    }

    .site-front-navbar .site-front-navbar-cta {
        flex: 0 0 auto;
        width: auto !important;
        max-width: none;
        margin-left: clamp(0.9rem, 2.3vw, 2.2rem) !important;
        margin-top: 0 !important;
        padding-top: 0 !important;
        border-top: none !important;
    }

    .site-front-navbar .site-front-navbar-cta form {
        display: inline-block !important;
        width: auto !important;
    }
}

.site-hero-divider {
    width: 3rem;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), var(--primary));
    border-radius: 2px;
    margin-bottom: 1.25rem;
}

.site-hero-eyebrow {
    display: block;
    font-size: 0.72rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(251, 165, 4, 0.95);
    margin-bottom: 1rem;
    font-weight: 600;
    font-family: 'Jost', sans-serif;
}

.site-hero-title {
    font-family: 'Jost', sans-serif;
    font-size: clamp(1.85rem, 4.2vw, 3rem);
    line-height: 1.18;
    letter-spacing: -0.03em;
    font-weight: 700;
    max-width: 100%;
}

.site-hero-company {
    font-family: var(--site-font-body);
    font-size: var(--site-fs-lead);
    color: rgba(255, 255, 255, 0.65) !important;
    margin-bottom: 0;
}

.site-hero-lead {
    color: rgba(255, 255, 255, 0.76);
    font-size: 1.05rem;
    line-height: 1.65;
    max-width: 100%;
    margin-top: 1.35rem;
    margin-bottom: 1.75rem;
    font-family: 'Heebo', sans-serif;
}

.site-hero-actions .btn-outline-light {
    border-width: 2px;
    color: #fff;
}

.site-hero-actions .btn-outline-light:hover {
    background: #fff;
    color: var(--dark);
    border-color: #fff;
}

.index-about {
    position: relative;
    margin-top: -1px;
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.site-header-hero .hero-header h1.text-white:not(.site-hero-title) {
    font-family: 'Jost', sans-serif;
    font-size: clamp(1.75rem, 3.5vw, 2.55rem);
    line-height: 1.22;
    letter-spacing: -0.025em;
    font-weight: 700;
    max-width: 100%;
}

@media (min-width: 992px) {
    .site-header-hero .hero-header .text-lg-start h1.text-white:not(.site-hero-title) {
        margin-left: 0;
        margin-right: 0;
    }
}

/* Full-width layout root */
.site-root {
    max-width: 100%;
}

/*** Site footer (full width) ***/
.site-footer {
    position: relative;
    background: linear-gradient(180deg, #0a0e14 0%, #04060a 100%);
    overflow: hidden;
}

.site-footer-accent {
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--primary));
    opacity: 0.95;
}

.site-footer-main {
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.site-footer-logo {
    max-height: 52px;
    width: auto;
}

.site-footer-tagline {
    font-size: 0.95rem;
    line-height: 1.5;
    max-width: 22rem;
}

.site-footer-heading {
    color: rgba(255, 255, 255, 0.45);
    letter-spacing: 0.12em;
}

.site-footer-contact li {
    margin-bottom: 0.65rem;
    font-size: 0.95rem;
}

.site-footer-contact a {
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    transition: color 0.2s;
}

.site-footer-contact a:hover {
    color: var(--secondary);
}

.site-footer-links li {
    margin-bottom: 0.5rem;
}

.site-footer-links a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s, padding-left 0.2s;
    display: inline-block;
}

.site-footer-links a:hover {
    color: var(--secondary);
    padding-left: 4px;
}

.site-footer-social-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 1.1rem;
    transition: background 0.25s, border-color 0.25s, transform 0.2s;
}

.site-footer-social-btn:hover {
    background: var(--secondary);
    border-color: var(--secondary);
    color: var(--dark);
    transform: translateY(-2px);
}

.site-footer-bottom {
    background: rgba(0, 0, 0, 0.35);
}

.site-footer-inline-link {
    color: var(--secondary);
    text-decoration: none;
}

.site-footer-inline-link:hover {
    color: #fff;
    text-decoration: underline;
}


/*** Unified site typography (all public pages) ***/
body.site-body {
    font-family: var(--site-font-body);
    font-size: var(--site-fs-body);
    line-height: var(--site-line-body);
    color: var(--dark);
}

body.site-body h1,
body.site-body h2,
body.site-body h3,
body.site-body h4,
body.site-body h5,
body.site-body h6 {
    font-family: var(--site-font-heading);
}

/* Section kicker + titles (use on inner pages; index uses .index-* aliases below) */
.site-section-label,
.index-label {
    font-family: var(--site-font-heading);
    color: var(--secondary);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.5rem;
}

.site-section-title,
.index-heading {
    font-family: var(--site-font-heading);
    font-size: clamp(1.65rem, 3.5vw, 2.25rem);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--dark);
}

.site-page-title {
    font-family: var(--site-font-heading);
    font-size: clamp(1.75rem, 3.8vw, 2.35rem);
    font-weight: 700;
    line-height: 1.22;
    letter-spacing: -0.02em;
    color: var(--dark);
    text-align: center;
}

/* Inner page blocks on dark backgrounds (e.g. newsletter band on Why page) */
.site-page-title--start {
    text-align: left;
}
.site-page-title--on-dark {
    color: #fff !important;
    text-align: center;
}
.site-text--on-dark {
    color: rgba(255, 255, 255, 0.92) !important;
}

.site-subtitle {
    font-family: var(--site-font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    line-height: 1.35;
    color: var(--dark);
    margin-top: 1.25rem;
    margin-bottom: 0.5rem;
}

.site-text,
.index-text {
    font-family: var(--site-font-body);
    font-size: var(--site-fs-body);
    line-height: var(--site-line-body);
    color: var(--site-text);
}

.site-text-muted {
    color: var(--site-text-muted) !important;
}

.site-lead {
    font-family: var(--site-font-body);
    font-size: var(--site-fs-lead);
    line-height: 1.65;
    color: var(--site-text);
    max-width: 48rem;
    margin-left: auto;
    margin-right: auto;
}

.site-link {
    color: var(--primary);
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color 0.2s, border-color 0.2s;
}

.site-link:hover {
    color: var(--secondary);
    border-bottom-color: var(--secondary);
}

/* Primary / secondary pill buttons sitewide */
.site-btn-pill.btn-secondary {
    font-family: var(--site-font-heading);
    font-weight: 600;
    padding: 0.65rem 1.85rem;
    border-radius: 50rem !important;
    font-size: 0.95rem;
}

@media (min-width: 576px) {
    .site-btn-pill.btn-secondary {
        padding: 0.75rem 2.35rem;
    }
}

.site-btn-pill-sm.btn-secondary {
    font-family: var(--site-font-heading);
    font-weight: 600;
    border-radius: 50rem !important;
    padding: 0.45rem 1.15rem;
    font-size: 0.875rem;
}

.site-btn-outline-pill.btn-outline-dark {
    font-family: var(--site-font-heading);
    font-weight: 600;
    padding: 0.65rem 1.85rem;
    border-radius: 50rem !important;
    border-width: 2px;
}

@media (min-width: 576px) {
    .site-btn-outline-pill.btn-outline-dark {
        padding: 0.75rem 2.35rem;
    }
}

.site-btn-outline-pill.btn-outline-light {
    color: #fff;
    border-width: 2px;
    border-color: rgba(255, 255, 255, 0.9);
}

.site-btn-outline-pill.btn-outline-light:hover {
    background: #fff;
    color: var(--dark);
    border-color: #fff;
}

.site-prose a:not(.btn):not(.site-btn-pill) {
    color: var(--primary);
    font-weight: 500;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.site-prose a:not(.btn):not(.site-btn-pill):hover {
    color: var(--secondary);
}

/* --- Index page (moved from inline) --- */
.index-about-img-wrap { border-radius: 1rem !important; }
.index-service-card-inner { transition: transform 0.3s ease, box-shadow 0.3s ease; }
.index-service-card:hover .index-service-card-inner { transform: translateY(-6px); box-shadow: 0 12px 28px rgba(0,0,0,0.12) !important; }
.index-service-img-wrap { height: 200px; background: linear-gradient(135deg, var(--primary), #1a9a8f); }
.index-service-img { height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.index-service-card:hover .index-service-img { transform: scale(1.08); }
.index-service-placeholder { height: 100%; min-height: 200px; background: linear-gradient(135deg, var(--primary), #1a9a8f); }
.index-service-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,0,0,0.3), transparent); opacity: 0; transition: opacity 0.3s; }
.index-service-card:hover .index-service-overlay { opacity: 1; }
.index-service-title { color: var(--dark); font-weight: 600; font-family: var(--site-font-heading); font-size: 1.1rem; }
.index-service-desc { font-size: 0.95rem; color: var(--site-text); line-height: var(--site-line-body); }
.index-service-link { color: var(--secondary); font-weight: 600; font-size: 0.9rem; font-family: var(--site-font-heading); transition: transform 0.2s; }
.index-service-card:hover .index-service-link { transform: translateX(4px); }
.index-parallax { position: relative; overflow: hidden; }
.index-parallax-bg { position: absolute; inset: 0; background-size: cover; background-position: center; background-repeat: no-repeat; background-attachment: fixed; }
@media (max-width: 991px) { .index-parallax-bg { background-attachment: scroll; } }
.index-parallax-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(4,0,11,0.88) 0%, rgba(0,128,128,0.75) 100%); }
.index-parallax-content { z-index: 1; }
.index-label-light { color: var(--secondary); }
.index-heading-light { color: #fff; font-size: clamp(1.5rem, 3.5vw, 2rem); font-weight: 700; font-family: var(--site-font-heading); line-height: 1.2; }
.index-text-light { color: rgba(255,255,255,0.9); font-size: 1.05rem; line-height: var(--site-line-body); font-family: var(--site-font-body); }
.index-newsletter-box { background: rgba(255,255,255,0.08); backdrop-filter: blur(12px); border: 1px solid rgba(255,255,255,0.15); }
.index-newsletter-form .form-control { background: rgba(255,255,255,0.12); border-color: rgba(255,255,255,0.25); color: #fff; }
.index-newsletter-form .form-control::placeholder { color: rgba(255,255,255,0.6); }
.index-impact-img-wrap { height: 220px; overflow: hidden; }
.index-impact-img { height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.index-impact-card:hover .index-impact-img { transform: scale(1.08); }
.index-impact-overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.5); opacity: 0; transition: opacity 0.3s; display: flex !important; }
.index-impact-card:hover .index-impact-overlay { opacity: 1; }
.index-impact-placeholder { height: 100%; min-height: 220px; background: linear-gradient(135deg, var(--primary), #1a9a8f); }
.index-impact-company { color: var(--secondary); font-weight: 600; font-family: var(--site-font-heading); }
.index-client-card { transition: transform 0.25s, box-shadow 0.25s; }
.index-client-card:hover { transform: translateY(-4px); box-shadow: 0 8px 20px rgba(0,0,0,0.08) !important; }
.index-client-logo { filter: grayscale(0.4); opacity: 0.85; transition: filter 0.25s, opacity 0.25s; }
.index-client-card:hover .index-client-logo { filter: grayscale(0); opacity: 1; }
.index-testimonial-card { background: #fff; box-shadow: 0 4px 20px rgba(0,0,0,0.06); transition: box-shadow 0.3s; }
.index-testimonial-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.1); }
.index-testimonial-quote { color: var(--secondary); opacity: 0.8; }
.index-testimonial-text { color: var(--site-text); font-size: 1.05rem; line-height: 1.75; font-style: italic; font-family: var(--site-font-body); }
.index-cta-form .form-control { border-radius: 0.75rem; border: 1px solid #e2e8f0; }
.index-cta-form .form-control:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(19,128,117,0.15); }
.index-cta-img-wrap { border-radius: 1rem !important; }
.index-testimonial-carousel.owl-carousel .owl-nav { display: flex; justify-content: center; gap: 12px; margin-top: 1.5rem; }
.index-testimonial-carousel.owl-carousel .owl-nav button { width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; color: var(--primary); background: var(--light); border: none; border-radius: 50%; font-size: 1.1rem; transition: 0.3s; }
.index-testimonial-carousel.owl-carousel .owl-nav button:hover { color: #fff; background: var(--primary); }
.index-testimonial-carousel.owl-carousel .owl-dots { display: flex; justify-content: center; gap: 8px; margin-top: 1rem; }
.index-testimonial-carousel.owl-carousel .owl-dot { width: 10px; height: 10px; border-radius: 50%; background: #cbd5e0; border: none; transition: 0.3s; }
.index-testimonial-carousel.owl-carousel .owl-dot.active { background: var(--secondary); transform: scale(1.2); }

/* Homepage hero trust strip */
.index-hero-stats {
    border-color: rgba(255, 255, 255, 0.12) !important;
}
.index-hero-stat {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    max-width: 18rem;
    margin-left: auto;
    margin-right: auto;
}
@media (min-width: 992px) {
    .index-hero-stat {
        margin-left: 0;
        margin-right: 0;
        max-width: none;
    }
    .text-lg-start .index-hero-stats .index-hero-stat {
        margin-left: 0;
    }
}
.index-hero-stat-value {
    font-family: var(--site-font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.95);
}
.index-hero-stat-label {
    font-size: 0.88rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.62);
}

/* About: scannable lead + checklist */
.index-text-lead {
    font-size: 1.08rem;
    line-height: 1.65;
    color: var(--site-text);
}
.index-checklist li {
    position: relative;
    padding-left: 0.15rem;
    margin-bottom: 0.65rem;
    font-size: 0.98rem;
    line-height: 1.55;
    color: var(--site-text);
}
.index-checklist li:last-child {
    margin-bottom: 0;
}

/* Value pillars band */
.index-pillar-card {
    background: linear-gradient(165deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid rgba(0, 0, 0, 0.06);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.index-pillar-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}
.index-pillar-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 128, 128, 0.15), rgba(251, 165, 4, 0.2));
    color: var(--primary);
    font-size: 1.15rem;
}
.index-pillar-title {
    font-family: var(--site-font-heading);
    font-weight: 600;
    color: var(--dark);
}
.index-pillar-text {
    color: var(--site-text-muted);
    line-height: 1.6;
}

/* Parallax band: highlight row */
.index-parallax-stat {
    padding: 1rem 0.75rem;
    border-radius: 0.75rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    min-height: 100%;
}
.index-parallax-stat-num {
    display: block;
    font-family: var(--site-font-heading);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 0.35rem;
}
.index-parallax-stat-cap {
    display: block;
    font-size: 0.78rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.72);
}

/* Services listing (services page include) */
.site-service-card {
    background: #fff;
    color: var(--dark);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 2px solid transparent !important;
}
.site-service-card:hover {
    transform: translateY(-8px);
    border-color: var(--secondary) !important;
    box-shadow: 0 12px 28px rgba(0,0,0,0.12) !important;
}
.site-service-card-img {
    max-height: 150px;
    object-fit: cover;
    width: 100%;
}
.site-service-card-title {
    font-family: var(--site-font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--secondary);
    margin-bottom: 0.35rem;
}
.site-service-card-text {
    font-family: var(--site-font-body);
    color: var(--site-text);
    font-size: 0.95rem;
    line-height: var(--site-line-body);
}
.site-service-card-icon {
    width: 48px;
    height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--secondary);
    color: var(--dark);
    transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease;
}
.site-service-card:hover .site-service-card-icon {
    transform: scale(1.08);
    background: var(--dark);
    color: var(--secondary);
}
.site-lead-heading {
    font-family: var(--site-font-heading);
    font-weight: 500;
    font-size: clamp(1.15rem, 2.5vw, 1.45rem);
    line-height: 1.45;
    color: var(--site-text);
    text-align: center;
}

/* Who we serve — listing uses .site-service-card; optional icon when no thumbnail */
.site-who-icon-wrap {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 128, 128, 0.12), rgba(251, 165, 4, 0.2));
    flex-shrink: 0;
}
.site-who-icon {
    color: var(--primary);
    font-size: 1.2rem;
}

/* Impact / program page */
.site-impact-hero {
    background: rgba(251, 165, 4, 0.12);
    border: 1px solid rgba(251, 165, 4, 0.25);
    border-radius: 0.75rem;
    padding: 1.5rem;
}
.site-impact-intro {
    max-width: 52rem;
    margin-left: auto;
    margin-right: auto;
}
@media (min-width: 768px) {
    .site-impact-intro {
        text-align: center;
    }
}
.site-impact-about-text {
    max-width: 52rem;
    margin-left: auto;
    margin-right: auto;
    text-align: start;
}
.site-impact-title {
    font-family: var(--site-font-heading);
    font-weight: 700;
    color: #c77d0a;
    font-size: clamp(1.35rem, 3vw, 1.85rem);
    line-height: 1.25;
}
.site-impact-section-title {
    font-family: var(--site-font-heading);
    font-weight: 700;
    color: #c77d0a;
    font-size: 1.35rem;
    margin-bottom: 1rem;
}
.site-impact-panel {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 0.5rem;
    padding: 1.25rem;
}
.site-impact-panel h3 {
    font-family: var(--site-font-heading);
    font-weight: 700;
    color: #c77d0a;
    font-size: 1.2rem;
}
.site-impact-panel h5 {
    font-family: var(--site-font-heading);
    font-weight: 600;
    font-size: 1rem;
    color: var(--dark);
}
.site-impact-teach {
    background: rgba(251, 165, 4, 0.12);
    border-radius: 0.75rem;
    padding: 1.5rem;
}
.site-btn-impact.btn {
    font-family: var(--site-font-heading);
    font-weight: 600;
    border-radius: 50rem !important;
    background: #f69521 !important;
    border: none !important;
    color: #fff !important;
    padding: 0.65rem 1.75rem;
    font-size: 1rem;
}
.site-btn-impact.btn:hover {
    filter: brightness(1.05);
    box-shadow: 0 6px 20px rgba(246, 149, 33, 0.35);
}
a.site-btn-impact {
    display: inline-block;
    text-decoration: none;
    line-height: 1.5;
}
a.site-btn-impact:hover {
    color: #fff !important;
}

/* Partner / logo grids */
.site-partner-thumb-wrap {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 150px;
}
.site-img-contain {
    object-fit: contain;
}

/* Blog sidebar thumbnails */
.site-blog-thumb {
    width: 60px;
    height: 40px;
    object-fit: cover;
    flex-shrink: 0;
}

/* Testimonials listing page */
.site-testimonial-category {
    color: var(--secondary);
    font-family: var(--site-font-body);
}
.site-recommendation-badge .badge {
    background: linear-gradient(90deg, #ffc107, #ffec94) !important;
    font-family: var(--site-font-heading);
    font-weight: 600;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Project / portfolio cards — company link */
.site-portfolio-company-link {
    font-family: var(--site-font-heading);
    font-weight: 600;
    color: var(--primary) !important;
    text-decoration: none;
}
.site-portfolio-company-link:hover {
    color: var(--secondary) !important;
}
.site-portfolio-card-title {
    font-family: var(--site-font-heading);
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--dark);
}

.site-portfolio-company-text {
    font-family: var(--site-font-heading);
    font-weight: 600;
    color: var(--primary);
}

/* Our work — listing & detail (aligned with homepage) */
.site-work-listing {
    background: linear-gradient(180deg, #f1f5f9 0%, #ffffff 14%, #ffffff 100%);
}

.site-header-hero .site-hero-fullbleed.hero-header.bg-dark.site-work-hero {
    min-height: min(58vh, 480px);
}

.site-header-hero .site-hero-fullbleed.hero-header.bg-dark.site-work-hero.site-work-hero--detail {
    min-height: min(44vh, 380px);
}

/* Single service — hero matches main content column; avoids centered 80% title + excess empty space */
.site-header-hero .site-hero-fullbleed.hero-header.bg-dark.site-service-detail-hero {
    min-height: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
}

@media (min-width: 992px) {
    .site-header-hero .site-hero-fullbleed.hero-header.bg-dark.site-service-detail-hero {
        padding-top: 3rem !important;
        padding-bottom: 3rem !important;
    }
}

.site-service-more {
    background: linear-gradient(180deg, #f8fafb 0%, #ffffff 100%);
}

.site-work-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.site-work-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 44px rgba(0, 0, 0, 0.1) !important;
}

.site-work-card-media {
    aspect-ratio: 16 / 10;
    background: #0d1f2a;
}

.site-work-card-img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s ease;
    display: block;
}

.site-work-card:hover .site-work-card-img {
    transform: scale(1.05);
}

.site-work-card-placeholder {
    aspect-ratio: 16 / 10;
    min-height: 200px;
    width: 100%;
    background: linear-gradient(145deg, var(--primary) 0%, #0d5c54 55%, #0a2e2a 100%);
}

.site-work-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(3, 5, 8, 0.05) 0%, rgba(3, 5, 8, 0.88) 100%);
    opacity: 0;
    transition: opacity 0.35s ease;
    pointer-events: none;
}

.site-work-card:hover .site-work-card-overlay {
    opacity: 1;
}

.site-work-card-cta {
    pointer-events: none;
    font-size: 0.8rem;
    padding: 0.4rem 1rem !important;
}

.site-work-card-hint {
    max-width: 12rem;
    line-height: 1.35;
}

.site-work-empty {
    border-color: rgba(0, 0, 0, 0.06) !important;
}

/* Dark hero breadcrumbs */
.site-breadcrumb-dark .breadcrumb {
    --bs-breadcrumb-divider-color: rgba(255, 255, 255, 0.35);
    background: transparent;
    padding: 0;
    margin-bottom: 0;
    font-size: 0.85rem;
}

.site-breadcrumb-dark .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.72);
    text-decoration: none;
    transition: color 0.2s;
}

.site-breadcrumb-dark .breadcrumb-item a:hover {
    color: var(--secondary);
}

.site-breadcrumb-dark .breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.95);
}

/* Single project */
.site-project-detail {
    background: #fff;
}

.site-project-figure-inner {
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.site-project-hero-img {
    display: block;
    vertical-align: middle;
}

.site-project-meta-accent {
    height: 4px;
    width: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

.site-project-meta .card-body {
    padding-top: 1.5rem;
}

.site-project-meta-client {
    color: var(--dark);
    font-size: 1.05rem;
}

.site-project-meta-link {
    color: var(--primary) !important;
    font-weight: 600;
    font-size: 0.95rem;
}

.site-project-meta-link:hover {
    color: var(--secondary) !important;
}

.site-project-detail .site-text p {
    margin-bottom: 1rem;
}

.site-project-detail .site-text p:last-child {
    margin-bottom: 0;
}

@media (min-width: 992px) {
    .site-project-aside {
        top: 1.25rem;
    }
}

.site-comment-author {
    font-family: var(--site-font-heading);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--dark);
}

.site-testimonial-avatar {
    width: 65px;
    height: 65px;
    object-fit: cover;
}

/* Blog listing grid (blogs.blade.php) */
.site-blog-list-card {
    transition: transform 0.3s, box-shadow 0.3s;
    overflow: hidden;
    border-radius: 12px;
}
.site-blog-list-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}
.site-blog-list-img {
    transition: transform 0.5s ease;
}
.site-blog-list-card:hover .site-blog-list-img {
    transform: scale(1.05);
}
.site-blog-list-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    opacity: 0;
    transition: opacity 0.3s;
}
.site-blog-list-card:hover .site-blog-list-overlay {
    opacity: 1;
}
.site-blog-list-title {
    font-family: var(--site-font-heading);
    font-weight: 700;
    font-size: 1.1rem;
    line-height: 1.3;
    margin-bottom: 0.5rem;
}
.site-blog-list-title a {
    color: var(--dark);
    text-decoration: none;
}
.site-blog-list-title a:hover {
    color: var(--primary);
}
.site-blog-list-read {
    font-family: var(--site-font-heading);
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
}
.site-blog-list-read:hover {
    color: var(--secondary);
}

.site-team-photo {
    height: 350px;
    width: 100%;
    object-fit: contain;
}
.site-team-name {
    font-family: var(--site-font-heading);
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 0.25rem;
}