/**
* Kenya Startup Portal — KeNIA
* Rebranded from "Orbit" (BootstrapMade) template
* Brand source: KeNIA Brand Guideline (kenia.go.ke)
*/

/*--------------------------------------------------------------
# Font & Color Variables — KeNIA Brand
--------------------------------------------------------------*/
:root {
    --default-font:
        "Poppins", system-ui, -apple-system, "Segoe UI", Roboto,
        "Helvetica Neue", Arial, sans-serif;
    --heading-font: "Poppins", sans-serif;
    --nav-font: "Poppins", sans-serif;
}

/* KeNIA brand colors (from Brand Guideline: Glass Bull #880000, Golden Frame #e4b416) */
:root {
    --background-color: #f7f5f2; /* warm neutral background */
    --default-color: #4a4a4a; /* body text */
    --heading-color: #1a1a1a; /* headings, near-black */
    --accent-color: #880000; /* KeNIA maroon — primary brand color */
    --accent-gold: #e4b416; /* KeNIA gold — secondary, used for highlights/badges */
    --surface-color: #ffffff; /* card/box backgrounds */
    --contrast-color: #ffffff; /* text on accent backgrounds */
}

:root {
    --nav-color: #4a4a4a;
    --nav-hover-color: #880000;
    --nav-mobile-background-color: #ffffff;
    --nav-dropdown-background-color: #ffffff;
    --nav-dropdown-color: #4a4a4a;
    --nav-dropdown-hover-color: #880000;
}

.light-background {
    --background-color: #f9f6f0;
    --surface-color: #ffffff;
}

.dark-background {
    --background-color: #1a0000;
    --default-color: #f5f0e8;
    --heading-color: #ffffff;
    --surface-color: #2b0a0a;
    --contrast-color: #ffffff;
}

:root {
    scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
    color: var(--default-color);
    background-color: var(--background-color);
    font-family: var(--default-font);
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: 0.3s;
}

a:hover {
    color: color-mix(in srgb, var(--accent-color), transparent 25%);
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    color: var(--heading-color);
    font-family: var(--heading-font);
    font-weight: 600;
}

/* Gold accent utility — for badges, ribbons, highlight text */
.gold-accent {
    color: var(--accent-gold) !important;
}

.gold-bg {
    background-color: var(--accent-gold) !important;
    color: #1a1a1a !important;
}

/* PHP Email Form Messages */
.php-email-form .error-message {
    display: none;
    background: #df1529;
    color: #ffffff;
    text-align: left;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .sent-message {
    display: none;
    color: #ffffff;
    background: #059652;
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
    font-weight: 600;
}

.php-email-form .loading {
    display: none;
    background: var(--surface-color);
    text-align: center;
    padding: 15px;
    margin-bottom: 24px;
}

.php-email-form .loading:before {
    content: "";
    display: inline-block;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    margin: 0 10px -6px 0;
    border: 3px solid var(--accent-color);
    border-top-color: var(--surface-color);
    animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
    --surface-color: #ffffff;
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 15px 0;
    transition: all 0.5s;
    z-index: 997;
    border-bottom: 1px solid
        color-mix(in srgb, var(--default-color), transparent 90%);
}

.header .logo {
    display: flex;
    align-items: center;
    gap: 9px;
    line-height: 1;
}

.header .logo .sitename {
    font-size: 24px;
    font-weight: 700;
    color: var(--heading-color);
    letter-spacing: -0.5px;
    margin: 0;
}

.header .logo .logo-divider {
    font-size: 22px;
    font-weight: 300;
    color: color-mix(in srgb, var(--default-color), transparent 60%);
    line-height: 1;
}

.header .logo .kenia-logo {
    max-height: 46px;
    width: auto;
    object-fit: contain;
    display: block;
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
    color: var(--contrast-color);
    background: var(--accent-color);
    font-size: 14px;
    padding: 10px 30px;
    margin: 0;
    border-radius: 6px;
    transition: 0.3s;
    font-weight: 600;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
    color: var(--contrast-color);
    background: color-mix(in srgb, var(--accent-color), black 12%);
}

@media (max-width: 1200px) {
    .header .logo {
        order: 1;
    }
    .header .btn-getstarted {
        order: 2;
        margin: 0 15px 0 0;
        padding: 6px 20px;
    }
    .header .navmenu {
        order: 3;
    }
}

@media (max-width: 575.98px) {
    /* Header: stop logo wrapping, give breathing room to button + toggle */
    .header .logo {
        flex-wrap: nowrap;
        gap: 6px;
        min-width: 0;
        overflow: hidden;
    }
    .header .logo .sitename {
        font-size: 16px;
        white-space: nowrap;
    }
    .header .logo .logo-divider {
        display: none;
    }
    .header .logo .kenia-logo {
        max-height: 32px;
    }
    .header .btn-getstarted {
        font-size: 12px;
        padding: 8px 14px;
        white-space: nowrap;
    }
    .header .container {
        gap: 8px;
        flex-wrap: nowrap;
    }
    .mobile-nav-toggle {
        margin-right: 0;
        font-size: 24px;
    }

    /* Hero: header is shorter now, but keep enough offset so heading isn't clipped on load */
    .hero {
        padding: 30px 0 50px;
        scroll-margin-top: 60px;
    }
    .hero .hero-content .hero-headline {
        font-size: 1.65rem;
    }
    .hero .hero-content .hero-cta {
        gap: 16px;
    }
    .hero .hero-content .hero-cta .cta-button {
        padding: 13px 24px;
        font-size: 0.875rem;
    }

    /* Stat cards: shrink padding/icon so they don't look oversized/cramped */
    .hero .stats-grid .stat-card {
        padding: 18px 16px;
        border-radius: 12px;
        gap: 12px;
    }
    .hero .stats-grid .stat-card .stat-icon-wrap {
        width: 44px;
        height: 44px;
        min-width: 44px;
        border-radius: 10px;
    }
    .hero .stats-grid .stat-card .stat-icon-wrap i {
        font-size: 1.3rem;
    }
    .hero .stats-grid .stat-card .stat-info .stat-value {
        font-size: 1.5rem;
    }
    .hero .stats-grid .stat-card .stat-info .stat-title {
        font-size: 0.75rem;
        line-height: 1.3;
    }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
@media (min-width: 1200px) {
    .navmenu {
        padding: 0;
    }
    .navmenu ul {
        margin: 0;
        padding: 0;
        display: flex;
        list-style: none;
        align-items: center;
    }
    .navmenu li {
        position: relative;
    }
    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-color);
        padding: 18px 15px;
        font-size: 15px;
        font-family: var(--nav-font);
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }
    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        transition: 0.3s;
    }
    .navmenu li:last-child a {
        padding-right: 0;
    }
    .navmenu li:hover > a,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-hover-color);
    }
    .navmenu .dropdown ul {
        margin: 0;
        padding: 10px 0;
        background: var(--nav-dropdown-background-color);
        display: block;
        position: absolute;
        visibility: hidden;
        left: 14px;
        top: 130%;
        opacity: 0;
        transition: 0.3s;
        border-radius: 4px;
        z-index: 99;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }
    .navmenu .dropdown ul li {
        min-width: 200px;
    }
    .navmenu .dropdown ul a {
        padding: 10px 20px;
        font-size: 15px;
        text-transform: none;
        color: var(--nav-dropdown-color);
    }
    .navmenu .dropdown ul a i {
        font-size: 12px;
    }
    .navmenu .dropdown ul a:hover,
    .navmenu .dropdown ul .active:hover,
    .navmenu .dropdown ul li:hover > a {
        color: var(--nav-dropdown-hover-color);
    }
    .navmenu .dropdown:hover > ul {
        opacity: 1;
        top: 100%;
        visibility: visible;
    }
    .navmenu .dropdown .dropdown ul {
        top: 0;
        left: -90%;
        visibility: hidden;
    }
    .navmenu .dropdown .dropdown:hover > ul {
        opacity: 1;
        top: 0;
        left: -100%;
        visibility: visible;
    }
}

@media (max-width: 1199px) {
    .mobile-nav-toggle {
        color: var(--nav-color);
        font-size: 28px;
        line-height: 0;
        margin-right: 10px;
        cursor: pointer;
        transition: color 0.3s;
    }
    .navmenu {
        padding: 0;
        z-index: 9997;
    }
    .navmenu ul {
        display: none;
        list-style: none;
        position: absolute;
        inset: 60px 20px 20px 20px;
        padding: 10px 0;
        margin: 0;
        border-radius: 6px;
        background-color: var(--nav-mobile-background-color);
        overflow-y: auto;
        transition: 0.3s;
        z-index: 9998;
        box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
    }
    .navmenu a,
    .navmenu a:focus {
        color: var(--nav-dropdown-color);
        padding: 10px 20px;
        font-family: var(--nav-font);
        font-size: 16px;
        font-weight: 500;
        display: flex;
        align-items: center;
        justify-content: space-between;
        white-space: nowrap;
        transition: 0.3s;
    }
    .navmenu a i,
    .navmenu a:focus i {
        font-size: 12px;
        line-height: 0;
        margin-left: 5px;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        transition: 0.3s;
        background-color: color-mix(
            in srgb,
            var(--accent-color),
            transparent 90%
        );
    }
    .navmenu a i:hover,
    .navmenu a:focus i:hover {
        background-color: var(--accent-color);
        color: var(--contrast-color);
    }
    .navmenu a:hover,
    .navmenu .active,
    .navmenu .active:focus {
        color: var(--nav-dropdown-hover-color);
    }
    .navmenu .active i,
    .navmenu .active:focus i {
        background-color: var(--accent-color);
        color: var(--contrast-color);
        transform: rotate(180deg);
    }
    .navmenu .dropdown ul {
        position: static;
        display: none;
        z-index: 99;
        padding: 10px 0;
        margin: 10px 20px;
        background-color: var(--nav-dropdown-background-color);
        border: 1px solid
            color-mix(in srgb, var(--default-color), transparent 90%);
        box-shadow: none;
        transition: all 0.5s ease-in-out;
    }
    .navmenu .dropdown ul ul {
        background-color: rgba(33, 37, 41, 0.1);
    }
    .navmenu .dropdown > .dropdown-active {
        display: block;
        background-color: rgba(33, 37, 41, 0.03);
    }
    .mobile-nav-active {
        overflow: hidden;
    }
    .mobile-nav-active .mobile-nav-toggle {
        color: #fff;
        position: absolute;
        font-size: 32px;
        top: 15px;
        right: 15px;
        margin-right: 0;
        z-index: 9999;
    }
    .mobile-nav-active .navmenu {
        position: fixed;
        overflow: hidden;
        inset: 0;
        background: rgba(26, 0, 0, 0.85);
        transition: 0.3s;
    }
    .mobile-nav-active .navmenu > ul {
        display: block;
    }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
    color: var(--default-color);
    background-color: #1a0000;
    font-size: 14px;
    padding: 60px 0 30px;
    position: relative;
}
.footer,
.footer .footer-links ul a,
.footer .footer-info p {
    color: #e8d9d9;
}
.footer h4,
.footer h5 {
    color: #ffffff;
}
.footer .footer-top {
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer .footer-info .logo span {
    color: #ffffff;
    font-size: 26px;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-family: var(--heading-font);
}
.footer .footer-info p {
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.6;
}
.footer .social-links {
    display: flex;
    gap: 12px;
}
.footer .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.08);
    font-size: 16px;
    color: #ffffff;
    transition: all 0.3s ease;
}
.footer .social-links a:hover {
    color: #1a0000;
    background-color: var(--accent-gold);
    transform: translateY(-3px);
}
.footer h4 {
    font-size: 16px;
    font-weight: 600;
    position: relative;
    padding-bottom: 12px;
    margin-bottom: 20px;
}
.footer h4:after {
    content: "";
    position: absolute;
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--accent-gold);
    bottom: 0;
    left: 0;
}
.footer h5 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
}
.footer .footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer .footer-links ul li {
    padding: 8px 0;
    display: flex;
    align-items: center;
}
.footer .footer-links ul li:first-child {
    padding-top: 0;
}
.footer .footer-links ul a {
    color: #e8d9d9;
    display: inline-block;
    line-height: 1.2;
    transition: all 0.3s ease;
    position: relative;
}
.footer .footer-links ul a:hover {
    color: var(--accent-gold);
    transform: translateX(5px);
}
.footer .footer-newsletter p {
    margin-bottom: 20px;
    line-height: 1.6;
    color: #e8d9d9;
}
.footer .footer-newsletter form {
    margin-top: 25px;
}
.footer .footer-newsletter form .position-relative {
    display: flex;
    margin-bottom: 15px;
}
.footer .footer-newsletter form input[type="email"] {
    height: 44px;
    border-radius: 8px;
    padding: 10px 15px;
    width: 100%;
    color: #1a1a1a;
    background-color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 14px;
}
.footer .footer-newsletter form input[type="email"]:focus {
    outline: none;
    border-color: var(--accent-gold);
}
.footer .footer-newsletter form .btn-subscribe {
    position: absolute;
    right: 5px;
    top: 5px;
    bottom: 5px;
    border: 0;
    background-color: var(--accent-gold);
    color: #1a1a1a;
    transition: 0.3s;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
}
.footer .footer-newsletter form .btn-subscribe:hover {
    background-color: color-mix(in srgb, var(--accent-gold), transparent 20%);
}
.footer .footer-newsletter form .btn-subscribe i {
    font-size: 18px;
}
.footer .footer-bottom {
    padding-top: 25px;
}
.footer .footer-bottom .copyright p {
    margin-bottom: 0;
    font-size: 13px;
    color: #c9b8b8;
}
.footer .footer-bottom .credits {
    padding-top: 5px;
}
.footer .footer-bottom .legal-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: flex-end;
}

.footer .footer-registry-cta p {
    margin-bottom: 24px;
    line-height: 1.6;
    color: #e8d9d9;
}

.footer .btn-join-registry {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    background: var(--accent-gold);
    color: #1a1a1a;
    font-weight: 600;
    font-size: 14px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.footer .btn-join-registry i:first-child {
    font-size: 16px;
}
.footer .btn-join-registry i:last-child {
    font-size: 14px;
    transition: transform 0.3s ease;
}
.footer .btn-join-registry:hover {
    background: color-mix(in srgb, var(--accent-gold), white 15%);
    transform: translateY(-2px);
}
.footer .btn-join-registry:hover i:last-child {
    transform: translateX(4px);
}

.footer .registry-note {
    display: block;
    margin-top: 12px;
    font-size: 12px;
    color: #c9b8b8;
}

@media (max-width: 767.98px) {
    .footer .footer-bottom .legal-links {
        justify-content: center;
        margin-bottom: 15px;
    }
}
.footer .footer-bottom .legal-links a {
    color: #c9b8b8;
    font-size: 13px;
    transition: color 0.3s ease;
}
.footer .footer-bottom .legal-links a:hover {
    color: var(--accent-gold);
}
@media (max-width: 991.98px) {
    .footer .footer-links,
    .footer .footer-info {
        margin-bottom: 30px;
    }
}
@media (max-width: 767.98px) {
    .footer .copyright,
    .footer .credits {
        text-align: center;
    }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
    position: fixed;
    visibility: hidden;
    opacity: 0;
    right: 15px;
    bottom: 15px;
    z-index: 99999;
    background-color: var(--accent-color);
    width: 40px;
    height: 40px;
    border-radius: 6px;
    transition: all 0.4s;
}
.scroll-top i {
    font-size: 24px;
    color: var(--contrast-color);
    line-height: 0;
}
.scroll-top:hover {
    background-color: var(--accent-gold);
    color: #1a1a1a;
}
.scroll-top.active {
    visibility: visible;
    opacity: 1;
}

@media screen and (max-width: 768px) {
    [data-aos-delay] {
        transition-delay: 0 !important;
    }
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
    color: var(--default-color);
    background-color: var(--background-color);
    padding: 60px 0;
    scroll-margin-top: 90px;
    overflow: clip;
}
@media (max-width: 1199px) {
    section,
    .section {
        scroll-margin-top: 66px;
    }
}

.section-title {
    text-align: center;
    padding-bottom: 60px;
    position: relative;
}
.section-title .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-color);
    margin-bottom: 12px;
}
.section-title .eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent-gold);
    display: inline-block;
}
.section-title h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
}
.section-title h2:after {
    content: "";
    position: absolute;
    display: block;
    width: 50px;
    height: 3px;
    background: var(--accent-gold);
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}
.section-title p {
    margin-bottom: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
    padding: 50px 0 80px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(
        135deg,
        var(--background-color) 0%,
        color-mix(in srgb, var(--accent-color), transparent 95%) 100%
    );
}
.hero::before {
    content: "";
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 50%;
    height: 100%;
    background: radial-gradient(
        circle,
        color-mix(in srgb, var(--accent-color), transparent 92%) 0%,
        transparent 70%
    );
    pointer-events: none;
}
.hero::after {
    content: "";
    position: absolute;
    top: 10%;
    right: -5%;
    width: 40%;
    height: 80%;
    background: radial-gradient(
        circle,
        color-mix(in srgb, var(--accent-gold), transparent 88%) 0%,
        transparent 60%
    );
    pointer-events: none;
}
.hero .hero-content {
    position: relative;
    z-index: 2;
}
.hero .hero-content .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 24px;
}
.hero .hero-content .hero-tag .tag-dot {
    width: 10px;
    height: 10px;
    background: var(--accent-gold);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
.hero .hero-content .hero-tag .tag-text {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-color);
}
.hero .hero-content .hero-headline {
    font-size: 3.25rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 24px;
    color: var(--heading-color);
}
@media (max-width: 1200px) {
    .hero .hero-content .hero-headline {
        font-size: 2.85rem;
    }
}
@media (max-width: 992px) {
    .hero .hero-content .hero-headline {
        font-size: 2.4rem;
    }
}
@media (max-width: 576px) {
    .hero .hero-content .hero-headline {
        font-size: 1.9rem;
    }
}

@media (max-width: 575.98px) {
    /* Stop the background glow blobs from peeking past the cards */
    .hero::before,
    .hero::after {
        display: none;
    }

    /* Make sure cards fill the available width with no stray gap on the right */
    .hero .stats-grid {
        width: 100%;
        gap: 14px;
    }
    .hero .stats-grid .stat-card {
        width: 100%;
        box-sizing: border-box;
    }

    /* Give the last card room so scroll-top doesn't sit on top of it */
    .hero .hero-stats-col {
        margin-bottom: 60px;
    }

    /* Shrink the scroll-top button itself so it's less intrusive on small screens */
    .scroll-top {
        width: 36px;
        height: 36px;
        right: 12px;
        bottom: 12px;
    }
    .scroll-top i {
        font-size: 20px;
    }
}

.hero .hero-content .hero-headline .accent {
    color: var(--accent-color);
}
.hero .hero-content .hero-text {
    font-size: 1.125rem;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 10%);
    margin-bottom: 40px;
    max-width: 540px;
}
@media (max-width: 768px) {
    .hero .hero-content .hero-text {
        font-size: 1rem;
        margin-bottom: 32px;
    }
}
.hero .hero-content .hero-cta {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}
@media (max-width: 576px) {
    .hero .hero-content .hero-cta {
        gap: 24px;
    }
}
.hero .hero-content .hero-cta .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 16px 32px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.3s ease;
}
.hero .hero-content .hero-cta .cta-button i {
    transition: transform 0.3s ease;
}
.hero .hero-content .hero-cta .cta-button:hover {
    background: color-mix(in srgb, var(--accent-color), black 12%);
    transform: translateY(-2px);
    box-shadow: 0 16px 40px
        color-mix(in srgb, var(--accent-color), transparent 60%);
}
.hero .hero-content .hero-cta .cta-button:hover i {
    transform: translateX(4px);
}
.hero .hero-content .hero-cta .cta-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--heading-color);
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}
.hero .hero-content .hero-cta .cta-link i {
    font-size: 1.5rem;
    color: var(--accent-color);
    transition: transform 0.3s ease;
}
.hero .hero-content .hero-cta .cta-link:hover {
    color: var(--accent-color);
}
.hero .hero-content .hero-cta .cta-link:hover i {
    transform: scale(1.1);
}

.hero .stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 24px;
    width: 100%;
    position: relative;
    z-index: 2;
}
@media (max-width: 576px) {
    .hero .stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.hero .hero-stats-col {
    display: flex;
    align-self: stretch;
}

.hero .stats-grid .stat-card {
    background: var(--surface-color);
    height: 100%;
    padding: 32px 28px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 18px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
    transition: all 0.3s ease;
}
.hero .stats-grid .stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px
        color-mix(in srgb, var(--default-color), transparent 88%);
    border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}
.hero .stats-grid .stat-card.stat-card-primary {
    background: var(--accent-color);
    border-color: var(--accent-color);
}
.hero .stats-grid .stat-card.stat-card-primary .stat-icon-wrap {
    background: color-mix(in srgb, var(--contrast-color), transparent 80%);
}
.hero .stats-grid .stat-card.stat-card-primary .stat-icon-wrap i {
    color: var(--contrast-color);
}
.hero .stats-grid .stat-card.stat-card-primary .stat-info .stat-value,
.hero .stats-grid .stat-card.stat-card-primary .stat-info .stat-title {
    color: var(--contrast-color);
}
.hero .stats-grid .stat-card.stat-card-primary:hover {
    background: color-mix(in srgb, var(--accent-color), black 10%);
    box-shadow: 0 20px 50px
        color-mix(in srgb, var(--accent-color), transparent 50%);
}
.hero .stats-grid .stat-card.stat-card-accent {
    background: color-mix(in srgb, var(--accent-gold), transparent 85%);
    border-color: color-mix(in srgb, var(--accent-gold), transparent 60%);
}
.hero .stats-grid .stat-card.stat-card-accent:hover {
    background: color-mix(in srgb, var(--accent-gold), transparent 75%);
}
.hero .stats-grid .stat-card.stat-card-accent .stat-icon-wrap {
    background: color-mix(in srgb, var(--accent-gold), transparent 60%);
}
.hero .stats-grid .stat-card.stat-card-accent .stat-icon-wrap i {
    color: #8a6b08;
}
.hero .stats-grid .stat-card .stat-icon-wrap {
    width: 64px;
    height: 64px;
    min-width: 64px;
    background: color-mix(in srgb, var(--accent-color), transparent 88%);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
.hero .stats-grid .stat-card .stat-icon-wrap i {
    font-size: 1.75rem;
    color: var(--accent-color);
    line-height: 1;
}

.hero .stats-grid .stat-card .stat-info .stat-value {
    font-size: 2rem;
}
.hero .stats-grid .stat-card .stat-info .stat-title {
    font-size: 0.85rem;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
}
@keyframes pulse {
    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.2);
    }
}
@media (max-width: 992px) {
    .hero {
        padding: 40px 0 60px;
    }
    .hero .hero-stats-col {
        align-self: auto;
    }
    .hero .stats-grid {
        width: auto;
    }
    .hero .hero-content {
        text-align: center;
        margin-bottom: 48px;
    }
    .hero .hero-content .hero-text {
        margin-left: auto;
        margin-right: auto;
    }
    .hero .hero-content .hero-cta {
        justify-content: center;
    }
}

/*--------------------------------------------------------------
# About / Background Section
--------------------------------------------------------------*/
.about {
    padding-top: 60px;
    background-color: var(--background-color);
    overflow: hidden;
    padding-bottom: 60px;
}
.about .about-images-wrapper {
    position: relative;
    padding-bottom: 60px;
    padding-right: 60px;
    z-index: 1;
}
@media (max-width: 992px) {
    .about .about-images-wrapper {
        padding-right: 0;
        padding-bottom: 0;
        margin-bottom: 40px;
    }
}
.about .image-main {
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.2);
}
/* .about .image-main img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}
.about .image-main:hover img {
    transform: scale(1.03);
} */

.about .image-main img,
.about .image-main svg {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}
.about .image-main:hover img,
.about .image-main:hover svg {
    transform: scale(1.03);
}
.about .image-offset {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    border-radius: 14px;
    overflow: hidden;
    border: 8px solid var(--background-color);
    z-index: 3;
    box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.18);
}
@media (max-width: 992px) {
    .about .image-offset {
        display: none;
    }
}
.about .image-offset img {
    width: 100%;
    height: auto;
    display: block;
}
.about .experience-badge {
    position: absolute;
    top: 40px;
    left: -30px;
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 22px 26px;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    z-index: 4;
    box-shadow: 0 10px 30px
        color-mix(in srgb, var(--accent-color), transparent 60%);
    animation: float-badge 3s ease-in-out infinite;
}
@media (max-width: 768px) {
    .about .experience-badge {
        left: 20px;
        top: 20px;
        padding: 14px 18px;
    }
}
.about .experience-badge .years {
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1;
    display: block;
    margin-bottom: 4px;
    color: var(--accent-gold);
}
.about .experience-badge .text {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.2;
    color: rgba(255, 255, 255, 0.9);
}
.about .shape-pattern {
    position: absolute;
    top: -20px;
    right: 20px;
    width: 200px;
    height: 200px;
    z-index: 1;
    background-image: radial-gradient(
        color-mix(in srgb, var(--accent-gold), transparent 80%) 2px,
        transparent 2px
    );
    background-size: 20px 20px;
    opacity: 0.7;
}
@media (min-width: 1200px) {
    .about .about-content {
        padding-left: 40px;
    }
}
.about .section-subtitle {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-color);
    margin-bottom: 12px;
    position: relative;
    padding-left: 45px;
}
.about .section-subtitle::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 35px;
    height: 2px;
    background: var(--accent-gold);
    transform: translateY(-50%);
}
.about h2 {
    font-size: 2.1rem;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 20px;
}
@media (max-width: 768px) {
    .about h2 {
        font-size: 1.65rem;
    }
}
.about .lead-text {
    font-size: 1.05rem;
    color: color-mix(in srgb, var(--default-color), transparent 5%);
    margin-bottom: 16px;
    font-weight: 500;
}
.about .description {
    color: color-mix(in srgb, var(--default-color), transparent 10%);
    line-height: 1.7;
}
.about .features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 30px;
}
@media (max-width: 576px) {
    .about .features-grid {
        grid-template-columns: 1fr;
    }
}
.about .feature-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--surface-color);
    padding: 12px 16px;
    border-radius: 8px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    transition: all 0.3s ease;
}
.about .feature-card i {
    color: var(--accent-color);
    font-size: 1.2rem;
}
.about .feature-card span {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--heading-color);
}
.about .feature-card:hover {
    border-color: var(--accent-gold);
    transform: translateX(5px);
}
.about .stats-row {
    display: flex;
    gap: 30px;
    margin-bottom: 35px;
    padding: 25px 0;
    border-top: 1px solid
        color-mix(in srgb, var(--default-color), transparent 90%);
    border-bottom: 1px solid
        color-mix(in srgb, var(--default-color), transparent 90%);
}
@media (max-width: 576px) {
    .about .stats-row {
        flex-direction: column;
        gap: 20px;
        padding: 20px 0;
    }
}
.about .stat-box {
    display: flex;
    flex-direction: column;
}
.about .stat-box .number {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1.2;
}
.about .stat-box .label {
    font-size: 0.85rem;
    color: color-mix(in srgb, var(--default-color), transparent 20%);
    font-weight: 500;
}
.about .action-buttons {
    display: flex;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}
.about .btn-primary-custom {
    background: var(--accent-color);
    color: var(--contrast-color);
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: 0.3s;
}
.about .btn-primary-custom:hover {
    background: color-mix(in srgb, var(--accent-color), black 10%);
    transform: translateY(-2px);
}
.about .contact-info {
    display: flex;
    align-items: center;
    gap: 12px;
}
.about .contact-info .icon-box {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--accent-color), transparent 90%);
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: 0.3s;
}
.about .contact-info .text {
    display: flex;
    flex-direction: column;
    font-size: 0.875rem;
}
.about .contact-info .text span {
    color: color-mix(in srgb, var(--default-color), transparent 30%);
    font-size: 0.8rem;
}
.about .contact-info .text a {
    font-weight: 700;
    color: var(--heading-color);
    font-size: 1rem;
}
.about .contact-info .text a:hover {
    color: var(--accent-color);
}
.about .contact-info:hover .icon-box {
    background: var(--accent-color);
    color: var(--contrast-color);
}
@keyframes float-badge {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/*--------------------------------------------------------------
# Components / Services Section
--------------------------------------------------------------*/
.services {
    padding: 100px 0;
    background-color: var(--background-color);
}
@media (max-width: 768px) {
    .services {
        padding: 64px 0;
    }
}
.services .service-card {
    position: relative;
    padding: 32px;
    border-radius: 14px;
    background: var(--surface-color);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.services .service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}
.services .service-card:hover .icon-wrapper {
    background: var(--accent-color);
}
.services .service-card:hover .icon-wrapper i {
    color: var(--contrast-color);
}
.services .service-card:hover .service-link i {
    transform: translateX(4px);
}
.services .service-card.featured {
    background: var(--accent-color);
}
.services .service-card.featured .icon-wrapper {
    background: color-mix(in srgb, var(--accent-gold) 30%, transparent);
}
.services .service-card.featured .icon-wrapper i {
    color: var(--accent-gold);
}
.services .service-card.featured h3 {
    color: var(--contrast-color);
}
.services .service-card.featured p {
    color: color-mix(in srgb, var(--contrast-color) 85%, transparent);
}
.services .service-card.featured .service-link {
    color: var(--accent-gold);
}
.services .service-card.featured .service-link:hover {
    color: var(--contrast-color);
}
.services .service-card .featured-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--accent-gold);
    color: #1a1a1a;
}
.services .service-card .featured-badge i {
    font-size: 10px;
}
.services .service-card .icon-wrapper {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: color-mix(in srgb, var(--accent-color) 12%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: all 0.3s ease;
}
.services .service-card .icon-wrapper i {
    font-size: 28px;
    color: var(--accent-color);
    transition: all 0.3s ease;
}
.services .service-card h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 12px;
    color: var(--heading-color);
}
.services .service-card p {
    font-size: 15.5px;
    line-height: 1.7;
    color: var(--default-color);
    margin-bottom: 24px;
    flex-grow: 1;
}
.services .service-card .service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-color);
    transition: all 0.3s ease;
}
.services .service-card .service-link i {
    font-size: 16px;
    transition: transform 0.3s ease;
}
.services .service-card .service-link:hover {
    color: color-mix(in srgb, var(--accent-color) 80%, black);
}
@media (max-width: 768px) {
    .services .service-card {
        padding: 24px;
    }
    .services .service-card .icon-wrapper {
        width: 48px;
        height: 48px;
    }
    .services .service-card .icon-wrapper i {
        font-size: 24px;
    }
    .services .service-card h3 {
        font-size: 18px;
    }
}
.services .stats-row {
    margin-top: 64px;
    padding: 48px 32px;
    background: color-mix(in srgb, var(--accent-color) 6%, transparent);
    border-radius: 14px;
}
@media (max-width: 768px) {
    .services .stats-row {
        margin-top: 48px;
        padding: 32px 24px;
    }
}
.services .stats-row .stat-item {
    text-align: center;
}
.services .stats-row .stat-item .stat-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
    color: var(--accent-color);
    margin-bottom: 8px;
}
@media (max-width: 768px) {
    .services .stats-row .stat-item .stat-number {
        font-size: 28px;
    }
}
.services .stats-row .stat-item .stat-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--default-color);
}
@media (max-width: 768px) {
    .services .stats-row .stat-item .stat-label {
        font-size: 12px;
    }
}

/*--------------------------------------------------------------
# Stakeholders Section (formerly Portfolio)
--------------------------------------------------------------*/
@media (max-width: 768px) {
    .portfolio {
        padding: 64px 0;
    }
}
.portfolio .filters-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 48px;
}
@media (max-width: 768px) {
    .portfolio .filters-wrapper {
        margin-bottom: 32px;
    }
}
.portfolio .portfolio-filters {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    padding: 8px;
    margin: 0;
    list-style: none;
    background: var(--surface-color);
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}
@media (max-width: 768px) {
    .portfolio .portfolio-filters {
        border-radius: 16px;
        padding: 8px;
        gap: 6px;
    }
}
.portfolio .portfolio-filters li {
    padding: 12px 22px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    color: var(--default-color);
    background: transparent;
}
@media (max-width: 768px) {
    .portfolio .portfolio-filters li {
        padding: 10px 16px;
        font-size: 13px;
    }
}
.portfolio .portfolio-filters li:hover {
    color: var(--accent-color);
    background: color-mix(in srgb, var(--accent-color) 10%, transparent);
}
.portfolio .portfolio-filters li.filter-active {
    background: var(--accent-color);
    color: var(--contrast-color);
    box-shadow: 0 4px 16px
        color-mix(in srgb, var(--accent-color) 40%, transparent);
}

.portfolio .project-card {
    background: var(--surface-color);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    display: flex;
    flex-direction: column;
}
.portfolio .project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}
.portfolio .project-card .stakeholder-icon {
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(
        135deg,
        color-mix(in srgb, var(--accent-color), transparent 90%),
        color-mix(in srgb, var(--accent-gold), transparent 88%)
    );
}
.portfolio .project-card .stakeholder-icon i {
    font-size: 52px;
    color: var(--accent-color);
}
.portfolio .project-card .project-info {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
@media (max-width: 576px) {
    .portfolio .project-card .project-info {
        padding: 20px;
    }
}
.portfolio .project-card .project-info h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 8px;
    line-height: 1.4;
}
.portfolio .project-card .project-info p {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color) 80%, transparent);
    line-height: 1.6;
    margin-bottom: 0;
    flex-grow: 1;
}

.portfolio .cta-section {
    margin-top: 80px;
    padding: 64px;
    background: linear-gradient(
        135deg,
        var(--accent-color),
        color-mix(in srgb, var(--accent-color) 75%, #4a0000)
    );
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    text-align: center;
}
@media (max-width: 992px) {
    .portfolio .cta-section {
        padding: 48px 32px;
        margin-top: 64px;
    }
}
@media (max-width: 576px) {
    .portfolio .cta-section {
        padding: 40px 24px;
        border-radius: 16px;
    }
}
.portfolio .cta-section .cta-content {
    position: relative;
    z-index: 2;
}
.portfolio .cta-section .cta-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--accent-gold);
    color: #1a1a1a;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 24px;
}
.portfolio .cta-section .cta-label i {
    font-size: 16px;
}
.portfolio .cta-section h3 {
    font-size: 34px;
    font-weight: 800;
    color: var(--contrast-color);
    margin-bottom: 16px;
    line-height: 1.2;
}
@media (max-width: 768px) {
    .portfolio .cta-section h3 {
        font-size: 26px;
    }
}
.portfolio .cta-section p {
    font-size: 17px;
    color: color-mix(in srgb, var(--contrast-color) 85%, transparent);
    max-width: 600px;
    margin: 0 auto 32px;
    line-height: 1.7;
}
.portfolio .cta-section .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
@media (max-width: 576px) {
    .portfolio .cta-section .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}
.portfolio .cta-section .btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: var(--surface-color);
    color: var(--accent-color);
    font-size: 15px;
    font-weight: 700;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
@media (max-width: 576px) {
    .portfolio .cta-section .btn-cta-primary {
        width: 100%;
        justify-content: center;
    }
}
.portfolio .cta-section .btn-cta-primary:hover {
    transform: translateY(-3px) scale(1.02);
}
.portfolio .cta-section .btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 36px;
    background: transparent;
    color: var(--contrast-color);
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: all 0.3s ease;
}
@media (max-width: 576px) {
    .portfolio .cta-section .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }
}
.portfolio .cta-section .btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--contrast-color);
}
.portfolio .cta-section .cta-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}
.portfolio .cta-section .cta-decoration .floating-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(228, 180, 22, 0.15);
}
.portfolio .cta-section .cta-decoration .floating-shape.shape-1 {
    width: 300px;
    height: 300px;
    top: -100px;
    right: -50px;
}
.portfolio .cta-section .cta-decoration .floating-shape.shape-2 {
    width: 200px;
    height: 200px;
    bottom: -80px;
    left: -60px;
}
.portfolio .cta-section .cta-decoration .floating-shape.shape-3 {
    width: 120px;
    height: 120px;
    top: 50%;
    left: 20%;
    transform: translateY(-50%);
}

/*--------------------------------------------------------------
# AI & OSINT / Why Us Section
--------------------------------------------------------------*/
.why-us {
    padding: 80px 0;
    background-color: var(--background-color);
    position: relative;
}
.why-us::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 40%;
    height: 100%;
    background: linear-gradient(
        135deg,
        color-mix(in srgb, var(--accent-color), transparent 96%),
        transparent
    );
    pointer-events: none;
}
.why-us .sidebar-content {
    position: sticky;
    top: 100px;
}
.why-us .sidebar-content .badge-wrapper {
    margin-bottom: 16px;
}
.why-us .sidebar-content .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 24px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.why-us .sidebar-content .section-badge i {
    font-size: 14px;
    color: var(--accent-gold);
}
.why-us .sidebar-content h2 {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.25;
    color: var(--heading-color);
    margin-bottom: 24px;
}
@media (max-width: 768px) {
    .why-us .sidebar-content h2 {
        font-size: 26px;
    }
}
.why-us .sidebar-content .description {
    font-size: 16px;
    line-height: 1.7;
    color: color-mix(in srgb, var(--default-color), transparent 10%);
    margin-bottom: 32px;
}
.why-us .sidebar-content .stat-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}
.why-us .sidebar-content .stat-cards .stat-card {
    background: var(--surface-color);
    padding: 20px 24px;
    border-radius: 14px;
    border-left: 4px solid var(--accent-gold);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 16px;
    transition: all 0.3s ease;
}
.why-us .sidebar-content .stat-cards .stat-card:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 30px
        color-mix(in srgb, var(--accent-color), transparent 85%);
}
.why-us .sidebar-content .stat-cards .stat-card .stat-value {
    font-size: 30px;
    font-weight: 800;
    color: var(--accent-color);
    line-height: 1;
    min-width: 80px;
}
.why-us .sidebar-content .stat-cards .stat-card .stat-text {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color), transparent 15%);
    font-weight: 500;
}
.why-us .sidebar-content .action-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.why-us .sidebar-content .action-buttons .btn-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.why-us .sidebar-content .action-buttons .btn-main:hover {
    background: color-mix(in srgb, var(--accent-color), #000 15%);
    transform: translateY(-2px);
}
.why-us .sidebar-content .action-buttons .btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 32px;
    background: transparent;
    color: var(--accent-color);
    border: 2px solid color-mix(in srgb, var(--accent-color), transparent 50%);
    border-radius: 10px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s ease;
}
.why-us .sidebar-content .action-buttons .btn-outline:hover {
    border-color: var(--accent-color);
    background: color-mix(in srgb, var(--accent-color), transparent 95%);
}
@media (min-width: 576px) {
    .why-us .sidebar-content .action-buttons {
        flex-direction: row;
    }
}
.why-us .features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}
@media (max-width: 768px) {
    .why-us .features-grid {
        grid-template-columns: 1fr;
    }
}
.why-us .features-grid .feature-box {
    background: var(--surface-color);
    padding: 28px;
    border-radius: 14px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.why-us .features-grid .feature-box:first-child {
    grid-column: span 2;
    display: flex;
    gap: 24px;
    align-items: flex-start;
}
@media (max-width: 768px) {
    .why-us .features-grid .feature-box:first-child {
        grid-column: span 1;
        flex-direction: column;
    }
}
.why-us .features-grid .feature-box:first-child .feature-icon {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
}
.why-us .features-grid .feature-box:first-child .feature-icon i {
    font-size: 40px;
}
.why-us .features-grid .feature-box:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
}
.why-us .features-grid .feature-box.highlight {
    background: linear-gradient(
        145deg,
        color-mix(in srgb, var(--accent-color), transparent 94%),
        color-mix(in srgb, var(--accent-gold), transparent 96%)
    );
    border-color: color-mix(in srgb, var(--accent-color), transparent 70%);
}
.why-us .features-grid .feature-box.highlight .feature-ribbon {
    position: absolute;
    top: 16px;
    right: -32px;
    padding: 6px 40px;
    background: var(--accent-gold);
    color: #1a1a1a;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transform: rotate(45deg);
}
.why-us .features-grid .feature-box .feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-color), #4a0000);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}
.why-us .features-grid .feature-box .feature-icon i {
    font-size: 28px;
    color: var(--accent-gold);
}
.why-us .features-grid .feature-box .feature-content h4 {
    font-size: 19px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 12px;
}
.why-us .features-grid .feature-box .feature-content p {
    font-size: 14px;
    line-height: 1.6;
    color: color-mix(in srgb, var(--default-color), transparent 10%);
    margin-bottom: 16px;
}
.why-us .features-grid .feature-box .feature-content .feature-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent-color);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
}
.why-us .features-grid .feature-box .feature-content .feature-link:hover {
    gap: 12px;
}
.why-us .features-grid .feature-box .feature-content .feature-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}
.why-us .process-timeline {
    background: var(--surface-color);
    padding: 28px;
    border-radius: 14px;
    margin-bottom: 32px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
}
.why-us .process-timeline .timeline-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 24px;
}
.why-us .process-timeline .timeline-title i {
    color: var(--accent-color);
    font-size: 20px;
}
.why-us .process-timeline .timeline-steps {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}
@media (max-width: 768px) {
    .why-us .process-timeline .timeline-steps {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}
.why-us .process-timeline .timeline-steps .timeline-step {
    display: flex;
    align-items: center;
    gap: 12px;
}
.why-us .process-timeline .timeline-steps .timeline-step .step-marker {
    width: 40px;
    height: 40px;
    background: var(--accent-color);
    color: var(--contrast-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
}
.why-us .process-timeline .timeline-steps .timeline-step .step-info strong {
    display: block;
    font-size: 14px;
    color: var(--heading-color);
}
.why-us .process-timeline .timeline-steps .timeline-step .step-info span {
    font-size: 12px;
    color: color-mix(in srgb, var(--default-color), transparent 30%);
}
.why-us .process-timeline .timeline-steps .timeline-connector {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-gold), transparent);
    min-width: 20px;
    max-width: 60px;
}
@media (max-width: 768px) {
    .why-us .process-timeline .timeline-steps .timeline-connector {
        display: none;
    }
}
.why-us .capabilities-section .capabilities-heading {
    font-size: 18px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 20px;
}
.why-us .capabilities-section .capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
@media (max-width: 768px) {
    .why-us .capabilities-section .capabilities-grid {
        grid-template-columns: 1fr;
    }
}
.why-us .capabilities-section .capabilities-grid .capability-card {
    background: color-mix(
        in srgb,
        var(--surface-color),
        var(--background-color) 50%
    );
    padding: 24px;
    border-radius: 12px;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 92%);
    transition: all 0.3s ease;
}
.why-us .capabilities-section .capabilities-grid .capability-card:hover {
    border-color: color-mix(in srgb, var(--accent-color), transparent 60%);
    background: var(--surface-color);
}
.why-us
    .capabilities-section
    .capabilities-grid
    .capability-card
    .capability-icon {
    width: 48px;
    height: 48px;
    background: color-mix(in srgb, var(--accent-color), transparent 88%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.why-us
    .capabilities-section
    .capabilities-grid
    .capability-card
    .capability-icon
    i {
    font-size: 22px;
    color: var(--accent-color);
}
.why-us .capabilities-section .capabilities-grid .capability-card h6 {
    font-size: 15px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 8px;
}
.why-us .capabilities-section .capabilities-grid .capability-card p {
    font-size: 13px;
    line-height: 1.6;
    color: color-mix(in srgb, var(--default-color), transparent 25%);
    margin: 0;
}
@media (max-width: 991px) {
    .why-us .sidebar-content {
        position: static;
        margin-bottom: 48px;
    }
}

/*--------------------------------------------------------------
# Phased Implementation (formerly Testimonials carousel)
--------------------------------------------------------------*/
.phases {
    background: color-mix(in srgb, var(--accent-color), transparent 96%);
    position: relative;
    overflow: hidden;
}
.phases::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(
        circle,
        color-mix(in srgb, var(--accent-gold), transparent 85%) 0%,
        transparent 70%
    );
    pointer-events: none;
}
.phases::after {
    content: "";
    position: absolute;
    bottom: -150px;
    left: -150px;
    width: 500px;
    height: 500px;
    background: radial-gradient(
        circle,
        color-mix(in srgb, var(--accent-color), transparent 92%) 0%,
        transparent 70%
    );
    pointer-events: none;
}
.phases .phase-card {
    background: var(--surface-color);
    border-radius: 18px;
    padding: 32px;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}
.phases .phase-card::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--accent-gold);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.phases .phase-card:hover::before {
    opacity: 1;
}
.phases .phase-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}
.phases .phase-card .phase-number {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: var(--accent-color);
    color: var(--contrast-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 18px;
    margin-bottom: 20px;
}
.phases .phase-card h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
}
.phases .phase-card .phase-duration {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--accent-color);
    margin-bottom: 14px;
}
.phases .phase-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.phases .phase-card ul li {
    display: flex;
    gap: 10px;
    font-size: 14px;
    line-height: 1.6;
    color: color-mix(in srgb, var(--default-color), transparent 10%);
    margin-bottom: 10px;
}
.phases .phase-card ul li i {
    color: var(--accent-gold);
    margin-top: 3px;
    flex-shrink: 0;
}

/*--------------------------------------------------------------
# Expected Outcomes (formerly Team)
--------------------------------------------------------------*/
.outcomes .outcome-card {
    background: var(--surface-color);
    border-radius: 14px;
    padding: 32px 24px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
}
.outcomes .outcome-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
}
.outcomes .outcome-card .outcome-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: color-mix(in srgb, var(--accent-color), transparent 88%);
    display: flex;
    align-items: center;
    justify-content: center;
}
.outcomes .outcome-card .outcome-icon i {
    font-size: 28px;
    color: var(--accent-color);
}
.outcomes .outcome-card h4 {
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
}
.outcomes .outcome-card p {
    font-size: 14px;
    color: color-mix(in srgb, var(--default-color) 75%, transparent);
    margin: 0;
    line-height: 1.6;
}
.outcomes .team-stats {
    margin-top: 64px;
}
.outcomes .team-stats .stats-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    padding: 40px 48px;
    background: var(--accent-color);
    border-radius: 14px;
}
@media (max-width: 768px) {
    .outcomes .team-stats .stats-wrapper {
        flex-direction: column;
        gap: 32px;
        padding: 32px 24px;
    }
}
.outcomes .team-stats .stat-item {
    text-align: center;
}
.outcomes .team-stats .stat-item .stat-number {
    display: block;
    font-size: 38px;
    font-weight: 800;
    color: var(--accent-gold);
    line-height: 1;
    margin-bottom: 8px;
}
.outcomes .team-stats .stat-item .stat-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--contrast-color);
}
.outcomes .team-stats .stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.25);
}
@media (max-width: 768px) {
    .outcomes .team-stats .stat-divider {
        width: 80px;
        height: 1px;
    }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
    position: relative;
    overflow: hidden;
}
.contact::before {
    content: "";
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(
        circle,
        color-mix(in srgb, var(--accent-color) 8%, transparent) 0%,
        transparent 70%
    );
    border-radius: 50%;
    pointer-events: none;
}
.contact::after {
    content: "";
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(
        circle,
        color-mix(in srgb, var(--accent-gold) 8%, transparent) 0%,
        transparent 70%
    );
    border-radius: 50%;
    pointer-events: none;
}
.contact .container {
    position: relative;
    z-index: 1;
}
.contact .info-panel {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 48px;
    background: var(--accent-color);
    border-radius: 20px;
    color: var(--contrast-color);
    position: relative;
    overflow: hidden;
}
.contact .info-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        transparent 0%,
        rgba(0, 0, 0, 0.15) 100%
    );
    pointer-events: none;
}
.contact .info-panel > * {
    position: relative;
    z-index: 1;
}
.contact .info-panel .panel-header {
    margin-bottom: 40px;
}
.contact .info-panel .panel-header .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--accent-gold);
    color: #1a1a1a;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
}
.contact .info-panel .panel-header h3 {
    font-size: 30px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    color: var(--contrast-color);
}
.contact .info-panel .panel-header p {
    font-size: 16px;
    line-height: 1.7;
    opacity: 0.9;
    margin: 0;
}
.contact .info-panel .contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
}
.contact .info-panel .method-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    transition: all 0.3s ease;
}
.contact .info-panel .method-item:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateX(8px);
}
.contact .info-panel .method-item .method-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-gold);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact .info-panel .method-item .method-icon i {
    font-size: 20px;
    color: #1a1a1a;
}
.contact .info-panel .method-item .method-details {
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.contact .info-panel .method-item .method-details .method-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.8;
}
.contact .info-panel .method-item .method-details a,
.contact .info-panel .method-item .method-details span {
    font-size: 15px;
    font-weight: 500;
    color: var(--contrast-color);
    text-decoration: none;
}
.contact .info-panel .social-connect {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 16px;
}
.contact .info-panel .social-connect > span {
    font-size: 14px;
    font-weight: 600;
    opacity: 0.9;
}
.contact .info-panel .social-connect .social-icons {
    display: flex;
    gap: 12px;
}
.contact .info-panel .social-connect .social-icons a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--contrast-color);
    transition: all 0.3s ease;
}
.contact .info-panel .social-connect .social-icons a:hover {
    background: var(--accent-gold);
    color: #1a1a1a;
    transform: translateY(-4px);
}

.contact .form-card {
    background: var(--surface-color);
    border-radius: 20px;
    padding: 48px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    height: 100%;
}
.contact .form-card .form-card-header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid
        color-mix(in srgb, var(--default-color) 10%, transparent);
}
.contact .form-card .form-card-header .header-icon {
    width: 64px;
    height: 64px;
    background: color-mix(in srgb, var(--accent-color) 12%, transparent);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact .form-card .form-card-header .header-icon i {
    font-size: 28px;
    color: var(--accent-color);
}
.contact .form-card .form-card-header .header-text h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 8px;
}
.contact .form-card .form-card-header .header-text p {
    font-size: 15px;
    line-height: 1.6;
    color: color-mix(in srgb, var(--default-color) 75%, transparent);
    margin: 0;
}
.contact .form-card .php-email-form .input-group-custom label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--heading-color);
    margin-bottom: 10px;
}
.contact .form-card .php-email-form .input-group-custom .input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}
.contact .form-card .php-email-form .input-group-custom .input-wrapper i {
    position: absolute;
    left: 18px;
    font-size: 18px;
    color: color-mix(in srgb, var(--default-color) 50%, transparent);
    z-index: 1;
}
.contact .form-card .php-email-form .input-group-custom .input-wrapper input,
.contact
    .form-card
    .php-email-form
    .input-group-custom
    .input-wrapper
    textarea {
    width: 100%;
    height: 56px;
    padding: 16px 16px 16px 52px;
    font-size: 15px;
    color: var(--default-color);
    background: color-mix(in srgb, var(--default-color) 4%, transparent);
    border: 2px solid transparent;
    border-radius: 12px;
    transition: all 0.3s ease;
}
.contact
    .form-card
    .php-email-form
    .input-group-custom
    .input-wrapper
    input:focus,
.contact
    .form-card
    .php-email-form
    .input-group-custom
    .input-wrapper
    textarea:focus {
    outline: none;
    background: var(--surface-color);
    border-color: var(--accent-color);
    box-shadow: 0 0 0 4px
        color-mix(in srgb, var(--accent-color) 12%, transparent);
}
.contact
    .form-card
    .php-email-form
    .input-group-custom
    .input-wrapper.textarea-wrapper {
    align-items: flex-start;
}
.contact
    .form-card
    .php-email-form
    .input-group-custom
    .input-wrapper.textarea-wrapper
    i {
    top: 18px;
}
.contact
    .form-card
    .php-email-form
    .input-group-custom
    .input-wrapper.textarea-wrapper
    textarea {
    height: auto;
    min-height: 140px;
    resize: vertical;
}
.contact .form-card .php-email-form .form-actions {
    margin-top: 32px;
}
.contact .form-card .php-email-form .form-actions .btn-submit {
    width: 100%;
    height: 56px;
    background: var(--accent-color);
    color: var(--contrast-color);
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.contact .form-card .php-email-form .form-actions .btn-submit:hover {
    background: color-mix(in srgb, var(--accent-color) 85%, #000);
    transform: translateY(-4px);
}
.contact .form-card .php-email-form .form-actions .secure-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}
.contact .form-card .php-email-form .form-actions .secure-note i {
    font-size: 14px;
    color: var(--accent-color);
}
.contact .form-card .php-email-form .form-actions .secure-note span {
    font-size: 13px;
    color: color-mix(in srgb, var(--default-color) 50%, transparent);
}

@media (max-width: 992px) {
    .contact .info-panel {
        padding: 40px;
    }
    .contact .info-panel .panel-header h3 {
        font-size: 26px;
    }
    .contact .form-card {
        padding: 40px;
    }
}
@media (max-width: 768px) {
    .contact .info-panel {
        padding: 32px;
    }
    .contact .form-card {
        padding: 32px 24px;
    }
    .contact .form-card .form-card-header {
        flex-direction: column;
        gap: 16px;
    }
}
@media (max-width: 576px) {
    .contact .info-panel {
        padding: 24px;
    }
    .contact .form-card {
        padding: 24px 20px;
    }
}
