@import url("https://fonts.googleapis.com/css2?family=DM+Mono:ital,wght@0,300;0,400;0,500;1,300;1,400;1,500&family=Host+Grotesk:ital,wght@0,300..800;1,300..800&family=Inter:wght@300;400;500;600;700&family=Raleway:wght@400;500;600;700&display=swap");


:root {
    --fg: #241910;
    --bg: #fefbf4;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'DM Mono', sans-serif;
    background: var(--bg);
    color: var(--fg);
    overflow-x: hidden;
}

img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

h1 {
    font-family: "Host Grotesk", sans-serif;
    font-size: 3rem;
    font-weight: 400;
    line-height: 1.1;
}

p {
    /* text-transform: uppercase; */
    font-size: 0.8rem;
    font-weight: 500;
}

a {
    text-decoration: none;
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--fg);
}

.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 0.25rem;
}

.btn-primary {
    background-color: var(--bg);
}

.btn-primary a {
    color: var(--fg);
}

.btn-secondary {
    background-color: var(--fg);
}

.btn-secondary a {
    color: var(--bg);
}

.topbar {
    position: fixed;
    top: 1rem;
    left: 50%;
    width: calc(100% - 3rem);
    max-width: 1130px;
    background: #0a8a14;
    color: #fff;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    z-index: 98;
    padding: 0.6rem 1.5rem;
    transform: translateX(-50%) translateY(0);
    opacity: 0;
    pointer-events: none;
    transition: transform 400ms cubic-bezier(0.4, 0, 0.2, 1),
        opacity 300ms ease;
}

@media (hover: hover) {
    .nav-group:hover .topbar {
        opacity: 1;
        pointer-events: auto;
        transform: translateX(-50%) translateY(100px);
    }
}

@media (hover: none) {
    .topbar {
        top: calc(1rem + 70px + 0.5rem);
        opacity: 1;
        pointer-events: auto;
        transform: translateX(-50%);
        border-radius: 10px;
        transition: none;
    }
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 0.75rem 1.5rem;
}

.topbar-item {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: #fff;
    font-family: "Host Grotesk", sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    text-transform: none;
}

.topbar-item:hover {
    opacity: 0.9;
}

.topbar-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #fff;
    color: #0a8a14;
    flex-shrink: 0;
}

.topbar-icon svg {
    width: 14px;
    height: 14px;
}

@media (max-width: 900px) {
    .topbar {
        width: calc(100% - 2rem);
        padding: 0.5rem 0.75rem;
    }

    .topbar-inner {
        justify-content: center;
        gap: 0.4rem 1rem;
    }

    .topbar-item {
        font-size: 0.75rem;
        gap: 0.4rem;
    }

    .topbar-icon {
        width: 24px;
        height: 24px;
    }

    .topbar-icon svg {
        width: 12px;
        height: 12px;
    }
}

@media (max-width: 600px) {
    .topbar {
        padding: 0.4rem 0.5rem;
    }

    .topbar-inner {
        gap: 0.35rem 0.75rem;
    }

    .topbar-item {
        font-size: 0.7rem;
        gap: 0.35rem;
    }

    .topbar-icon {
        width: 20px;
        height: 20px;
    }

    .topbar-icon svg {
        width: 10px;
        height: 10px;
    }
}

@media (max-width: 380px) {
    .topbar-item {
        font-size: 0.65rem;
    }
}

nav {
    position: fixed;
    top: 1rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 4rem);
    max-width: 1100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    background: #ffffff;
    border-radius: 10px;
    padding: 0 2rem;
    min-height: 70px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    z-index: 100;
    overflow: visible;
}

.nav-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    height: 80px;
}

.nav-logo img {
    max-height: 75px;
    width: auto;
    object-fit: contain;
    display: block;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2rem;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.nav-link {
    font-family: "Host Grotesk", sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--fg);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    transition: color 0.3s;
    white-space: nowrap;
}

.nav-link:hover {
    color: #1a8fe3;
}

.nav-hamburger {
    display: none;
    width: 44px;
    height: 44px;
    background: transparent;
    border: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    margin-left: auto;
    position: relative;
    z-index: 102;
}

.nav-hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--fg);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}

.nav-hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav-hamburger.open span:nth-child(2) {
    opacity: 0;
}

.nav-hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

section {
    position: relative;
    width: 100vw;
    min-height: 100svh;
    overflow: hidden;
}

.hero {
    z-index: 1;
    position: relative;
    background: #0c1b2a;
    overflow: hidden;
}


canvas {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: absolute;
    top: 32%;
    left: 50%;
    transform: translate(-50%);
    transform-style: preserve-3d;
    perspective: 1000px;
    padding: 0.5rem 0;
}

.header {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    text-align: center;
    color: #fff;
    transform-origin: center;
    will-change: transform, opacity;
}

.header h1 {
    width: 50%;
    margin-bottom: 0.5rem;
}

.header p {
    opacity: 0.35;
}

.client-logos {
    width: 30%;
    display: flex;
    gap: 0.5rem;
}

.client-logos .client-logo {
    flex: 1;
}

.client-logos .client-logo img {
    object-fit: contain;
}

.hero-img-container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50%;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.hero-img {
    position: relative;
    width: 100%;
    height: 100%;
    transform: translateZ(1000px);
    opacity: 0;
    will-change: transform, opacity;
}




/* ── About Section ── */
.about {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}

.about--split {
    min-height: auto;
    padding: 0;
    background: #ffffff;
}

.about-split-grid {
    width: 100%;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: stretch;
}

.about-split-content {
    padding: 4rem 1.5rem;
    max-width: 640px;
    justify-self: center;
}

@media (min-width: 900px) {
    .about-split-grid {
        grid-template-columns: 1fr 1fr;
        gap: 0;
    }

    .about-split-content {
        padding: 5rem 3rem;
        max-width: none;
        justify-self: stretch;
    }
}

.about-split-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    color: #0c1b2a;
}

.about-split-content .about-eyebrow,
.about-split-content .about-heading,
.about-split-content .about-author-name {
    color: #0c1b2a;
}

.about-split-media {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 320px;
    overflow: hidden;
    background: #000;
}

@media (min-width: 900px) {
    .about-split-media {
        min-height: 100%;
    }
}

@media (max-width: 899px) {
    .about-split-media {
        aspect-ratio: 16/10;
    }
}

.about-split-media video,
.about-split-media iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: 0;
}

.about-cta--inline {
    position: static;
    width: auto;
    align-self: flex-start;
    padding: 0.75rem 1.25rem;
    background: #0c1b2a;
    border-radius: 999px;
    color: #fff;
    margin-top: 0.5rem;
}

.about-cta--inline .about-cta-icon,
.about-cta--inline span {
    color: #fff;
}

.about-cta--inline:hover {
    background: #1f3147;
}

@media (max-width: 600px) {
    .about-split-content {
        padding: 2.5rem 1.25rem;
    }
}

.about-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.about-bg img,
.about-bg video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 45%;
    height: 100%;
    background: transparent;
    display: flex;
    align-items: center;
    padding: 4rem;
}

.about-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 520px;
}

.about-eyebrow {
    font-family: "DM Mono", monospace;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #000000;
}

.about-heading {
    font-family: "Host Grotesk", sans-serif;
    font-size: clamp(1.15rem, 1.8vw, 1.6rem);
    font-weight: 600;
    line-height: 1.25;
    color: #000000;
    text-transform: none;
}

.about-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.about-author-line {
    width: 30px;
    height: 3px;
    background: #e8943a;
    border-radius: 2px;
}

.about-author-name {
    font-family: "DM Mono", monospace;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #000000;
}

.about-play .about-pause-icon {
    display: none;
}

.about-play.playing .about-play-icon {
    display: none;
}

.about-play.playing .about-pause-icon {
    display: block;
}

.about-play {
    margin-top: 1rem;
    cursor: pointer;
    transition: opacity 0.3s;
}

.about-play:hover {
    opacity: 0.7;
}

.about-cta {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 45%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-decoration: none;
    padding: 1.25rem 2rem;
    background: #ffffff;
    cursor: pointer;
    transition: background 0.3s;
}

.about-cta:hover {
    background: #f0f0f0;
}

.about-cta-icon {
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--fg);
}

.about-cta span {
    font-family: "DM Mono", monospace;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--fg);
}

/* ── Services Section ── */
.services-new {
    background: #ffffff;
    padding: 6rem 2rem;
}

.services-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4rem;
}

.services-eyebrow {
    font-family: "DM Mono", monospace;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #666;
    display: block;
    margin-bottom: 1rem;
}

.services-heading {
    font-family: "Host Grotesk", sans-serif;
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    color: #111;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.services-header-btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #0a0a1a;
    color: #ffffff;
    border-radius: 999px;
    font-family: "DM Mono", monospace;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: background 0.3s, transform 0.3s;
}

.services-header-btn:hover {
    background: #1a1a2a;
    transform: translateY(-2px);
    color: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    justify-content: center;
    padding: 0 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #f5f5f5;
    padding: 2.25rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    min-height: 320px;
}

.service-card:hover {
    transform: translateY(-5px);
    background: #0a0a1a;
    box-shadow: 0 18px 40px rgba(10, 10, 26, 0.18);
}

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0a0a1a;
    margin-bottom: 0.5rem;
    transition: background 0.3s ease, color 0.3s ease;
}

.service-card:hover .service-icon {
    background: #ff6b35;
    color: #ffffff;
}

.service-title {
    font-family: "Host Grotesk", sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #111;
    margin: 0;
    transition: color 0.3s ease;
}

.service-desc {
    font-family: "Host Grotesk", sans-serif;
    font-size: 1.00rem;
    line-height: 1.55;
    color: #555;
    margin: 0;
    transition: color 0.3s ease;
}

.service-card:hover .service-title {
    color: #ffffff;
}

.service-card:hover .service-desc {
    color: rgba(255, 255, 255, 0.75);
}

.service-hover-content {
    margin-top: auto;
    padding-top: 1rem;
}

.service-btn {
    display: inline-block;
    font-family: "DM Mono", monospace;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #0a0a1a;
    text-decoration: none;
    padding-bottom: 4px;
    border-bottom: 1px solid #0a0a1a;
    transition: color 0.3s ease, border-color 0.3s ease, letter-spacing 0.3s ease;
}

.service-card:hover .service-btn {
    color: #ff6b35;
    border-bottom-color: #ff6b35;
    letter-spacing: 0.22em;
}

.service-card-socials {
    position: absolute;
    top: 2rem;
    right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    z-index: 3;
}

.service-card-socials .social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.service-card-socials .social-icon:hover {
    background: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.service-card-socials .social-icon svg {
    width: 16px;
    height: 16px;
}

/* ── Slider Section ── */
.team-slider-section {
    min-height: auto;
    background: #060913;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    overflow: hidden;
}

.team-slider {
    width: 100%;
    max-width: 1300px;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    align-items: center;
}

.team-image {
    position: relative;
    height: 480px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.team-nav {
    position: absolute;
    left: 0;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    font-family: "DM Mono", monospace;
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #ffffff;
    cursor: pointer;
    writing-mode: vertical-lr;
    padding: 1.5rem 1rem;
    transition: background 0.3s;
    z-index: 2;
}

.team-next {
    top: 0;
    height: 50%;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
}

.team-prev {
    bottom: 0;
    height: 50%;
}

.team-nav:hover {
    background: rgba(255, 255, 255, 0.1);
}

.team-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem;
    height: 480px;
}

.team-name {
    font-family: "Host Grotesk", sans-serif;
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    margin-bottom: auto;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.team-location {
    font-family: "DM Mono", monospace;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.5);
    margin-top: auto;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.team-din {
    font-family: "DM Mono", monospace;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.5);
    margin-top: auto;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.team-email {
    display: inline-block;
    margin-top: 0.5rem;
    font-family: "DM Mono", monospace;
    font-size: 0.75rem;
    color: #f15a24;
    text-decoration: none;
    word-break: break-all;
    transition: opacity 0.5s ease, transform 0.5s ease, color 0.2s ease;
}

.team-email:hover {
    color: #ffb38a;
    text-decoration: underline;
}

.team-slider.animating .team-email {
    opacity: 0;
    transform: translateY(20px);
}

.team-bio {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
    padding: 3rem;
    height: 480px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.team-bio p {
    font-family: 'Raleway', 'Host Grotesk', sans-serif !important;
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    text-transform: none;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.team-slider.animating .team-name,
.team-slider.animating .team-location,
.team-slider.animating .team-din,
.team-slider.animating .team-bio p,
.team-slider.animating .team-image img {
    opacity: 0;
    transform: translateY(20px);
}

/* ── Team Section ── */
.team {
    background: #ffffff;
    padding: 3rem 2rem 6rem;
    overflow: hidden;
}

.team-container {
    max-width: 1368px;
    margin: 0 auto;
    position: relative;
}

.team-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 2rem;
    margin-bottom: 3rem;
}

.team-eyebrow {
    font-family: "DM Mono", monospace;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #666;
    display: block;
    margin-bottom: 1rem;
}

.team-heading {
    font-family: "Host Grotesk", sans-serif;
    font-size: clamp(1.25rem, 2vw, 1.75rem);
    font-weight: 700;
    color: #111;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.team-btn-desktop {
    display: inline-block;
    padding: 0.8rem 2rem;
    background: #0a0a1a;
    color: #ffffff;
    border-radius: 999px;
    font-family: "DM Mono", monospace;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    transition: transform 0.3s, background 0.3s;
}

.team-btn-desktop:hover {
    background: #2a2a3a;
    transform: translateY(-2px);
    color: #ffffff;
}

.team-btn-desktop-wrap {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.team-marquee {
    width: 100%;
    overflow: hidden;
    margin-top: 2rem;
}

.team-track {
    --team-card-width: 400px;
    --team-card-gap: 2rem;
    display: flex;
    gap: var(--team-card-gap);
    width: max-content;
    align-items: flex-start;
    animation: teamAutoScroll 40s linear infinite;
}

.team-marquee:hover .team-track {
    animation-play-state: paused;
}

.team-card {
    flex: 0 0 var(--team-card-width);
    position: relative;
}

@keyframes teamAutoScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - (var(--team-card-gap) / 2)));
    }
}

.team-card-image-wrap {
    position: relative;
    width: 90%;
    margin: 0 auto;
    aspect-ratio: 4 / 5.2;
    overflow: hidden;
    background: #f0f0f0;
    border-radius: 30px;
    transform: scale(0.95);
    transform-origin: center;
}

.team-card-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team-card:hover .team-card-image-wrap img {
    transform: scale(1.05);
}

/* Orange Share Icon */
.team-card-share {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.share-trigger {
    width: 48px;
    height: 48px;
    background: #f15a24;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    cursor: pointer;
    transition: transform 0.3s ease, background 0.3s ease;
}

.team-card-share:hover .share-trigger {
    background: #e04e1c;
    transform: scale(1.1);
}

.team-card-socials {
    display: flex;
    flex-direction: column;
    gap: 6px;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.team-card-share:hover .team-card-socials {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.team-card-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #ffffff;
    color: #f15a24;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
    text-decoration: none;
}

.team-card-socials a:hover {
    background: #f15a24;
    color: #ffffff;
    transform: scale(1.1);
}

/* Bottom Info Overlay (Peaked Shape) */
.team-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    padding: 2rem 1.5rem;
    text-align: center;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s ease;
    z-index: 5;
}

.team-card:hover .team-card-info {
    transform: translateY(0);
    opacity: 1;
}

.team-card-info-title {
    font-family: "Host Grotesk", sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #002b5c;
    /* Dark Blue from image */
    margin-bottom: 0.5rem;
}

.team-card-info-desc {
    font-family: "Host Grotesk", sans-serif;
    font-size: 0.8rem;
    color: #666666;
    line-height: 1.5;
    max-width: 90%;
    margin: 0 auto;
}

@keyframes teamAutoScroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(calc(-50% - (var(--team-card-gap) / 2)));
    }
}

/* ── Explore Section ── */
.explore {
    min-height: auto;
    background: #f5f5f8;
    padding: 4rem 2rem;
}

.explore-banner {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 0;
    overflow: hidden;
    aspect-ratio: 16 / 5;
}

.explore-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.explore-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(30, 30, 40, 0.45);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    text-align: center;
    padding: 2rem;
}

.explore-eyebrow {
    font-family: "DM Mono", monospace;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #ffffff;
}

.explore-heading {
    font-family: "Host Grotesk", sans-serif;
    font-size: clamp(1.2rem, 2.5vw, 2rem);
    font-weight: 600;
    color: #ffffff;
    line-height: 1.15;
    max-width: 600px;
}

.explore-btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    border-radius: 999px;
    font-family: "DM Mono", monospace;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: #ffffff;
    transition: background 0.3s, border-color 0.3s;
}

.explore-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #ffffff;
    color: #ffffff;
}

.explore-services {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid #ddd;
    margin-top: 3rem;
}

.explore-service {
    padding: 2rem 1rem;
    text-align: center;
    border-right: 1px solid #ddd;
    background: #f3f6fc;
    transition: transform 0.3s, background 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.explore-service:hover {
    background: #ffffff;
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    z-index: 1;
}

.explore-service:last-child {
    border-right: none;
}

.explore-service span {
    font-family: "DM Mono", monospace;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--fg);
}

@media (max-width: 1000px) {
    nav {
        width: calc(100% - 2rem);
        max-width: none;
        padding: 0.5rem 1.25rem;
    }

    .nav-logo {
        position: relative;
        z-index: 102;
    }

    .nav-logo img {
        width: 128px;
        height: 46px;
    }

    .services-header {
        flex-direction: column;
        gap: 1.5rem;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .service-card {
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
    }

    .service-card:last-child {
        border-bottom: none;
    }

    h1 {
        font-size: 2rem;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100dvh;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1.5rem;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s;
        transform: none;
        z-index: 101;
    }

    .nav-links.open {
        opacity: 1;
        pointer-events: auto;
    }

    .nav-link {
        font-size: 1.2rem;
    }

    .nav-hamburger {
        display: flex;
    }

    .nav-cta {
        display: inline-flex;
        padding: 0.45rem 0.75rem;
        font-size: 0.7rem;
    }

    .header h1,
    .client-logos,
    .hero-img-container {
        width: calc(100% - 4rem);
    }

    .team-slider {
        grid-template-columns: 1fr;
    }

    .team-image {
        height: 400px;
    }

    .team-info,
    .team-bio {
        height: auto;
        padding: 2rem;
    }

    .team-bio {
        border-left: none;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .team-section-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .team-track {
        --team-card-width: 360px;
        animation-duration: 30s;
    }

    .team-marquee {
        min-height: 480px;
    }

    .team-card:nth-child(6n + 1),
    .team-card:nth-child(6n + 4) {
        transform: translateY(120px);
    }

    .team-card:nth-child(6n + 2),
    .team-card:nth-child(6n + 5) {
        transform: translateY(60px);
    }

    .team-card:nth-child(6n + 3),
    .team-card:nth-child(6n + 6) {
        transform: translateY(0);
    }

    .about-overlay {
        width: 100%;
        background: rgba(45, 52, 64, 0.85);
        padding: 3rem 2rem;
    }

    .about-cta {
        width: 100%;
    }

    .explore-banner {
        aspect-ratio: 16 / 7;
    }

    .explore-services {
        grid-template-columns: 1fr;
        border-top: none;
    }

    .explore-service {
        border-right: none;
        border-bottom: 1px solid #ddd;
    }

    .explore-service:last-child {
        border-bottom: none;
    }
}

@media (max-width: 600px) {
    nav {
        top: 0.75rem;
        width: calc(100% - 1rem);
        padding: 0.45rem 0.75rem;
        border-radius: 9px;
    }

    .nav-logo img {
        width: 116px;
        height: 42px;
    }

    .nav-hamburger {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 360px) {
    .nav-logo img {
        width: 104px;
        height: 38px;
    }

    .nav-link {
        font-size: 1rem;
    }
}

@media (max-width: 640px) {
    .about-overlay {
        padding: 2rem 1.25rem;
        align-items: flex-end;
        padding-bottom: 6rem;
    }

    .about-heading {
        font-size: 1.5rem;
    }

    .explore {
        padding: 3rem 1.25rem;
    }

    .explore-banner {
        aspect-ratio: 4 / 3;
    }

    .team {
        padding: 4rem 1.25rem;
    }

    .team-grid {
        display: flex;
        flex-direction: column;
        gap: 3rem;
    }

    .team-col {
        padding-top: 0 !important;
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .team-btn-desktop-wrap {
        margin-top: 0;
        margin-bottom: 2rem;
    }

    .team-card-name {
        top: 1.25rem;
        left: 1.15rem;
        max-width: calc(100% - 6rem);
        font-size: 1.1rem;
    }

    .team-card-role {
        top: 1.4rem;
        right: 1.15rem;
        font-size: 0.58rem;
    }

    .team-card-overlay {
        padding: 1rem;
    }

    .team-card-socials {
        bottom: 1.25rem;
        gap: 0.5rem;
    }

    .social-icon {
        width: 28px;
        height: 28px;
    }

    .social-icon svg {
        width: 12px;
        height: 12px;
    }
}

/* ==================== Products Section ==================== */
.products {
    padding: 6rem 2rem;
    background: #ffffff;
}

.products-container {
    max-width: 1280px;
    margin: 0 auto;
}

.products-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 4rem;
}

.products-eyebrow {
    display: inline-block;
    color: #f15a24;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    margin-bottom: 1rem;
}

.products-heading {
    font-family: "Host Grotesk", sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.75rem);
    font-weight: 700;
    color: #0c1b2a;
    margin: 0 0 1rem;
    line-height: 1.2;
}

.products-desc {
    color: #6c7480;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.product-card {
    position: relative;
    overflow: hidden;
    border-radius: 6px;
    aspect-ratio: 4 / 3;
    cursor: pointer;
    isolation: isolate;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.product-card-tall {
    aspect-ratio: 4 / 3.6;
    margin-top: -2rem;
}

.products-grid .product-card:nth-child(5) {
    margin-top: 2rem;
}

.product-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 0;
}

.product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.15) 35%, rgba(0, 0, 0, 0.15) 65%, rgba(0, 0, 0, 0.55) 100%);
    z-index: 1;
    transition: background 0.5s ease;
}

.product-card:hover img {
    transform: scale(1.08);
}

.product-card:hover .product-overlay {
    background: linear-gradient(180deg, rgba(241, 90, 36, 0.55) 0%, rgba(0, 0, 0, 0.25) 50%, rgba(241, 90, 36, 0.55) 100%);
}

.product-location {
    position: absolute;
    top: 1.5rem;
    left: 0;
    right: 0;
    text-align: center;
    color: #ffffff;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    z-index: 2;
}

.product-title {
    position: absolute;
    top: 3rem;
    left: 1rem;
    right: 1rem;
    text-align: center;
    color: #ffffff;
    font-family: "Host Grotesk", sans-serif;
    font-size: clamp(1rem, 1.6vw, 1.4rem);
    font-weight: 600;
    margin: 0;
    z-index: 2;
}

.product-date {
    position: absolute;
    bottom: 1.25rem;
    left: 0;
    right: 0;
    text-align: center;
    color: #ffffff;
    font-size: 0.85rem;
    letter-spacing: 0.15em;
    z-index: 2;
}

@media (max-width: 768px) {
    .products {
        padding: 4rem 1.25rem;
    }

    .products-header {
        margin-bottom: 2.5rem;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .product-card-tall {
        margin-top: 0;
        aspect-ratio: 4 / 3;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }

    .product-title {
        font-size: 1.25rem;
    }
}

/* ==================== Features Section ==================== */
.features {
    padding: 6rem 2rem;
    background: #ffffff;
}

.features-container {
    max-width: 1280px;
    margin: 0 auto;
}

.features-header {
    text-align: center;
    margin-bottom: 4rem;
}

.features-eyebrow {
    display: inline-block;
    color: #1eaa3c;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: 0.75rem;
}

.features-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.features-divider-line {
    width: 60px;
    height: 2px;
    background: #f15a24;
}

.features-divider-icon {
    display: inline-flex;
}

.features-heading {
    font-family: "Host Grotesk", sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.75rem);
    font-weight: 700;
    color: #0c1b2a;
    margin: 0;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr 1fr;
    gap: 2rem;
    align-items: center;
}

.features-col {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.features-col-left {
    align-items: flex-start;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    max-width: 360px;
    cursor: pointer;
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-item:hover {
    transform: translateX(8px);
}

.feature-icon {
    position: relative;
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 2px dashed #f15a24;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.5s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-icon::before {
    content: "";
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ff7a3d 0%, #f15a24 100%);
    transform: scale(0);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: 0;
}

.feature-icon svg {
    position: relative;
    z-index: 1;
    transition: stroke 0.5s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-item:hover .feature-icon {
    border-style: solid;
    transform: rotate(8deg);
}

.feature-item:hover .feature-icon::before {
    transform: scale(0);
}

.feature-item:hover .feature-icon svg {
    stroke: #ffffff;
    transform: rotate(-8deg) scale(1.1);
}

.feature-text h3 {
    font-family: "Host Grotesk", sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0c1b2a;
    margin: 0 0 0.5rem;
    transition: color 0.4s ease;
}

.feature-text p {
    color: #6c7480;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    transition: color 0.4s ease;
}

.feature-item:hover .feature-text h3 {
    color: #f15a24;
}

.features-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.features-image img,
.features-image video {
    width: 100%;
    max-width: 480px;
    height: auto;
    display: block;
    border-radius: 16px;
}

.features-image video {
    max-width: 280px;
}

.features-col-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.feature-card {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 1.75rem 1.25rem;
    text-align: center;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.04);
    transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        box-shadow 0.5s cubic-bezier(0.22, 1, 0.36, 1),
        border-color 0.5s ease;
}

.feature-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #ff7a3d 0%, #f15a24 100%);
    transform: translateY(100%);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    z-index: -1;
}

.feature-card:hover::before {
    transform: translateY(0);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 36px rgba(241, 90, 36, 0.28);
    border-color: transparent;
}

.feature-card-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: #fdece4;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    transition: background 0.5s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-card-icon svg {
    transition: stroke 0.5s ease, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-card:hover .feature-card-icon {
    background: rgba(255, 255, 255, 0.18);
    transform: scale(1.08);
}

.feature-card:hover .feature-card-icon svg {
    stroke: #ffffff;
    transform: rotate(-8deg);
}

.feature-card h3 {
    font-family: "Host Grotesk", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #0c1b2a;
    margin: 0;
    line-height: 1.4;
    transition: color 0.5s ease, transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-card:hover h3 {
    color: #ffffff;
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: 1fr 1fr;
    }

    .features-image {
        grid-column: 1 / -1;
        order: -1;
    }

    .features-image img {
        max-width: 380px;
    }

    .features-image video {
        max-width: 220px;
    }
}

@media (max-width: 640px) {
    .features {
        padding: 4rem 1.25rem;
    }

    .features-header {
        margin-bottom: 2.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .features-col {
        gap: 1.75rem;
        align-items: center;
    }

    .feature-item {
        max-width: 100%;
    }

    .features-col-right {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .feature-icon {
        width: 64px;
        height: 64px;
    }

    .feature-icon svg {
        width: 26px;
        height: 26px;
    }

    .feature-card {
        padding: 1.25rem 0.75rem;
    }

    .feature-card-icon {
        width: 52px;
        height: 52px;
    }

    .feature-card h3 {
        font-size: 0.85rem;
    }
}

/* ==================== Blog Section ==================== */
.blog {
    padding: 6rem 2rem;
    background: #ffffff;
}

.blog-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 3rem;
}

.blog-sidebar {
    border-top: 1px solid #eee;
    padding-top: 2rem;
}

.blog-sidebar-eyebrow {
    display: block;
    font-family: "DM Mono", monospace;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #1eaa3c;
    margin-bottom: 1.5rem;
}

.blog-categories {
    list-style: none;
    margin: 0;
    padding: 0;
}

.blog-categories li {
    border-bottom: 1px solid #eee;
    padding: 1rem 0;
    color: #0c1b2a;
    font-family: "Host Grotesk", sans-serif;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.blog-categories li:hover,
.blog-categories li.active {
    color: #f15a24;
    padding-left: 0.5rem;
}

.blog-categories li.active {
    font-weight: 700;
}

.blog-card--extra {
    display: none;
}

.blog-grid--filtered {
    grid-template-columns: 1fr !important;
}

.blog-grid--filtered .blog-card--extra {
    display: block;
}

.blog-grid--filtered .blog-col-right {
    display: none;
}

.blog-grid--filtered .blog-col-left {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

@media (max-width: 600px) {
    .blog-grid--filtered .blog-col-left {
        grid-template-columns: 1fr;
    }
}

.blog-grid--filtered .blog-card {
    animation: blog-card-in 0.45s ease both;
}

@keyframes blog-card-in {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.blog-categories a {
    color: inherit;
    text-decoration: none;
    font: inherit;
}

.blog-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.blog-eyebrow {
    display: block;
    font-family: "DM Mono", monospace;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #666;
    margin-bottom: 0.5rem;
}

.blog-heading {
    font-family: "Host Grotesk", sans-serif;
    font-size: clamp(1.25rem, 2.2vw, 1.75rem);
    font-weight: 700;
    color: #0c1b2a;
    margin: 0;
}

.blog-view-all {
    background: #0c1b2a;
    color: #ffffff;
    text-decoration: none;
    padding: 0.85rem 1.75rem;
    border-radius: 999px;
    font-family: "DM Mono", monospace;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    font-weight: 500;
    text-transform: uppercase;
    white-space: nowrap;
    transition: background 0.3s ease, transform 0.3s ease;
}

.blog-view-all:hover {
    background: #f15a24;
    transform: translateY(-2px);
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.blog-col {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.blog-col-right {
    margin-top: 4rem;
}

.blog-card {
    cursor: pointer;
}

.blog-card-image {
    overflow: hidden;
    border-radius: 4px;
    margin-bottom: 1.25rem;
    aspect-ratio: 4 / 3;
}

.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.blog-card:hover .blog-card-image img {
    transform: scale(1.06);
}

.blog-card h3 {
    font-family: "Host Grotesk", sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0c1b2a;
    line-height: 1.3;
    margin: 0 0 0.6rem;
    text-transform: none;
    letter-spacing: 0;
    transition: color 0.3s ease;
}

.blog-card:hover h3 {
    color: #f15a24;
}

.blog-card p {
    font-family: "Host Grotesk", sans-serif;
    color: #6c7480;
    font-size: 0.95rem;
    font-weight: 400;
    line-height: 1.6;
    margin: 0 0 1.25rem;
    text-transform: none;
    letter-spacing: 0;
}

.blog-card-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #eee;
    font-family: "DM Mono", monospace;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #666;
}

.blog-card-cat {
    font-weight: 500;
}

@media (max-width: 900px) {
    .blog-container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .blog-sidebar {
        border-top: none;
        padding-top: 0;
    }

    .blog-categories {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .blog-categories li {
        border: 1px solid #eee;
        border-radius: 999px;
        padding: 0.5rem 1rem;
    }

    .blog-categories li:hover {
        padding-left: 1rem;
    }

    .blog-categories a:hover {
        padding-left: 1rem;
    }
}

@media (max-width: 640px) {
    .blog {
        padding: 4rem 1.25rem;
    }

    .blog-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .blog-col-right {
        margin-top: 0;
    }
}

/* ==================== Process Section ==================== */
.process {
    padding: 6rem 2rem;
    background: #ffffff;
}

.process-container {
    max-width: 1200px;
    margin: 0 auto;
}

.process-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 4rem;
}

.process-eyebrow {
    display: inline-block;
    font-family: "DM Mono", monospace;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #f15a24;
    margin-bottom: 1rem;
}

.process-heading {
    font-family: "Host Grotesk", sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.75rem);
    font-weight: 700;
    color: #0c1b2a;
    margin: 0 0 1rem;
    line-height: 1.2;
}

.process-desc {
    font-family: "Host Grotesk", sans-serif;
    color: #6c7480;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    text-transform: none;
    letter-spacing: 0;
}

.process-steps {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    position: relative;
    padding: 2rem 0;
}

.process-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.process-step-down {
    margin-top: 5rem;
}

.process-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: #1a8fe3;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(26, 143, 227, 0.25);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1), background 0.4s ease;
}

.process-step:hover .process-circle {
    transform: translateY(-6px) scale(1.05);
    background: #f15a24;
}

.process-label {
    font-family: "Host Grotesk", sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: #0c1b2a;
    text-align: center;
}

/* Curved arrows between steps */
.process-step::after {
    content: "";
    position: absolute;
    top: 30px;
    left: calc(50% + 50px);
    width: calc(100% - 30px);
    height: 60px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    z-index: 1;
    pointer-events: none;
}

/* Going down (step is up, next is down): arc curves downward */
.process-step:not(.process-step-down):not(:last-child)::after {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 60' fill='none' stroke='%231a8fe3' stroke-width='2' stroke-dasharray='4 4'><path d='M0 5 Q 50 80 100 55'/><polyline points='92,52 100,55 96,47' fill='%231a8fe3' stroke='none'/></svg>");
}

/* Going up (step is down, next is up): arc curves upward */
.process-step.process-step-down:not(:last-child)::after {
    top: -30px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 60' fill='none' stroke='%231a8fe3' stroke-width='2' stroke-dasharray='4 4'><path d='M0 55 Q 50 -20 100 5'/><polyline points='92,8 100,5 99,13' fill='%231a8fe3' stroke='none'/></svg>");
}

.process-step:last-child::after {
    display: none;
}

@media (max-width: 900px) {
    .process-steps {
        flex-direction: column;
        align-items: center;
        gap: 2.5rem;
    }

    .process-step,
    .process-step-down {
        margin-top: 0;
        flex: none;
    }

    .process-step::after {
        display: none;
    }

    .process-step:not(:last-child)::before {
        content: "";
        position: absolute;
        bottom: -2.5rem;
        left: 50%;
        width: 2px;
        height: 2rem;
        background: repeating-linear-gradient(to bottom, #1a8fe3 0 6px, transparent 6px 12px);
        transform: translateX(-50%);
    }
}

@media (max-width: 900px) and (min-width: 601px) {

    .process-step,
    .process-step-down {
        width: min(260px, 100%);
    }
}

@media (max-width: 640px) {
    .process {
        padding: 4rem 1.25rem;
    }

    .process-header {
        margin-bottom: 2.5rem;
    }

    .process-circle {
        width: 76px;
        height: 76px;
    }

    .process-circle svg {
        width: 28px;
        height: 28px;
    }
}

/* ==================== Industries Section ==================== */
.industries {
    padding: 6rem 0;
    background: #ffffff;
    overflow: hidden;
}

.industries-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 4rem;
    padding: 0 1.25rem;
}

.industries-eyebrow {
    display: inline-block;
    font-family: "DM Mono", monospace;
    color: #f15a24;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.industries-heading {
    font-family: "Host Grotesk", sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.75rem);
    font-weight: 700;
    color: #0c1b2a;
    margin: 0 0 1rem;
    line-height: 1.2;
}

.industries-desc {
    font-family: "Host Grotesk", sans-serif;
    color: #6c7480;
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    text-transform: none;
    letter-spacing: 0;
}

.industries-marquee {
    overflow: hidden;
    width: 100%;
}

.industries-track {
    display: flex;
    gap: 1.5rem;
    width: max-content;
    animation: industries-scroll 35s linear infinite;
}

.industries-marquee:hover .industries-track {
    animation-play-state: paused;
}

@keyframes industries-scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

.industry-card {
    position: relative;
    flex: 0 0 auto;
    width: 480px;
    aspect-ratio: 16 / 10;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.industry-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.industry-card:hover img {
    transform: scale(1.06);
}

.industry-label {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 1rem;
    text-align: center;
    color: #ffffff;
    font-family: "Host Grotesk", sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.55) 100%);
}

@media (max-width: 768px) {
    .industries {
        padding: 4rem 0;
    }

    .industries-header {
        margin-bottom: 2.5rem;
    }

    .industry-card {
        width: min(440px, 82vw);
        aspect-ratio: 16 / 10.5;
    }

    .industries-track {
        animation-duration: 28s;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .industry-card {
        width: min(380px, 86vw);
        aspect-ratio: 16 / 10.8;
    }

    .industry-label {
        font-size: 1.08rem;
        padding: 0.9rem;
    }
}

/* ==================== Contact Section ==================== */
.contact {
    background: #182333;
    padding: 5rem 1rem;
    min-height: auto;
    overflow: hidden;
}

@media (min-width: 640px) {
    .contact {
        padding: 4rem 1rem;
    }
}

@media (min-width: 768px) {
    .contact {
        padding: 5rem 1rem;
    }
}

@media (min-width: 1024px) {
    .contact {
        padding: 8rem 2rem;
    }
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

@media (min-width: 1024px) {
    .contact-container {
        flex-direction: row;
        align-items: center;
        gap: 4rem;
    }
}

.contact-form-wrap {
    width: 100%;
}

@media (min-width: 1024px) {
    .contact-form-wrap {
        width: 45%;
    }
}

.contact-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    font-family: "Host Grotesk", sans-serif;
    color: #f26a34;
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
    margin-bottom: 0;
}

@media (min-width: 640px) {
    .contact-eyebrow {
        font-size: 20px;
    }
}

.contact-heading {
    font-family: "Host Grotesk", sans-serif;
    font-size: 30px;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin: 0.5rem 0 0;
    text-transform: none;
}

@media (min-width: 640px) {
    .contact-heading {
        font-size: 36px;
    }
}

@media (min-width: 768px) {
    .contact-heading {
        font-size: 44px;
    }
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.75rem;
}

@media (min-width: 640px) {
    .contact-form {
        gap: 1.25rem;
        margin-top: 2rem;
    }
}

@media (min-width: 768px) {
    .contact-form {
        margin-top: 2.5rem;
    }
}

.contact-row {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 640px) {
    .contact-row {
        flex-direction: row;
        gap: 1.25rem;
    }
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    background: transparent;
    border: 1px solid #2b3a50;
    border-radius: 8px;
    padding: 0.875rem 1rem;
    font-family: "Host Grotesk", sans-serif;
    font-size: 14px;
    color: #ffffff;
    outline: none;
    transition: border-color 0.2s ease;
}

@media (min-width: 640px) {

    .contact-form input,
    .contact-form select,
    .contact-form textarea {
        padding: 1rem 1.25rem;
        font-size: 15px;
    }
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #6b7b92;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: #f26a34;
}

.contact-form textarea {
    resize: none;
    min-height: 150px;
}

.contact-select-wrap {
    position: relative;
}

.contact-form select {
    appearance: none;
    -webkit-appearance: none;
    color: #6b7b92;
    padding-right: 2.75rem;
    cursor: pointer;
}

.contact-form select option {
    background: #182333;
    color: #ffffff;
}

.contact-select-icon {
    position: absolute;
    top: 50%;
    right: 1.25rem;
    transform: translateY(-50%);
    pointer-events: none;
}

.contact-submit {
    width: 100%;
    margin-top: 0.5rem;
    background: #f26a34;
    color: #ffffff;
    border: none;
    border-radius: 999px;
    padding: 0.875rem 1.75rem;
    font-family: "Host Grotesk", sans-serif;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease;
}

@media (min-width: 640px) {
    .contact-submit {
        width: fit-content;
        margin-top: 1rem;
        padding: 0.875rem 2rem;
        font-size: 16px;
    }
}

.contact-submit:hover {
    transform: translateY(-2px);
}

/* Right side - map */
.contact-map-side {
    position: relative;
    display: flex;
    justify-content: center;
    width: 100%;
}

@media (min-width: 1024px) {
    .contact-map-side {
        width: 55%;
    }
}

.contact-map-inner {
    position: relative;
    margin-top: 0.5rem;
    width: 100%;
    max-width: 600px;
}

@media (min-width: 640px) {
    .contact-map-inner {
        margin-top: 1rem;
    }
}

@media (min-width: 1024px) {
    .contact-map-inner {
        margin-top: 0;
    }
}

@media (min-width: 1280px) {
    .contact-map-inner {
        transform: scale(1.1);
    }
}

.contact-map {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
    opacity: 0.5;
    mix-blend-mode: screen;
}

/* Glowing orange dots */
.contact-dot {
    position: absolute;
    z-index: 0;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #f26a34;
    box-shadow: 0 0 15px 4px rgba(242, 106, 52, 0.5);
}

@media (min-width: 640px) {
    .contact-dot {
        width: 12px;
        height: 12px;
    }
}

.contact-dot-1 {
    top: calc(48% - 100px);
    left: calc(72% - 145px);
}

.contact-dot-2 {
    top: calc(48% - 100px);
    left: calc(72% - 80px);
}

.contact-dot-3 {
    top: calc(48% - 50px);
    left: calc(72% - 145px);
}

.contact-dot-4 {
    top: calc(48% - 50px);
    left: calc(72% - 80px);
}

/* Green pulsing pin (India) */
.contact-pin {
    position: absolute;
    z-index: 10;
    top: 45%;
    left: 70%;
    transform: translate(-50%, -50%);
    display: none;
    align-items: center;
    justify-content: center;
}

@media (min-width: 640px) {
    .contact-pin {
        display: flex;
        left: calc(70% - 111px);
    }
}

@media (min-width: 768px) {
    .contact-pin {
        top: 48%;
        left: calc(72% - 111px);
    }
}

.contact-pin-ping {
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #82ab46;
    opacity: 0.4;
    animation: contact-ping 1.6s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@media (min-width: 640px) {
    .contact-pin-ping {
        width: 24px;
        height: 24px;
    }
}

@keyframes contact-ping {
    0% {
        transform: scale(1);
        opacity: 0.4;
    }

    75%,
    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}

.contact-pin-core {
    position: relative;
    z-index: 1;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #82ab46;
    border: 2px solid #a0cc5f;
}

@media (min-width: 640px) {
    .contact-pin-core {
        width: 12px;
        height: 12px;
        border-width: 2.5px;
    }
}

/* Floating info card */
.contact-card {
    position: relative;
    z-index: 20;
    margin: 1.5rem auto 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    width: 100%;
    max-width: 320px;
    background: #ffffff;
    border-radius: 14px;
    padding: 0.75rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.45);
    pointer-events: auto;
}

@media (min-width: 640px) {
    .contact-card {
        position: absolute;
        top: 45%;
        left: calc(70% - 111px);
        transform: translate(-50%, calc(-100% - 12px));
        margin: 0;
        width: 340px;
        max-width: none;
        gap: 1rem;
        padding: 0.875rem;
        border-radius: 16px;
    }
}

@media (min-width: 768px) {
    .contact-card {
        top: 48%;
        left: calc(72% - 111px);
    }
}

.contact-card-img {
    flex-shrink: 0;
    width: 90px;
    height: 90px;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    padding: 6px;
}

@media (min-width: 640px) {
    .contact-card-img {
        width: 100px;
        height: 100px;
    }
}

.contact-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.contact-card-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.25rem;
}

.contact-card-label {
    font-family: "Host Grotesk", sans-serif;
    color: #6b7280;
    font-size: 11px;
    margin: 0;
    text-transform: none;
    letter-spacing: 0;
}

@media (min-width: 640px) {
    .contact-card-label {
        font-size: 12px;
    }
}

.contact-card-text {
    font-family: "Host Grotesk", sans-serif;
    color: #0b1c3c;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin: 0;
    text-transform: none;
}

@media (min-width: 640px) {
    .contact-card-text {
        font-size: 14px;
    }
}

.contact-card-btn {
    margin-top: 0.25rem;
    align-self: flex-start;
    background: #1e2a3b;
    color: #ffffff;
    padding: 0.375rem 0.75rem;
    border-radius: 999px;
    font-family: "Host Grotesk", sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-decoration: none;
    text-transform: none;
    letter-spacing: 0;
    transition: background 0.2s ease;
}

@media (min-width: 640px) {
    .contact-card-btn {
        padding: 0.375rem 1rem;
        font-size: 12px;
    }
}

.contact-card-btn:hover {
    background: #f26a34;
    color: #ffffff;
}

.contact-card-arrow {
    display: none;
    position: absolute;
    bottom: -6px;
    left: 50%;
    width: 16px;
    height: 16px;
    background: #ffffff;
    transform: translateX(-50%) rotate(45deg);
    border-radius: 2px;
}

@media (min-width: 640px) {
    .contact-card-arrow {
        display: block;
    }
}

/* ==================== Hero Overlay Cards ==================== */
.hero-cards {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 3rem);
    max-width: 1280px;
    display: grid;
    grid-template-columns: 1.4fr 1fr 0.8fr 1.4fr;
    gap: 0.85rem;
    z-index: 10;
}

.hero-card {
    position: relative;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    padding: 1.25rem;
    color: #ffffff;
    overflow: hidden;
}

.hero-card-main {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    min-height: 220px;
    justify-content: space-between;
}

.hero-badge {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 999px;
    padding: 0.4rem 0.9rem;
    font-family: "Host Grotesk", sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: none;
    color: #ffffff;
}

.hero-card-title {
    font-family: "Host Grotesk", sans-serif;
    font-size: clamp(1.4rem, 2.2vw, 2rem);
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
    text-transform: none;
    letter-spacing: -0.02em;
}

.hero-card-actions {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    border-radius: 999px;
    font-family: "Host Grotesk", sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    text-transform: none;
    transition: transform 0.25s ease, background 0.25s ease;
}

.hero-btn:hover {
    transform: translateY(-2px);
}

.hero-btn-light {
    background: #ffffff;
    color: #0c1b2a;
    padding: 0.6rem 1.25rem;
}

.hero-btn-icon {
    background: rgba(0, 0, 0, 0.45);
    border: 1px solid rgba(255, 255, 255, 0.2);
    width: 38px;
    height: 38px;
    justify-content: center;
}

.hero-btn-play {
    background: rgba(0, 0, 0, 0.4);
    color: #ffffff;
    padding: 0.5rem 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
}

/* Stats column */
.hero-stats {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.hero-card-stat {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.5rem;
}

.hero-stat-num {
    font-family: "Host Grotesk", sans-serif;
    font-size: clamp(1.6rem, 2.4vw, 2.25rem);
    font-weight: 700;
    line-height: 1;
}

.hero-stat-label {
    font-family: "Host Grotesk", sans-serif;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.75);
    text-transform: none;
}

.hero-progress {
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    overflow: hidden;
}

.hero-progress span {
    display: block;
    height: 100%;
    background: #ffffff;
    border-radius: 999px;
}

.hero-stat-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.hero-stat-ring {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: conic-gradient(#f15a24 0 89%, rgba(255, 255, 255, 0.18) 89% 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    font-weight: 700;
    color: #ffffff;
    position: relative;
}

.hero-stat-ring::before {
    content: "";
    position: absolute;
    inset: 4px;
    border-radius: 50%;
    background: rgba(20, 30, 45, 0.85);
}

.hero-stat-ring span {
    position: relative;
    z-index: 1;
}

/* Video card */
.hero-card-video {
    padding: 0;
    min-height: 220px;
}

.hero-card-video img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-card-video::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.45) 100%);
}

.hero-video-label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 1;
    font-family: "Host Grotesk", sans-serif;
    font-weight: 800;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    text-transform: none;
}

.hero-video-play {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    z-index: 1;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
}

/* Right card */
.hero-card-right {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding: 1.25rem;
}

.hero-card-right h4 {
    font-family: "Host Grotesk", sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 0;
    text-transform: none;
    letter-spacing: -0.01em;
}

.hero-card-right p {
    font-family: "Host Grotesk", sans-serif;
    font-size: 0.78rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    text-transform: none;
    flex: 1;
}

/* ───── Hero responsive ───── */
@media (max-width: 1280px) {
    .hero-cards {
        width: calc(100% - 2.5rem);
        gap: 0.7rem;
    }

    .hero-card {
        padding: 1rem;
    }

    .hero-card-main {
        padding: 1.25rem;
    }
}

@media (max-width: 1100px) {
    .hero-cards {
        grid-template-columns: 1fr 1fr;
        bottom: 1rem;
        gap: 0.75rem;
    }

    .hero-card-main,
    .hero-card-video {
        min-height: 180px;
    }

    .header h1 {
        width: 70%;
    }
}

@media (max-width: 900px) {
    .hero-cards {
        grid-template-columns: 1fr 1fr;
        gap: 0.6rem;
    }

    .hero-card-main,
    .hero-card-video {
        min-height: 170px;
    }

    .hero-card-title {
        font-size: clamp(1.2rem, 3.5vw, 1.6rem);
    }

    .hero-card-right h4 {
        font-size: 1rem;
    }

    .hero-card-right p {
        font-size: 0.75rem;
    }

    .hero-stat-num {
        font-size: clamp(1.4rem, 3.2vw, 1.8rem);
    }
}

@media (max-width: 768px) {
    .hero-cards {
        display: none;
    }

    .header h1 {
        width: 90%;
        font-size: 2.25rem;
    }

    .hero-content {
        top: 40%;
    }
}

@media (max-width: 480px) {
    .header h1 {
        width: 95%;
        font-size: 1.6rem;
    }

    .hero-content {
        top: 44%;
    }
}

@media (max-width: 360px) {
    .header h1 {
        font-size: 1.4rem;
    }

    .hero-card-title {
        font-size: 1.2rem;
    }

    .hero-card-actions {
        gap: 0.4rem;
    }
}

/* ═══════════════ Footer ═══════════════ */
.progen-footer {
    position: relative;
    background: #0F0F11;
    border-radius: 0;
    overflow: hidden;
    margin: 0;
    color: #9ca3af;
}

.footer-bg-gradient {
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(125% 125% at 50% 10%, #0F0F1166 50%, #3ca2fa33 100%);
    pointer-events: none;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3.5rem;
    position: relative;
    z-index: 2;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 2rem 4rem;
    padding-bottom: 3rem;
}

.footer-brand-desc {
    font-size: 0.85rem;
    line-height: 1.6;
    text-transform: none;
    color: #9ca3af;
    margin-top: 1rem;
    text-align: center;
}

.footer-logo {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.footer-logo-img {
    width: 200px;
    height: 100px;
    background: #fff;
    border-radius: 8px;
    padding: 4px;
    object-fit: contain;
    display: block;
    margin: 0 auto;
}

.footer-logo-text {
    color: #fff;
    font-family: "Host Grotesk", sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
}

.footer-col-title {
    color: #fff;
    font-family: "Host Grotesk", sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-transform: none;
}

.footer-links-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-links-col a {
    color: #9ca3af;
    font-size: 0.85rem;
    transition: color 0.2s;
    text-transform: none;
}

.footer-links-col a:hover {
    color: #3ca2fa;
}

.footer-live-chat-item {
    position: relative;
}

.footer-pulse-dot {
    position: absolute;
    top: 2px;
    right: -14px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #3ca2fa;
    animation: pulse-dot 1.5s infinite;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.4);
    }
}

.footer-contact-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.footer-contact-list span {
    font-size: 0.85rem;
    text-transform: none;
}

.footer-contact-list a {
    text-transform: none;
}

.footer-divider {
    border: none;
    border-top: 1px solid #374151;
    margin: 2rem 0 0;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-socials {
    display: flex;
    gap: 1.5rem;
}

.footer-socials a {
    color: #9ca3af;
    transition: color 0.2s;
}

.footer-socials a:hover {
    color: #3ca2fa;
}

.footer-copy {
    font-size: 0.85rem;
    text-transform: none;
    color: #9ca3af;
}

/* SVG hover text */
.footer-hover-text {
    display: flex;
    height: 24rem;
    margin-top: -4rem;
    margin-bottom: -6rem;
    position: relative;
    z-index: 1;
}

.footer-svg-text {
    cursor: pointer;
    user-select: none;
}

.footer-svg-stroke {
    fill: transparent;
    stroke: #262626;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    opacity: 0;
    transition: opacity 0.3s;
}

.footer-letter {
    cursor: pointer;
}

.footer-svg-animated {
    fill: transparent;
    stroke: #ffffff;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    animation: footer-dash 4s ease-in-out forwards;
    transition: opacity 0.3s;
}

.footer-letter:hover .footer-svg-animated {
    opacity: 0;
}

@keyframes footer-dash {
    to {
        stroke-dashoffset: 0;
    }
}

.footer-svg-gradient {
    fill: transparent;
    font-family: Helvetica, Arial, sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    opacity: 0;
    transition: opacity 0.3s;
}

.footer-letter:hover .footer-svg-gradient {
    opacity: 1;
}

/* Responsive */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .footer-hover-text {
        display: none;
    }
}

@media (max-width: 600px) {
    .progen-footer {
        margin: 0;
    }

    .footer-content {
        padding: 2rem 1.5rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

/* ═══════════════════════════════════════════════════════════════
   GLOBAL RESPONSIVE — Home page (catch-all for all devices)
   ═══════════════════════════════════════════════════════════════ */

/* Tablet ≤ 1024px */
@media (max-width: 1024px) {
    section {
        width: 100%;
    }

    .services-grid,
    .features-grid,
    .blog-grid,
    .products-grid,
    .industries-grid {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .about-overlay,
    .explore-banner-overlay,
    .process-container,
    .features-container {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
}

/* Tablet ≤ 900px */
@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .features-col-left,
    .features-col-right {
        grid-template-columns: 1fr 1fr;
        display: grid;
        gap: 1rem;
    }

    .features-image {
        order: -1;
    }

    .features-image img,
    .features-image video {
        max-width: 280px;
        margin: 0 auto;
    }

    .blog-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .blog-col-right {
        grid-template-columns: 1fr 1fr;
        display: grid;
        gap: 1rem;
    }

    .products-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    .product-card-tall {
        grid-row: auto;
    }

    .process-steps {
        flex-wrap: wrap;
        gap: 1.5rem;
        justify-content: center;
    }

    .process-step,
    .process-step-down {
        transform: none !important;
    }

    .industries-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
    }

    h1 {
        font-size: 2.25rem;
    }

    h2 {
        font-size: 1.85rem;
    }
}

/* Mobile ≤ 768px */
@media (max-width: 768px) {
    section {
        min-height: auto;
    }

    .about-overlay {
        padding: 3rem 1.25rem;
    }

    .about-heading {
        font-size: 1.5rem;
        line-height: 1.3;
    }

    .about-cta {
        bottom: 1rem;
        right: 1rem;
        padding: 0.75rem 1rem;
        font-size: 0.75rem;
    }

    .explore-banner-overlay {
        padding: 2rem 1.25rem;
    }

    .explore-heading {
        font-size: 1.5rem;
    }

    .services-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .services-heading {
        font-size: 1.85rem;
    }

    .team-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .team-heading {
        font-size: 1.85rem;
    }

    .features-header {
        padding: 0 1rem;
    }

    .features-heading {
        font-size: 1.85rem;
    }

    .blog-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 0 1rem;
    }

    .blog-heading {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .process-heading {
        font-size: 1.6rem;
    }

    .process-desc {
        font-size: 0.85rem;
    }

    .industries-heading {
        font-size: 1.85rem;
    }
}

/* Phone ≤ 600px */
@media (max-width: 600px) {

    .features-col-left,
    .features-col-right {
        grid-template-columns: 1fr;
    }

    .blog-col-right {
        grid-template-columns: 1fr;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 0.85rem;
    }

    .product-card {
        aspect-ratio: 16/10;
    }

    .industries-grid {
        grid-template-columns: 1fr;
    }

    .process-steps {
        width: min(100%, 360px);
        margin: 0 auto;
        align-items: stretch;
        gap: 2rem;
        padding: 1rem 0;
    }

    .process-step,
    .process-step-down {
        display: grid;
        grid-template-columns: 72px minmax(0, 1fr);
        align-items: center;
        gap: 1rem;
        width: 100%;
        text-align: left;
    }

    .process-step:not(:last-child)::before {
        left: 36px;
        bottom: -2rem;
        height: 2rem;
        transform: translateX(-50%);
    }

    .process-circle {
        width: 60px;
        height: 60px;
        flex-shrink: 0;
        justify-self: center;
    }

    .process-circle svg {
        width: 26px;
        height: 26px;
    }

    .process-label {
        width: 100%;
        text-align: left;
        font-size: 0.95rem;
        line-height: 1.25;
    }

    .about-overlay {
        padding: 2.5rem 1rem;
    }

    .about-heading {
        font-size: 1.3rem;
    }

    .explore-banner-overlay {
        padding: 1.5rem 1rem;
    }

    .explore-heading {
        font-size: 1.3rem;
    }

    .explore-btn {
        padding: 0.65rem 1.25rem;
        font-size: 0.8rem;
    }

    .services-heading,
    .team-heading,
    .features-heading,
    .industries-heading {
        font-size: 1.55rem;
    }

    .blog-heading {
        font-size: 1.4rem;
    }

    h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.5rem;
    }
}

/* Small phone ≤ 480px */
@media (max-width: 480px) {
    .about-cta {
        padding: 0.6rem 0.85rem;
        font-size: 0.7rem;
    }

    .about-cta-icon {
        font-size: 1rem;
    }

    .service-card {
        padding: 1.5rem 1.25rem;
        min-height: 260px;
    }

    .service-title {
        font-size: 1.25rem;
    }

    .service-desc {
        font-size: 0.85rem;
    }

    .blog-card {
        padding: 0.85rem;
    }

    .blog-card h3 {
        font-size: 0.9rem;
    }

    .blog-card p {
        font-size: 0.78rem;
    }

    .process-steps {
        width: min(100%, 310px);
        gap: 1.8rem;
    }

    .process-step,
    .process-step-down {
        grid-template-columns: 64px minmax(0, 1fr);
        gap: 0.85rem;
    }

    .process-step:not(:last-child)::before {
        left: 32px;
        bottom: -1.8rem;
        height: 1.8rem;
    }

    .process-circle {
        width: 56px;
        height: 56px;
    }

    .process-circle svg {
        width: 24px;
        height: 24px;
    }

    .process-label {
        font-size: 0.9rem;
    }

    .features-image img,
    .features-image video {
        max-width: 220px;
    }

    .services-heading,
    .team-heading,
    .features-heading,
    .industries-heading,
    .blog-heading {
        font-size: 1.35rem;
    }

    h1 {
        font-size: 1.55rem;
    }

    h2 {
        font-size: 1.35rem;
    }
}

/* Tiny phone ≤ 360px */
@media (max-width: 360px) {

    .ir-container,
    .features-grid,
    .blog-grid,
    .products-grid {
        padding-left: 0.85rem;
        padding-right: 0.85rem;
    }

    h1 {
        font-size: 1.35rem;
    }

    .about-heading,
    .explore-heading {
        font-size: 1.15rem;
    }
}

/* Prevent horizontal overflow on the whole page */
html,
body {
    overflow-x: hidden;
    max-width: 100vw;
}

img,
video {
    max-width: 100%;
    height: auto;
}

/* ───── OUR SERVICES marquee (.team) responsive ───── */
@media (max-width: 1024px) {
    .team {
        padding: 3rem 1.5rem 4rem;
    }

    .team-track {
        --team-card-width: 320px;
        --team-card-gap: 1.5rem;
        animation-duration: 28s;
    }

    .team-marquee {
        min-height: 420px;
    }

    .team-card-image-wrap {
        border-radius: 24px;
    }

    .team-card-info-title {
        font-size: 1.5rem;
    }

    .team-card-info-desc {
        font-size: 0.85rem;
    }

    .team-card-share {
        top: 1rem;
        right: 1rem;
    }

    .share-trigger {
        width: 42px;
        height: 42px;
    }
}

@media (max-width: 768px) {
    .team {
        padding: 2.5rem 1rem 3rem;
    }

    .team-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 2rem;
    }

    .team-track {
        --team-card-width: min(340px, 78vw);
        --team-card-gap: 1.25rem;
        animation-duration: 24s;
    }

    .team-marquee {
        min-height: 430px;
    }

    /* Remove staggered offsets on mobile so all cards line up */
    .team-card,
    .team-card:nth-child(6n + 1),
    .team-card:nth-child(6n + 2),
    .team-card:nth-child(6n + 4),
    .team-card:nth-child(6n + 5) {
        transform: none !important;
    }

    .team-card-image-wrap {
        width: 100%;
        transform: none;
        border-radius: 20px;
    }

    .team-card-info {
        padding: 1.25rem 1rem;
    }

    .team-card-info-title {
        font-size: 1.25rem;
    }

    .team-card-info-desc {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .share-trigger {
        width: 38px;
        height: 38px;
    }

    .team-card-socials a {
        width: 30px;
        height: 30px;
    }

    /* Reveal info by default on touch devices since hover doesn't work */
    .team-card-info {
        transform: translateY(0);
        opacity: 1;
        position: relative;
        background: #fff;
    }

    .team-card-image-wrap {
        aspect-ratio: 4 / 4.4;
    }
}

@media (max-width: 480px) {
    .team {
        padding: 2rem 0.75rem 2.5rem;
    }

    .team-track {
        --team-card-width: min(320px, 76vw);
        --team-card-gap: 1rem;
        animation-duration: 22s;
    }

    .team-marquee {
        min-height: 400px;
    }

    .team-card-info-title {
        font-size: 1.1rem;
    }

    .team-card-info-desc {
        font-size: 0.75rem;
    }

    .share-trigger {
        width: 34px;
        height: 34px;
    }

    .team-btn-desktop {
        padding: 0.6rem 1.4rem;
        font-size: 0.7rem;
    }
}

@media (max-width: 360px) {
    .team-track {
        --team-card-width: min(280px, 78vw);
    }

    .team-marquee {
        min-height: 360px;
    }
}

/* Navbar Dropdown Styles */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.nav-dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffffff;
    min-width: 220px;
    box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.12);
    z-index: 1000;
    border-radius: 8px;
    padding: 0.5rem 0;
    margin-top: 1rem;
}

.nav-dropdown-menu::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent;
}

.nav-dropdown:hover .nav-dropdown-menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 0.5rem;
    min-width: 380px;
}

.nav-dropdown-menu a {
    color: #241910;
    padding: 10px 20px;
    text-decoration: none;
    display: block;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: none;
    text-align: left;
    transition: all 0.2s ease;
}

.nav-dropdown-menu a:hover {
    background-color: #f8f9fa;
    color: #10b981;
    /* emerald-500 equivalent */
}

/* Specific styling for the More dropdown to match reference image */
.nav-links .nav-dropdown:last-child .nav-dropdown-menu {
    border-radius: 12px;
    padding: 15px 25px;
    width: 260px;
    min-width: 260px;
}
.nav-links .nav-dropdown:last-child:hover .nav-dropdown-menu {
    display: flex;
    flex-direction: column;
}
.nav-links .nav-dropdown:last-child .nav-dropdown-menu a {
    color: #333333;
    padding: 14px 0;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    border-bottom: 1px solid #e5e7eb;
    white-space: normal;
    line-height: 1.4;
}
.nav-links .nav-dropdown:last-child .nav-dropdown-menu a:last-child {
    border-bottom: none;
}
.nav-links .nav-dropdown:last-child .nav-dropdown-menu a:hover {
    background-color: transparent;
    color: #10b981;
}

@media (max-width: 900px) {
    .nav-dropdown {
        display: block;
        width: 100%;
        text-align: left;
        border-bottom: 1px solid #f1ece2;
    }

    .nav-dropdown>.nav-link {
        border-bottom: none !important;
        display: block;
        width: 100%;
    }

    .nav-dropdown-menu {
        position: static;
        box-shadow: none;
        transform: none;
        background: #faf6ec;
        display: none;
        margin-top: 0;
        min-width: unset;
    }

    .nav-dropdown-menu a {
        text-align: left;
    }

    .nav-dropdown.active .nav-dropdown-menu {
        display: flex;
        flex-direction: column;
    }
}


/* =====================================================================
   ✦ ENHANCEMENTS: nav, projects, our services, our products, features
   Pure CSS — no markup/content changes. Adds animations, infographic
   accents, hover & transition effects.
   ===================================================================== */

@keyframes pg-fade-up {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pg-fade-in {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes pg-pop-in {
    0% {
        opacity: 0;
        transform: scale(0.85) rotate(-6deg);
    }

    60% {
        opacity: 1;
        transform: scale(1.05) rotate(2deg);
    }

    100% {
        opacity: 1;
        transform: scale(1) rotate(0);
    }
}

@keyframes pg-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

@keyframes pg-spin-slow {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pg-shimmer {
    0% {
        background-position: -200% 0;
    }

    100% {
        background-position: 200% 0;
    }
}

@keyframes pg-pulse-ring {
    0% {
        box-shadow: 0 0 0 0 rgba(30, 170, 60, 0.55);
    }

    70% {
        box-shadow: 0 0 0 14px rgba(30, 170, 60, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(30, 170, 60, 0);
    }
}

@keyframes pg-sheen {
    0% {
        transform: translateX(-120%) skewX(-20deg);
    }

    100% {
        transform: translateX(220%) skewX(-20deg);
    }
}

@keyframes pg-bob {

    0%,
    100% {
        transform: translateY(0) rotate(0);
    }

    50% {
        transform: translateY(-8px) rotate(3deg);
    }
}

/* ---------- 2. PROJECTS (.services-new) ---------- */
.services-new .services-eyebrow {
    display: inline-block;
    position: relative;
    padding-left: 28px;
}

.services-new .services-eyebrow::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 18px;
    height: 2px;
    background: #1eaa3c;
    transform: translateY(-50%);
    animation: pg-shimmer 2.2s linear infinite;
    background-image: linear-gradient(90deg, #1eaa3c 0%, #a4d96b 50%, #1eaa3c 100%);
    background-size: 200% 100%;
}

.services-heading {
    background: linear-gradient(90deg, var(--fg) 0%, #1eaa3c 60%, var(--fg) 100%);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: pg-shimmer 6s linear infinite;
}

.service-card {
    position: relative;
    overflow: hidden;
    transition: transform .5s cubic-bezier(.2, .8, .2, 1),
        box-shadow .5s ease,
        border-color .4s ease;
    will-change: transform;
}

.service-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(30, 170, 60, .08), rgba(26, 143, 227, .08));
    opacity: 0;
    transition: opacity .45s ease;
    pointer-events: none;
    z-index: 0;
}

.service-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255, 255, 255, .55) 50%, transparent 100%);
    transform: translateX(-150%) skewX(-20deg);
    pointer-events: none;
    z-index: 1;
}

.service-card:hover {
    transform: translateY(-10px) scale(1.015);
    box-shadow: 0 22px 40px -18px rgba(36, 25, 16, .28);
}

.service-card:hover::before {
    opacity: 1;
}

.service-card:hover::after {
    animation: pg-sheen 1s ease forwards;
}

.service-card>* {
    position: relative;
    z-index: 2;
}

.service-icon {
    transition: transform .5s cubic-bezier(.2, .8, .2, 1), background .4s ease, color .4s ease;
}

.service-card:hover .service-icon {
    transform: rotate(-8deg) scale(1.12);
    animation: pg-pulse-ring 1.6s ease-out infinite;
    background: #1eaa3c;
    color: #fff;
}

.service-title {
    transition: color .3s ease, transform .4s ease;
}

.service-card:hover .service-title {
    color: #1eaa3c;
    transform: translateX(4px);
}

.services-grid>.service-card {
    animation: pg-fade-up .7s ease both;
}

.services-grid>.service-card:nth-child(1) {
    animation-delay: .05s;
}

.services-grid>.service-card:nth-child(2) {
    animation-delay: .18s;
}

.services-grid>.service-card:nth-child(3) {
    animation-delay: .31s;
}

/* ---------- 4. OUR PRODUCTS ---------- */
.products-eyebrow {
    display: inline-block;
    position: relative;
    padding-left: 28px;
}

.products-eyebrow::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 18px;
    height: 2px;
    background-image: linear-gradient(90deg, #1a8fe3 0%, #a4d96b 50%, #1a8fe3 100%);
    background-size: 200% 100%;
    transform: translateY(-50%);
    animation: pg-shimmer 2.2s linear infinite;
}

.products-heading {
    background: linear-gradient(90deg, var(--fg), #1a8fe3, var(--fg));
    background-size: 200% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: pg-shimmer 7s linear infinite;
}

.products-grid .product-card {
    overflow: hidden;
    position: relative;
    transition: transform .6s cubic-bezier(.2, .8, .2, 1), box-shadow .5s ease;
    animation: pg-fade-up .7s ease both;
}

.products-grid .product-card:nth-child(1) {
    animation-delay: .05s
}

.products-grid .product-card:nth-child(2) {
    animation-delay: .12s
}

.products-grid .product-card:nth-child(3) {
    animation-delay: .19s
}

.products-grid .product-card:nth-child(4) {
    animation-delay: .26s
}

.products-grid .product-card:nth-child(5) {
    animation-delay: .33s
}

.products-grid .product-card:nth-child(6) {
    animation-delay: .40s
}

.product-card img {
    transition: transform 1s cubic-bezier(.2, .8, .2, 1), filter .5s ease;
}

.product-card:hover img {
    transform: scale(1.1);
    filter: saturate(1.2);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 26px 48px -22px rgba(36, 25, 16, .4);
}

.product-overlay {
    background: linear-gradient(180deg, transparent 35%, rgba(36, 25, 16, .85)) !important;
    transition: opacity .5s ease, background .5s ease;
}

.product-card:hover .product-overlay {
    background: linear-gradient(180deg, rgba(30, 170, 60, .15) 0%, rgba(36, 25, 16, .92)) !important;
}

.product-title {
    transition: transform .5s cubic-bezier(.2, .8, .2, 1), letter-spacing .5s ease, color .3s ease;
}

.product-card:hover .product-title {
    transform: translateY(-6px);
    letter-spacing: .04em;
}

.product-location {
    overflow: hidden;
    position: relative;
    transition: background .35s ease, color .35s ease, transform .4s ease;
}

.product-location::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .6), transparent);
    transform: translateX(-120%);
    transition: transform .7s ease;
}

.product-card:hover .product-location {
    background: #1eaa3c;
    color: #fff;
    transform: translateY(-2px);
}

.product-card:hover .product-location::after {
    transform: translateX(120%);
}

/* infographic “shine” sweep on tall cards */
.product-card-tall::before {
    content: "";
    position: absolute;
    top: 0;
    left: -60%;
    width: 50%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .18), transparent);
    transform: skewX(-20deg);
    z-index: 2;
    pointer-events: none;
    transition: left .9s cubic-bezier(.2, .8, .2, 1);
}

.product-card-tall:hover::before {
    left: 130%;
}

/* ---------- 5. FEATURES ---------- */
.features-eyebrow {
    display: inline-block;
    position: relative;
    padding: 0 18px;
}

.features-divider-line {
    background: linear-gradient(90deg, transparent, #f15a24, transparent) !important;
    background-size: 200% 100% !important;
    animation: pg-shimmer 3s linear infinite;
}

.features-divider-icon {
    display: inline-flex;
    animation: pg-spin-slow 6s linear infinite;
    transform-origin: center;
}

.features-heading {
    animation: pg-fade-up .8s ease both;
}

.feature-item,
.feature-card {
    transition: transform .5s cubic-bezier(.2, .8, .2, 1),
        box-shadow .5s ease,
        background .4s ease;
    position: relative;
    overflow: hidden;
    animation: pg-fade-up .7s ease both;
}

.features-col-left .feature-item:nth-child(1) {
    animation-delay: .05s
}

.features-col-left .feature-item:nth-child(2) {
    animation-delay: .18s
}

.features-col-left .feature-item:nth-child(3) {
    animation-delay: .31s
}

.features-col-right .feature-card:nth-child(1) {
    animation-delay: .10s
}

.features-col-right .feature-card:nth-child(2) {
    animation-delay: .23s
}

.features-col-right .feature-card:nth-child(3) {
    animation-delay: .36s
}

.features-col-right .feature-card:nth-child(4) {
    animation-delay: .49s
}

.feature-item:hover,
.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 36px -22px rgba(36, 25, 16, .28);
}

.feature-item::before,
.feature-card::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #1eaa3c, #a4d96b);
    transform: scaleY(0);
    transform-origin: top center;
    transition: transform .5s cubic-bezier(.2, .8, .2, 1);
}

.feature-item:hover::before,
.feature-card:hover::before {
    transform: scaleY(1);
}

.feature-icon,
.feature-card-icon {
    transition: transform .5s cubic-bezier(.2, .8, .2, 1), filter .4s ease;
    will-change: transform;
}

.feature-item:hover .feature-icon,
.feature-card:hover .feature-card-icon {
    transform: rotate(-8deg) scale(1.18);
    filter: drop-shadow(0 6px 10px rgba(30, 170, 60, .35));
    animation: pg-float 2.4s ease-in-out infinite;
}

.feature-text h3,
.feature-card h3 {
    transition: color .3s ease, transform .4s ease;
}

.feature-item:hover .feature-text h3,
.feature-card:hover h3 {
    color: #1eaa3c;
    transform: translateX(4px);
}

/* center video — soft glow + zoom on hover */
.features-image {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    transition: transform .6s cubic-bezier(.2, .8, .2, 1), box-shadow .5s ease;
}

.features-image::after {
    content: "";
    position: absolute;
    inset: -2px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(30, 170, 60, .0), rgba(241, 90, 36, .0));
    pointer-events: none;
    transition: background .5s ease, box-shadow .5s ease;
    z-index: 2;
}

.features-image video {
    transition: transform .8s cubic-bezier(.2, .8, .2, 1), filter .5s ease;
    display: block;
    width: 100%;
    height: 100%;
}

.features-image:hover {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 30px 60px -28px rgba(30, 170, 60, .45);
}

.features-image:hover video {
    transform: scale(1.04);
    filter: saturate(1.15) contrast(1.05);
}

.features-image:hover::after {
    background: linear-gradient(135deg, rgba(30, 170, 60, .18), rgba(241, 90, 36, .12));
    box-shadow: inset 0 0 0 2px rgba(30, 170, 60, .35);
}

/* Reduce motion — respect user preference */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: .001ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .001ms !important;
    }
}

/* =====================================================================
   ✦ ENHANCEMENTS v2 — Industries / Process / Popular Categories,
     Features & Our Services polish, Products "India" hidden,
     Projects (team-slider) Next/Prev fix
   ===================================================================== */

@keyframes pg-rise {
    from {
        opacity: 0;
        transform: translateY(28px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes pg-grow-line {
    from {
        transform: scaleX(0)
    }

    to {
        transform: scaleX(1)
    }
}

@keyframes pg-orbit {
    to {
        transform: rotate(360deg)
    }
}

@keyframes pg-dash-flow {
    to {
        stroke-dashoffset: -200
    }
}

@keyframes pg-glow {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(30, 170, 60, .45)
    }

    50% {
        box-shadow: 0 0 0 14px rgba(30, 170, 60, 0)
    }
}

@keyframes pg-tilt {

    0%,
    100% {
        transform: rotate(-2deg)
    }

    50% {
        transform: rotate(2deg)
    }
}

@keyframes pg-marquee-pop {
    from {
        opacity: 0;
        transform: translateY(20px) scale(.96)
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1)
    }
}

/* ============ 2. PRODUCTS — hide "India" location ============ */
.product-location {
    display: none !important;
}

/* ============ 3b. FEATURES — professional redesign ============ */
.features {
    background: linear-gradient(180deg, #fafbfc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.features::before {
    /* subtle blueprint grid backdrop */
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(30, 170, 60, .05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(30, 170, 60, .05) 1px, transparent 1px);
    background-size: 36px 36px;
    mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at center, #000 30%, transparent 75%);
    pointer-events: none;
}

.features-container {
    position: relative;
    z-index: 1;
}

.feature-item,
.feature-card {
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid rgba(12, 27, 42, .06);
    padding: 1.4rem 1.4rem 1.4rem 1.6rem;
    box-shadow: 0 6px 18px -10px rgba(12, 27, 42, .15);
}

.feature-item:hover,
.feature-card:hover {
    border-color: rgba(30, 170, 60, .35);
    box-shadow: 0 22px 36px -22px rgba(30, 170, 60, .32);
}

/* upgraded left accent bar */
.feature-item::before,
.feature-card::before {
    width: 5px;
    border-radius: 0 4px 4px 0;
}

/* numbered badges on features-col-left items */
.features-col-left {
    counter-reset: pgfeat;
}

.features-col-left .feature-item {
    counter-increment: pgfeat;
    position: relative;
}

.features-col-left .feature-item::after {
    content: "0" counter(pgfeat);
    position: absolute;
    top: 12px;
    right: 16px;
    font-family: "DM Mono", monospace;
    font-size: .75rem;
    font-weight: 700;
    letter-spacing: .18em;
    color: rgba(30, 170, 60, .7);
    background: rgba(30, 170, 60, .08);
    padding: 4px 8px;
    border-radius: 6px;
    transition: background .3s ease, color .3s ease, transform .3s ease;
}

.features-col-left .feature-item:hover::after {
    background: #1eaa3c;
    color: #fff;
    transform: rotate(-4deg);
}

.feature-icon,
.feature-card-icon {
    background: linear-gradient(135deg, rgba(30, 170, 60, .12), rgba(26, 143, 227, .10));
    border-radius: 12px;
    padding: 10px;
    transition: transform .5s cubic-bezier(.2, .8, .2, 1), background .4s ease, box-shadow .4s ease;
}

.feature-item:hover .feature-icon,
.feature-card:hover .feature-card-icon {
    background: linear-gradient(135deg, #1eaa3c, #a4d96b);
    box-shadow: 0 10px 24px -10px rgba(30, 170, 60, .6);
}

/* center video — refined frame */
.features-image {
    border: 1px solid rgba(12, 27, 42, .08);
    box-shadow: 0 14px 40px -22px rgba(12, 27, 42, .35);
}

.features-image::before {
    content: "";
    position: absolute;
    inset: 10px;
    border: 1px dashed rgba(30, 170, 60, .45);
    border-radius: 10px;
    pointer-events: none;
    z-index: 2;
    opacity: .0;
    transition: opacity .4s ease;
}

.features-image:hover::before {
    opacity: 1;
}

/* features divider — more refined */
.features-divider-icon {
    color: #1eaa3c !important;
    background: rgba(30, 170, 60, .1);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    animation: pg-orbit 8s linear infinite, pg-glow 2.4s ease-in-out infinite;
}

/* ============ 5. INDUSTRIES — infographic upgrade ============ */
.industries {
    background:
        radial-gradient(900px 420px at 10% 10%, rgba(30, 170, 60, .06), transparent 60%),
        radial-gradient(900px 420px at 90% 90%, rgba(26, 143, 227, .06), transparent 60%),
        #ffffff;
    position: relative;
}

.industries-eyebrow {
    position: relative;
    padding: 0 26px;
}

.industries-eyebrow::before,
.industries-eyebrow::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 18px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #f15a24);
    transform: translateY(-50%);
}

.industries-eyebrow::before {
    left: 0;
}

.industries-eyebrow::after {
    right: 0;
    transform: translateY(-50%) rotate(180deg);
}

.industries-heading {
    animation: pg-rise .8s ease both;
}

.industries-desc {
    animation: pg-rise .9s ease both;
    animation-delay: .1s;
}

.industry-card {
    border-radius: 14px;
    box-shadow: 0 12px 28px -16px rgba(12, 27, 42, .35);
    transition: transform .5s cubic-bezier(.2, .8, .2, 1), box-shadow .5s ease;
}

.industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 28px 50px -22px rgba(30, 170, 60, .45);
}

.industry-card::before {
    /* infographic icon badge top-right */
    content: "★";
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .92);
    color: #1eaa3c;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    z-index: 3;
    box-shadow: 0 6px 14px rgba(0, 0, 0, .18);
    transform: scale(.7);
    opacity: 0;
    transition: transform .4s cubic-bezier(.2, .8, .2, 1), opacity .35s ease, background .3s ease, color .3s ease;
}

.industry-card:hover::before {
    transform: scale(1) rotate(360deg);
    opacity: 1;
    background: #1eaa3c;
    color: #fff;
}

.industry-card img {
    transition: transform 1s cubic-bezier(.2, .8, .2, 1), filter .5s ease;
}

.industry-card:hover img {
    transform: scale(1.1);
    filter: saturate(1.18) contrast(1.05);
}

.industry-label {
    padding: 1rem 1.1rem;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .7) 100%) !important;
    text-align: left;
    transition: padding-bottom .35s ease;
}

.industry-card:hover .industry-label {
    padding-bottom: 1.4rem;
}

.industry-label::before {
    content: "";
    display: inline-block;
    width: 22px;
    height: 2px;
    background: #1eaa3c;
    vertical-align: middle;
    margin-right: 10px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .5s cubic-bezier(.2, .8, .2, 1);
}

.industry-card:hover .industry-label::before {
    transform: scaleX(1);
}

/* ============ 6. WORK PROCESS — infographic upgrade ============ */
.process {
    background:
        linear-gradient(180deg, #ffffff 0%, #f7faf8 100%);
    position: relative;
    overflow: hidden;
}

.process::before {
    /* faint sun rays decoration */
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(241, 90, 36, .10), transparent 65%);
    pointer-events: none;
}

.process::after {
    content: "";
    position: absolute;
    bottom: -140px;
    left: -120px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(30, 170, 60, .10), transparent 65%);
    pointer-events: none;
}

.process-eyebrow {
    position: relative;
    padding: 0 26px;
}

.process-eyebrow::before,
.process-eyebrow::after {
    content: "";
    position: absolute;
    top: 50%;
    width: 18px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #f15a24);
    transform: translateY(-50%);
}

.process-eyebrow::before {
    left: 0;
}

.process-eyebrow::after {
    right: 0;
    transform: translateY(-50%) rotate(180deg);
}

.process-heading {
    animation: pg-rise .8s ease both;
}

.process-desc {
    animation: pg-rise .9s ease both;
    animation-delay: .1s;
}

.process-step {
    counter-increment: pgstep;
    animation: pg-rise .7s ease both;
}

.process-steps {
    counter-reset: pgstep;
}

.process-step:nth-child(1) {
    animation-delay: .05s
}

.process-step:nth-child(2) {
    animation-delay: .18s
}

.process-step:nth-child(3) {
    animation-delay: .31s
}

.process-step:nth-child(4) {
    animation-delay: .44s
}

.process-step:nth-child(5) {
    animation-delay: .57s
}

.process-step:nth-child(6) {
    animation-delay: .70s
}

.process-circle {
    background: linear-gradient(135deg, #1a8fe3, #1eaa3c) !important;
    box-shadow: 0 10px 24px -8px rgba(26, 143, 227, .45) !important;
    position: relative;
}

.process-circle::before {
    /* step number badge */
    content: counter(pgstep, decimal-leading-zero);
    position: absolute;
    top: -10px;
    right: -10px;
    background: #fff;
    color: #1eaa3c;
    font-family: "DM Mono", monospace;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .1em;
    padding: 4px 7px;
    border-radius: 999px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .12);
    border: 1px solid rgba(30, 170, 60, .25);
}

.process-circle::after {
    /* pulse ring */
    content: "";
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid rgba(30, 170, 60, .45);
    opacity: 0;
    transition: opacity .35s ease;
    animation: pg-glow 2.2s ease-in-out infinite;
}

.process-step:hover .process-circle {
    background: linear-gradient(135deg, #f15a24, #ffb45a) !important;
    transform: translateY(-8px) scale(1.08) !important;
}

.process-step:hover .process-circle::after {
    opacity: 1;
}

.process-step:hover .process-circle svg {
    animation: pg-tilt 1.2s ease-in-out infinite;
}

.process-circle svg {
    transition: transform .4s ease;
}

.process-label {
    background: rgba(255, 255, 255, .9);
    padding: 6px 12px;
    border-radius: 999px;
    box-shadow: 0 4px 14px rgba(12, 27, 42, .06);
    border: 1px solid rgba(12, 27, 42, .06);
    transition: background .3s ease, color .3s ease, transform .3s ease;
}

.process-step:hover .process-label {
    background: #0c1b2a;
    color: #fff;
    transform: translateY(-2px);
}

/* ============ 7. POPULAR CATEGORIES (.blog-sidebar) ============ */
.blog-sidebar {
    border-top: none;
    padding: 1.5rem;
    background: linear-gradient(180deg, #0c1b2a 0%, #122438 100%);
    border-radius: 16px;
    box-shadow: 0 22px 50px -28px rgba(12, 27, 42, .4);
    position: relative;
    overflow: hidden;
}

.blog-sidebar::before {
    content: "";
    position: absolute;
    top: -50px;
    right: -50px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(241, 90, 36, .35), transparent 70%);
    pointer-events: none;
}

.blog-sidebar-eyebrow {
    color: #ffb45a !important;
    margin-bottom: 1.25rem !important;
    position: relative;
    padding-left: 22px;
}

.blog-sidebar-eyebrow::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    width: 14px;
    height: 2px;
    background: linear-gradient(90deg, #f15a24, #ffb45a);
    transform: translateY(-50%);
    animation: pg-shimmer 2.4s linear infinite;
    background-size: 200% 100%;
}

.blog-categories li {
    border-bottom: 1px solid rgba(255, 255, 255, .08) !important;
    color: rgba(255, 255, 255, .78) !important;
    padding: .9rem .75rem !important;
    border-radius: 8px;
    position: relative;
    transition: color .3s ease, background .3s ease, padding-left .35s cubic-bezier(.2, .8, .2, 1) !important;
}

.blog-categories li::before {
    content: "→";
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%) translateX(-6px);
    color: #1eaa3c;
    opacity: 0;
    transition: opacity .3s ease, transform .3s ease;
    font-weight: 700;
}

.blog-categories li:hover,
.blog-categories li.active {
    color: #ffffff !important;
    background: rgba(255, 255, 255, .05);
    padding-left: 2rem !important;
}

.blog-categories li:hover::before,
.blog-categories li.active::before {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.blog-categories li.active {
    background: linear-gradient(90deg, rgba(30, 170, 60, .18), transparent);
    border-left: 3px solid #1eaa3c;
}


/* =========================================================
   ============ PROGEN — FINAL FIXES (v2) ==================
   Appended overrides. Loaded last so wins specificity.
   Fixes: nav alignment + responsive, product/project image
   cropping on mobile, excessive section spacing, services
   layout, and merged Popular Categories + Our Projects.
   ========================================================= */

/* ---- 0. Section rhythm (less empty space) -------------- */
.about,
.about--split,
.explore,
.team-slider-section,
.services-new,
.team,
.products,
.features,
.blog {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}

@media (max-width: 900px) {

    .about,
    .about--split,
    .explore,
    .team-slider-section,
    .services-new,
    .team,
    .products,
    .features,
    .blog {
        padding-top: 2.75rem !important;
        padding-bottom: 2.75rem !important;
    }
}

@media (max-width: 600px) {

    .about,
    .about--split,
    .explore,
    .team-slider-section,
    .services-new,
    .team,
    .products,
    .features,
    .blog {
        padding-top: 2rem !important;
        padding-bottom: 2rem !important;
    }
}

.services-header,
.products-header,
.features-header,
.team-section-header,
.blog-header {
    margin-bottom: 2rem !important;
}

/* ---- SECTION MIN-HEIGHT FIX: remove full-viewport forced height ---- */
section {
    min-height: 0 !important;
}

.hero {
    min-height: 100svh !important;
}

.about {
    min-height: 0 !important;
}

/* ---- 1. NAV — proper flex, no absolute centering -------- */
nav {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 1.25rem !important;
    padding: 0.75rem 1.75rem !important;
    width: calc(100% - 2rem) !important;
    max-width: 1180px !important;
}

nav .nav-logo {
    flex-shrink: 0;
    overflow: visible;
}

nav .nav-links {
    position: static !important;
    transform: none !important;
    left: auto !important;
    display: flex !important;
    align-items: center !important;
    gap: 1.75rem !important;
    margin: 0 auto !important;
    flex-wrap: nowrap !important;
}

nav .nav-cta {
    display: inline-flex !important;
    align-items: center !important;
    background: var(--fg) !important;
    color: var(--bg) !important;
    padding: 0.55rem 1.05rem !important;
    border-radius: 8px !important;
    font-family: "Host Grotesk", sans-serif !important;
    font-size: 0.78rem !important;
    font-weight: 600 !important;
    letter-spacing: 0.04em !important;
    white-space: nowrap !important;
    flex-shrink: 0 !important;
}

nav .nav-cta:hover {
    background: #3a2a1c !important;
}

nav .nav-link {
    font-family: 'Raleway', 'Host Grotesk', sans-serif !important;
    font-size: 0.92rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.08em !important;
}

@media (max-width: 900px) {
    nav {
        padding: 0.5rem 0.9rem !important;
        width: calc(100% - 1.5rem) !important;
    }

    nav .nav-hamburger {
        display: flex !important;
        order: 3 !important;
        margin-left: auto !important;
    }

    nav .nav-links {
        position: absolute !important;
        top: calc(100% + 0.5rem) !important;
        left: 0 !important;
        right: 0 !important;
        background: #fff !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: stretch !important;
        gap: 0 !important;
        padding: 0.5rem 0 !important;
        border-radius: 12px !important;
        box-shadow: 0 12px 28px rgba(0, 0, 0, .12) !important;
        margin: 0 !important;
        max-height: 0 !important;
        overflow: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
        transition: max-height .35s ease, opacity .25s ease !important;
    }

    nav.open .nav-links {
        max-height: 80vh !important;
        overflow-y: auto !important;
        opacity: 1 !important;
        pointer-events: auto !important;
    }

    nav .nav-link {
        padding: 0.85rem 1.25rem !important;
        border-bottom: 1px solid #f1ece2 !important;
        width: 100% !important;
    }

    nav .nav-dropdown-menu {
        position: static !important;
        box-shadow: none !important;
        background: #faf6ec !important;
        padding: 0.25rem 0.5rem !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }
}

/* ---- 2. PRODUCTS — images fully visible on responsive -- */
.products-grid .product-card {
    aspect-ratio: 4 / 3 !important;
    overflow: hidden !important;
    position: relative !important;
    height: auto !important;
    min-height: 0 !important;
}

.products-grid .product-card img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
}

@media (max-width: 900px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1rem !important;
        grid-auto-rows: auto !important;
    }

    .products-grid .product-card,
    .products-grid .product-card-tall {
        aspect-ratio: 4 / 5 !important;
        grid-row: auto !important;
        grid-column: auto !important;
    }
}

@media (max-width: 560px) {
    .products-grid {
        grid-template-columns: 1fr !important;
    }

    .products-grid .product-card,
    .products-grid .product-card-tall {
        aspect-ratio: 16 / 11 !important;
    }
}

/* ---- 5. UNIFIED PROJECTS (Categories + Projects) ------- */
.blog {
    background: var(--bg) !important;
    padding-left: 2rem !important;
    padding-right: 2rem !important;
}

.blog-container {
    grid-template-columns: 260px 1fr !important;
    gap: 3rem !important;
    max-width: 1240px !important;
}

.blog-main .blog-header {
    border-bottom: 1px solid rgba(36, 25, 16, .12) !important;
    padding-bottom: 1.25rem !important;
    margin-bottom: 2rem !important;
}

.blog-eyebrow {
    color: var(--fg) !important;
    opacity: .65 !important;
}

.blog-heading {
    color: var(--fg) !important;
    font-size: clamp(1.4rem, 2.6vw, 2rem) !important;
    line-height: 1.2 !important;
}

.blog-sidebar {
    border-top: none !important;
    padding-top: 0 !important;
    position: sticky !important;
    top: 6rem !important;
    align-self: start !important;
}

.blog-sidebar-eyebrow {
    color: var(--fg) !important;
    opacity: .55 !important;
    margin-bottom: 1rem !important;
}

.blog-categories {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.4rem !important;
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.blog-categories li {
    border: 1px solid rgba(36, 25, 16, .12) !important;
    border-radius: 999px !important;
    padding: 0.55rem 1rem !important;
    background: #fff !important;
    color: var(--fg) !important;
    font-family: "Host Grotesk", sans-serif !important;
    font-size: 0.85rem !important;
    transition: background .25s, color .25s, border-color .25s !important;
    cursor: pointer !important;
}

.blog-categories li::before {
    content: none !important;
    display: none !important;
}

.blog-categories li:hover {
    background: #fff7e6 !important;
    border-color: #d9a35a !important;
    color: var(--fg) !important;
    padding-left: 1rem !important;
}

.blog-categories li.active {
    background: var(--fg) !important;
    color: var(--bg) !important;
    border-color: var(--fg) !important;
    font-weight: 600 !important;
}

.blog-grid {
    gap: 1.5rem !important;
}

.blog-col {
    gap: 1.5rem !important;
}

.blog-col-right {
    margin-top: 0 !important;
}

.blog-card {
    background: #fff !important;
    border-radius: 14px !important;
    overflow: hidden !important;
    border: 1px solid rgba(36, 25, 16, .08) !important;
    transition: transform .35s ease, box-shadow .35s ease !important;
    cursor: pointer !important;
}

.blog-card:hover {
    transform: translateY(-4px) !important;
    box-shadow: 0 18px 40px rgba(36, 25, 16, .12) !important;
}

.blog-card-image {
    aspect-ratio: 4 / 3 !important;
    margin: 0 !important;
    border-radius: 0 !important;
    overflow: hidden !important;
}

.blog-card-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    display: block !important;
}

.blog-card h3 {
    color: var(--fg) !important;
    font-size: 1rem !important;
    padding: 0.9rem 1rem 1rem !important;
    margin: 0 !important;
}

.blog-card:hover h3 {
    color: #b85a1c !important;
}

@media (max-width: 900px) {
    .blog-container {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }

    .blog-sidebar {
        position: static !important;
        top: auto !important;
    }

    .blog-categories {
        flex-direction: row !important;
        flex-wrap: wrap !important;
    }

    .blog-grid {
        grid-template-columns: 1fr 1fr !important;
    }

    .blog-col {
        gap: 1rem !important;
    }
}

@media (max-width: 560px) {
    .blog {
        padding-left: 1.25rem !important;
        padding-right: 1.25rem !important;
    }

    .blog-grid {
        grid-template-columns: 1fr !important;
    }
}

/* blog filter — fix image size consistency across tabs */
/* at ≥901px blog-grid is forced 1fr 1fr; span colLeft across both tracks */
.blog-grid--filtered .blog-col-left {
    grid-column: 1 / -1 !important;
    gap: 1.5rem;
}

/* at ≤900px the grid has its own 1fr 1fr rule; override to single column */
@media (max-width: 900px) {
    .blog-grid--filtered {
        grid-template-columns: 1fr !important;
    }
}

/* image lightbox */
.img-lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: zoom-out;
}

.img-lightbox.open {
    display: flex;
    animation: lbFadeIn 0.25s ease both;
}

.img-lightbox img {
    max-width: 88vw;
    max-height: 85vh;
    border-radius: 14px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.6);
    animation: lbScaleIn 0.35s cubic-bezier(0.22, 1, 0.36, 1) both;
    cursor: default;
    object-fit: contain;
}

.img-lightbox-close {
    position: fixed;
    top: 1.25rem;
    right: 1.25rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 1.2rem;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.2s ease;
    z-index: 2;
}

.img-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.28);
    transform: scale(1.1);
}

@keyframes lbFadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes lbScaleIn {
    from {
        opacity: 0;
        transform: scale(0.82);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ============ END PROGEN FIXES v2 ====================== */

/* =====================================================================
   ✦ USER FIXES — Section headers green color + energy icon underline,
     spacing cleanup, marquee fix
   ===================================================================== */

/* ---- 1. UNIFORM GREEN SECTION HEADER STYLING ---- */
/* All section eyebrow labels → green */
.about-eyebrow,
.explore-eyebrow,
.services-eyebrow,
.team-eyebrow,
.products-eyebrow,
.features-eyebrow,
.blog-eyebrow,
.blog-sidebar-eyebrow,
.process-eyebrow,
.industries-eyebrow,
.contact-eyebrow {
    color: #1eaa3c !important;
    -webkit-text-fill-color: #1eaa3c !important;
    background: none !important;
    animation: none !important;
}

/* All section main headings → match green-tinted style */
.about-heading,
.explore-heading,
.services-heading,
.team-heading,
.products-heading,
.features-heading,
.blog-heading,
.process-heading,
.industries-heading {
    color: #0c1b2a !important;
    -webkit-text-fill-color: #0c1b2a !important;
    background: none !important;
    animation: none !important;
}

/* ---- 2. ENERGY ICON UNDERLINE DIVIDER on each section header ---- */
/* We inject a shared divider class pattern for all section headers */
.section-divider,
.about-split-content .section-divider,
.services-header .section-divider,
.team-section-header .section-divider,
.products-header .section-divider,
.features-header .section-divider,
.blog-header .section-divider,
.process-header .section-divider,
.industries-header .section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0.5rem 0 0.75rem;
}

/* Replicate features-divider style for ALL sections */
.about-divider,
.explore-divider,
.services-divider,
.team-divider,
.products-divider,
.blog-divider,
.process-divider,
.industries-divider,
.contact-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin: 0.4rem auto 0.75rem;
}

.about-divider .features-divider-line,
.explore-divider .features-divider-line,
.services-divider .features-divider-line,
.team-divider .features-divider-line,
.products-divider .features-divider-line,
.blog-divider .features-divider-line,
.process-divider .features-divider-line,
.industries-divider .features-divider-line,
.contact-divider .features-divider-line {
    width: 60px;
    height: 2px;
    background: #1eaa3c;
    animation: none !important;
    background-image: none !important;
}

.about-divider .features-divider-icon,
.explore-divider .features-divider-icon,
.services-divider .features-divider-icon,
.team-divider .features-divider-icon,
.products-divider .features-divider-icon,
.blog-divider .features-divider-icon,
.process-divider .features-divider-icon,
.industries-divider .features-divider-icon,
.contact-divider .features-divider-icon {
    display: inline-flex;
    animation: none !important;
    background: rgba(30, 170, 60, 0.1);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
}

/* Features section divider lines → green */
.features-divider .features-divider-line {
    background: #1eaa3c !important;
    background-image: none !important;
    animation: none !important;
}

/* ---- 3. REMOVE UNWANTED SPACING ---- */
.about--split {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.explore {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.team-slider-section {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
}

.services-new {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
}

.team {
    padding-top: 3rem !important;
    padding-bottom: 3.5rem !important;
}

.products {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
}

.features {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
}

.blog {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
}

.process {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
}

.industries {
    padding-top: 3.5rem !important;
    padding-bottom: 3.5rem !important;
}

.contact {
    padding-top: 4rem !important;
    padding-bottom: 4rem !important;
}

/* Tighten header margin-bottom inside each section */
.services-header,
.products-header,
.features-header,
.team-section-header,
.blog-header,
.process-header,
.industries-header {
    margin-bottom: 2rem !important;
}

.products-header {
    margin-bottom: 2rem !important;
}

.features-header {
    margin-bottom: 2.5rem !important;
}

@media (max-width: 900px) {

    .explore,
    .team-slider-section,
    .services-new,
    .team,
    .products,
    .features,
    .blog,
    .process,
    .industries {
        padding-top: 2.25rem !important;
        padding-bottom: 2.25rem !important;
    }
}

@media (max-width: 600px) {

    .explore,
    .team-slider-section,
    .services-new,
    .team,
    .products,
    .features,
    .blog,
    .process,
    .industries {
        padding-top: 1.75rem !important;
        padding-bottom: 1.75rem !important;
    }
}

/* ---- 4. OUR SERVICES MARQUEE FIX ---- */
/* The marquee needs exactly 2× the card set to loop seamlessly.
   The HTML has 10 cards (5 unique + 5 duplicates), but the
   translateX target must equal exactly -50% to loop the first 5. */

.team-marquee {
    overflow: hidden !important;
    width: 100% !important;
    position: relative !important;
}

.team-track {
    --team-card-width: 400px;
    --team-card-gap: 2rem;
    display: flex !important;
    gap: var(--team-card-gap) !important;
    width: max-content !important;
    align-items: flex-start !important;
    /* Reset any transform-based stagger on children */
    flex-wrap: nowrap !important;
    animation: teamAutoScrollFixed 40s linear infinite !important;
}

.team-marquee:hover .team-track {
    animation-play-state: paused !important;
}

/* The fix: translate exactly by the width of ONE full set of cards.
   With 10 cards total (5 + 5 clones), -50% covers exactly 5 cards,
   looping seamlessly. */
@keyframes teamAutoScrollFixed {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-1 * (var(--team-card-width) * 5 + var(--team-card-gap) * 5)));
    }
}

/* Remove any stagger offsets that break the marquee line */
.team-track .team-card,
.team-track .team-card:nth-child(6n + 1),
.team-track .team-card:nth-child(6n + 2),
.team-track .team-card:nth-child(6n + 3),
.team-track .team-card:nth-child(6n + 4),
.team-track .team-card:nth-child(6n + 5),
.team-track .team-card:nth-child(6n + 6) {
    transform: none !important;
    flex-shrink: 0 !important;
    flex: 0 0 var(--team-card-width) !important;
}

.team-card-image-wrap {
    transform: none !important;
}

@media (max-width: 1024px) {
    .team-track {
        --team-card-width: 320px;
        --team-card-gap: 1.5rem;
        animation-duration: 32s !important;
    }

    @keyframes teamAutoScrollFixed {
        0% {
            transform: translateX(0);
        }

        100% {
            transform: translateX(calc(-1 * (320px * 5 + 1.5rem * 5)));
        }
    }
}

@media (max-width: 768px) {
    .team-track {
        --team-card-width: 300px;
        --team-card-gap: 1.25rem;
        animation-duration: 26s !important;
    }
}

@media (max-width: 480px) {
    .team-track {
        --team-card-width: 260px;
        --team-card-gap: 1rem;
        animation-duration: 22s !important;
    }
}

/* ============ END USER FIXES ============ */

/* =====================================================================
   ✦ SECTION HEADER REDESIGN — orange label, green lines, orange icon,
     centered alignment, unified font family + size for ALL sections
   ===================================================================== */

/* --- EYEBROW LABELS → ORANGE, centered, unified font --- */
.about-eyebrow,
.explore-eyebrow,
.services-eyebrow,
.team-eyebrow,
.products-eyebrow,
.features-eyebrow,
.blog-eyebrow,
.blog-sidebar-eyebrow,
.process-eyebrow,
.industries-eyebrow,
.contact-eyebrow {
    color: #f15a24 !important;
    -webkit-text-fill-color: #f15a24 !important;
    background: none !important;
    animation: none !important;
    font-family: "Host Grotesk", sans-serif !important;
    font-size: 0.82rem !important;
    font-weight: 700 !important;
    letter-spacing: 0.2em !important;
    text-transform: uppercase !important;
    text-align: center !important;
    display: block !important;
}

/* --- SECTION HEADINGS → centered, unified font --- */
.about-heading,
.explore-heading,
.services-heading,
.team-heading,
.products-heading,
.features-heading,
.blog-heading,
.process-heading,
.industries-heading,
.contact-heading {
    color: #0c1b2a !important;
    -webkit-text-fill-color: #0c1b2a !important;
    background: none !important;
    animation: none !important;
    font-family: "Host Grotesk", sans-serif !important;
    font-size: clamp(1.75rem, 3.5vw, 2.75rem) !important;
    font-weight: 700 !important;
    text-align: center !important;
    line-height: 1.2 !important;
    letter-spacing: -0.02em !important;
}

/* Contact heading stays white (dark bg) */
.contact .contact-heading {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

/* --- CENTER ENTIRE SECTION HEADER WRAPPERS --- */
.about-split-content,
.services-header,
.services-title-wrap,
.team-section-header,
.team-header-desktop,
.products-header,
.features-header,
.blog-header,
.blog-header-text,
.process-header,
.industries-header,
.contact-form-wrap,
.explore-banner-overlay {
    text-align: center !important;
    align-items: center !important;
}

/* Services & team headers flex direction fix */
.services-header,
.team-section-header {
    flex-direction: column !important;
    justify-content: center !important;
}

/* About split — center content in text column */
.about-split-content {
    align-items: center !important;
    text-align: center !important;
}

.about-author {
    justify-content: center !important;
}

/* --- DIVIDER LINES → GREEN --- */
.features-divider-line,
.about-divider .features-divider-line,
.explore-divider .features-divider-line,
.services-divider .features-divider-line,
.team-divider .features-divider-line,
.products-divider .features-divider-line,
.blog-divider .features-divider-line,
.process-divider .features-divider-line,
.industries-divider .features-divider-line,
.contact-divider .features-divider-line {
    background: #1eaa3c !important;
    background-image: none !important;
    animation: none !important;
    width: 60px !important;
    height: 2px !important;
}

/* --- ICON CIRCLE → ORANGE background --- */
.features-divider-icon,
.about-divider .features-divider-icon,
.explore-divider .features-divider-icon,
.services-divider .features-divider-icon,
.team-divider .features-divider-icon,
.products-divider .features-divider-icon,
.blog-divider .features-divider-icon,
.process-divider .features-divider-icon,
.industries-divider .features-divider-icon,
.contact-divider .features-divider-icon {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 36px !important;
    height: 36px !important;
    border-radius: 50% !important;
    background: rgba(241, 90, 36, 0.12) !important;
    animation: none !important;
}

/* Ensure SVG inside icon is orange */
.features-divider-icon svg,
.about-divider .features-divider-icon svg,
.explore-divider .features-divider-icon svg,
.services-divider .features-divider-icon svg,
.team-divider .features-divider-icon svg,
.products-divider .features-divider-icon svg,
.blog-divider .features-divider-icon svg,
.process-divider .features-divider-icon svg,
.industries-divider .features-divider-icon svg,
.contact-divider .features-divider-icon svg {
    fill: #f15a24 !important;
}

/* --- ALL DIVIDER CONTAINERS → centered --- */
.features-divider,
.about-divider,
.explore-divider,
.services-divider,
.team-divider,
.products-divider,
.blog-divider,
.process-divider,
.industries-divider,
.contact-divider {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 0.5rem !important;
    margin: 0.4rem auto 0.75rem !important;
    width: 100% !important;
}

/* ============ END SECTION HEADER REDESIGN ============ */

/* =====================================================================
   ✦ FIX 1 — Remove the decorative line BEFORE eyebrow label text
     (the ::before pseudo-element adds a short line left of label)
   ✦ FIX 2 — Popular Categories sidebar card padding fix for responsive
   ===================================================================== */

/* ---- FIX 1: Kill ALL ::before lines on eyebrow labels ---- */
.services-new .services-eyebrow,
.products-eyebrow,
.features-eyebrow,
.industries-eyebrow,
.process-eyebrow,
.blog-sidebar-eyebrow,
.about-eyebrow,
.explore-eyebrow,
.team-eyebrow,
.blog-eyebrow,
.contact-eyebrow {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.services-new .services-eyebrow::before,
.products-eyebrow::before,
.features-eyebrow::before,
.industries-eyebrow::before,
.industries-eyebrow::after,
.process-eyebrow::before,
.process-eyebrow::after,
.blog-sidebar-eyebrow::before,
.about-eyebrow::before,
.explore-eyebrow::before,
.team-eyebrow::before,
.blog-eyebrow::before,
.contact-eyebrow::before {
    display: none !important;
    content: none !important;
    width: 0 !important;
}

/* ---- FIX 2: Popular Categories sidebar — responsive padding fix ---- */

/* Desktop — clean sidebar look */
.blog-sidebar {
    padding: 1.5rem !important;
    background: #ffffff !important;
    border-radius: 14px !important;
    border: 1px solid rgba(36, 25, 16, .10) !important;
    box-shadow: 0 6px 24px rgba(36, 25, 16, .07) !important;
}

/* Category pill cards — consistent padding everywhere */
.blog-categories li {
    padding: 0.6rem 1.1rem !important;
    border-radius: 999px !important;
    border: 1px solid rgba(36, 25, 16, .13) !important;
    background: #fff !important;
    font-family: "Host Grotesk", sans-serif !important;
    font-size: 0.85rem !important;
    font-weight: 500 !important;
    color: var(--fg) !important;
    cursor: pointer !important;
    line-height: 1.4 !important;
    white-space: normal !important;
    word-break: break-word !important;
    text-align: left !important;
    transition: background .2s, border-color .2s, color .2s !important;
    /* kill arrow pseudo from earlier block */
    padding-left: 1.1rem !important;
}

.blog-categories li::before {
    display: none !important;
    content: none !important;
}

.blog-categories li:hover {
    background: #fff7ed !important;
    border-color: #f15a24 !important;
    color: #f15a24 !important;
    padding-left: 1.1rem !important;
}

.blog-categories li.active {
    background: #f15a24 !important;
    border-color: #f15a24 !important;
    color: #ffffff !important;
    font-weight: 700 !important;
}

/* Tablet: sidebar goes full-width, pills wrap in a row */
@media (max-width: 900px) {
    .blog-sidebar {
        padding: 1.1rem 1rem !important;
        border-radius: 12px !important;
        position: static !important;
    }

    .blog-categories {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        gap: 0.45rem !important;
    }

    .blog-categories li {
        flex: 0 0 auto !important;
        padding: 0.45rem 0.9rem !important;
        padding-left: 0.9rem !important;
        font-size: 0.8rem !important;
        white-space: nowrap !important;
    }

    .blog-categories li:hover {
        padding-left: 0.9rem !important;
    }
}

/* Mobile: pills smaller, full row wrap */
@media (max-width: 560px) {
    .blog-sidebar {
        padding: 0.85rem 0.75rem !important;
        border-radius: 10px !important;
    }

    .blog-categories {
        gap: 0.35rem !important;
    }

    .blog-categories li {
        padding: 0.4rem 0.75rem !important;
        padding-left: 0.75rem !important;
        font-size: 0.75rem !important;
    }

    .blog-categories li:hover {
        padding-left: 0.75rem !important;
    }
}

/* ============ END FIX 1 + FIX 2 ============ */

/* =====================================================================
   ✦ COMPREHENSIVE FIXES v3
   1. Section header icon → unique rotate animations per section
   2. Popular categories → remove unwanted spaces
   3. Products & Services → enhanced animations + infographics
   4. About Progen → prev/next responsive fix
   5. About Progen → reduced font + reduced video size
   6. Explore Our Work → header already above image (confirmed in HTML)
   7. Projects section → reduce web mode bottom space + proper grid
   8. Products → card alignment fix
   9. Popular categories + Our Projects → web mode layout fix
   ===================================================================== */

/* === 1. UNIQUE ROTATE ANIMATIONS PER SECTION ICON === */
@keyframes icon-spin-slow {
    to {
        transform: rotate(360deg);
    }
}

@keyframes icon-spin-medium {
    to {
        transform: rotate(360deg);
    }
}

@keyframes icon-spin-fast {
    to {
        transform: rotate(360deg);
    }
}

@keyframes icon-spin-rev {
    to {
        transform: rotate(-360deg);
    }
}

@keyframes icon-wobble {

    0%,
    100% {
        transform: rotate(-10deg) scale(1)
    }

    50% {
        transform: rotate(10deg) scale(1.1)
    }
}

@keyframes icon-pulse-spin {
    0% {
        transform: rotate(0) scale(1)
    }

    50% {
        transform: rotate(180deg) scale(1.15)
    }

    100% {
        transform: rotate(360deg) scale(1)
    }
}

@keyframes icon-bounce-spin {
    0% {
        transform: rotate(0) translateY(0)
    }

    40% {
        transform: rotate(200deg) translateY(-4px)
    }

    100% {
        transform: rotate(360deg) translateY(0)
    }
}

/* About section icon */
.about-divider .features-divider-icon {
    animation: icon-wobble 3s ease-in-out infinite !important;
}

/* Explore section icon */
.explore-divider .features-divider-icon,
.explore-banner-overlay .features-divider .features-divider-icon {
    animation: icon-spin-slow 5s linear infinite !important;
}

/* Services/Projects section icon */
.services-divider .features-divider-icon {
    animation: icon-bounce-spin 2.8s ease-in-out infinite !important;
}

/* Team/Our Services icon */
.team-divider .features-divider-icon {
    animation: icon-spin-rev 4s linear infinite !important;
}

/* Products section icon */
.products-divider .features-divider-icon {
    animation: icon-pulse-spin 4s ease-in-out infinite !important;
}

/* Features section icon */
.features .features-divider .features-divider-icon {
    animation: icon-spin-medium 3s linear infinite !important;
}

/* Blog/Projects icon */
.blog-divider .features-divider-icon {
    animation: icon-wobble 2.5s ease-in-out infinite !important;
}

/* Process icon */
.process-divider .features-divider-icon {
    animation: icon-bounce-spin 3.5s ease-in-out infinite !important;
}

/* Industries icon */
.industries-divider .features-divider-icon {
    animation: icon-spin-slow 6s linear infinite !important;
}

/* Contact icon */
.contact-divider .features-divider-icon {
    animation: icon-pulse-spin 3s ease-in-out infinite !important;
}

/* Features section built-in divider icon */
.features-divider .features-divider-icon {
    animation: icon-spin-medium 3s linear infinite !important;
}

/* === 2. POPULAR CATEGORIES — remove unwanted gaps/spaces === */
.blog-container {
    display: grid !important;
    grid-template-columns: 260px 1fr !important;
    grid-template-rows: auto auto 1fr !important;
    gap: 0 3rem !important;
    align-items: start !important;
}

/* Popular categories eyebrow & divider span grid rows alongside sidebar */
.blog-sidebar-eyebrow {
    grid-column: 1 !important;
    grid-row: 1 !important;
    margin-bottom: 0.5rem !important;
    padding: 0 !important;
}

/* Inline features-divider below sidebar eyebrow */
.blog-container>.features-divider {
    grid-column: 1 !important;
    grid-row: 2 !important;
    margin: 0 0 0.75rem !important;
    width: 100% !important;
}

.blog-sidebar {
    grid-column: 1 !important;
    grid-row: 3 !important;
    position: sticky !important;
    top: 6rem !important;
    align-self: start !important;
}

.blog-main {
    grid-column: 2 !important;
    grid-row: 1 / 4 !important;
}

@media (max-width: 900px) {
    .blog-container {
        grid-template-columns: 1fr !important;
        grid-template-rows: auto !important;
        gap: 1.25rem !important;
    }

    .blog-sidebar-eyebrow {
        grid-column: 1 !important;
        grid-row: auto !important;
    }

    .blog-container>.features-divider {
        grid-column: 1 !important;
        grid-row: auto !important;
    }

    .blog-sidebar {
        grid-column: 1 !important;
        grid-row: auto !important;
        position: static !important;
    }

    .blog-main {
        grid-column: 1 !important;
        grid-row: auto !important;
    }
}

/* Remove excess margin around popular-categories header */
.blog-sidebar-eyebrow {
    margin-top: 0 !important;
}

/* === 3. OUR PRODUCTS — improved card alignment + infographic design === */
.products-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.25rem !important;
    align-items: start !important;
    grid-auto-rows: auto !important;
}

/* All product cards uniform aspect ratio on desktop for alignment */
.product-card {
    aspect-ratio: 4 / 3 !important;
    margin-top: 0 !important;
}

/* Tall cards slightly taller  */
.product-card-tall {
    aspect-ratio: 4 / 3.8 !important;
    margin-top: 0 !important;
}

/* Remove nth-child margin that was causing misalignment */
.products-grid .product-card:nth-child(5) {
    margin-top: 0 !important;
}

/* Product title at bottom of card for proper alignment */
.product-title {
    top: auto !important;
    bottom: 3rem !important;
    left: 1rem !important;
    right: 1rem !important;
    text-align: left !important;
    font-size: clamp(0.9rem, 1.4vw, 1.25rem) !important;
}

/* Infographic badge on product card */
.product-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1eaa3c, #1a8fe3, #f15a24);
    z-index: 3;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.product-card:hover::before {
    transform: scaleX(1);
}

/* Animated energy pulse dot on hover */
.product-card::after {
    content: "";
    position: absolute;
    bottom: 1.5rem;
    right: 1.25rem;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #1eaa3c;
    z-index: 3;
    opacity: 0;
    transition: opacity 0.3s ease;
    box-shadow: 0 0 0 0 rgba(30, 170, 60, 0.5);
}

.product-card:hover::after {
    opacity: 1;
    animation: pg-pulse-ring 1.4s ease-out infinite;
}

@media (max-width: 900px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .product-card,
    .product-card-tall {
        aspect-ratio: 4 / 3 !important;
    }
}

@media (max-width: 560px) {
    .products-grid {
        grid-template-columns: 1fr !important;
    }
}

/* === 3b. OUR SERVICES (team marquee) — enhanced animations === */
.team {
    background: linear-gradient(160deg, #f8faf9 0%, #eef7ee 50%, #f8faf9 100%) !important;
    position: relative !important;
    overflow: hidden !important;
}

.team::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -80px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(30, 170, 60, .08), transparent 70%);
    pointer-events: none;
}

/* Card image wrap — polished rounded corners + border */
.team-card-image-wrap {
    border-radius: 24px !important;
    border: 2px solid rgba(30, 170, 60, 0.1) !important;
    transition: border-color 0.4s ease, box-shadow 0.4s ease !important;
    box-shadow: 0 12px 32px -18px rgba(12, 27, 42, 0.2) !important;
}

.team-card:hover .team-card-image-wrap {
    border-color: rgba(30, 170, 60, 0.4) !important;
    box-shadow: 0 24px 48px -22px rgba(30, 170, 60, 0.35) !important;
}

/* Infographic animated bottom bar on service cards */
.team-card-info {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, #f0faf3 100%) !important;
    border-top: 3px solid #1eaa3c !important;
}

/* Section heading styled */
.team-heading {
    background: linear-gradient(90deg, #0c1b2a, #1eaa3c, #0c1b2a) !important;
    background-size: 200% 100% !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    animation: pg-shimmer 6s linear infinite !important;
}

/* === 4. ABOUT PROGEN — Next/Previous button responsive fix === */
.team-slider-section {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
}

.team-slider {
    width: 100% !important;
    max-width: 1300px !important;
    display: grid !important;
    grid-template-columns: 1.1fr 1fr 1fr !important;
    gap: 0 !important;
    align-items: stretch !important;
}

.team-image {
    position: relative !important;
    height: 480px !important;
    overflow: hidden !important;
    border-radius: 12px 0 0 12px !important;
}

.team-nav {
    writing-mode: vertical-lr !important;
    white-space: nowrap !important;
}

@media (max-width: 1000px) {
    .team-slider {
        grid-template-columns: 1fr 1fr !important;
        grid-template-rows: auto auto !important;
    }

    .team-image {
        grid-column: 1 / -1 !important;
        grid-row: 1 !important;
        height: 320px !important;
        border-radius: 12px 12px 0 0 !important;
    }

    .team-info {
        grid-column: 1 !important;
        grid-row: 2 !important;
        height: auto !important;
        min-height: 200px !important;
        padding: 1.75rem 1.25rem !important;
        border-radius: 0 0 0 12px !important;
    }

    .team-bio {
        grid-column: 2 !important;
        grid-row: 2 !important;
        height: auto !important;
        border-left: 1px solid rgba(255, 255, 255, .1) !important;
        border-top: none !important;
        padding: 1.75rem 1.25rem !important;
        border-radius: 0 0 12px 0 !important;
    }

    .team-nav {
        font-size: 0.6rem !important;
        padding: 1rem 0.6rem !important;
    }
}

@media (max-width: 640px) {
    .team-slider {
        grid-template-columns: 1fr !important;
        grid-template-rows: auto auto auto !important;
    }

    .team-image {
        grid-column: 1 !important;
        height: 260px !important;
        border-radius: 12px 12px 0 0 !important;
    }

    .team-info {
        grid-column: 1 !important;
        grid-row: 2 !important;
        border-radius: 0 !important;
        padding: 1.25rem 1rem !important;
    }

    .team-bio {
        grid-column: 1 !important;
        grid-row: 3 !important;
        border-left: none !important;
        border-top: 1px solid rgba(255, 255, 255, .1) !important;
        border-radius: 0 0 12px 12px !important;
        padding: 1.25rem 1rem !important;
    }
}

/* === 5. ABOUT PROGEN — reduce content font size + video size === */
.about-split-content .about-heading {
    font-size: clamp(0.95rem, 1.5vw, 1.3rem) !important;
    line-height: 1.5 !important;
}

.about-split-media {
    max-height: 420px !important;
}

.about-split-media video,
.about-split-media iframe {
    width: 100% !important;
    height: 100% !important;
    max-height: 420px !important;
    object-fit: cover !important;
    border: 0 !important;
}

/* Crop YouTube's letterbox bars by scaling the iframe past the
   container edges; .about-split-media already has overflow:hidden. */
.about-split-media iframe {
    transform: scale(1.35) !important;
    transform-origin: center center !important;
    pointer-events: none !important;
}

@media (min-width: 900px) {
    .about-split-grid {
        grid-template-columns: 1.1fr 0.9fr !important;
    }

    .about-split-media {
        max-height: 480px !important;
    }
}

@media (max-width: 899px) {
    .about-split-media {
        max-height: 280px !important;
        aspect-ratio: 16 / 9 !important;
    }
}

/* === 7. PROJECTS SECTION — reduce web mode space, fix grid === */
.services-new {
    padding-top: 2.5rem !important;
    padding-bottom: 2.5rem !important;
}

.services-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 1.5rem !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 !important;
}

.service-card {
    min-height: 260px !important;
}

.services-header {
    margin-bottom: 1.75rem !important;
}

@media (min-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media (max-width: 1000px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 600px) {
    .services-grid {
        grid-template-columns: 1fr !important;
    }
}

/* === 8. OUR PRODUCTS — card & content alignment === */
/* Use CSS Grid rows to normalize heights across the grid */
.products-grid {
    grid-auto-rows: auto !important;
    align-items: stretch !important;
}

.product-card {
    aspect-ratio: unset !important;
    min-height: 260px !important;
    height: auto !important;
}

.product-card-tall {
    aspect-ratio: unset !important;
    grid-row: auto !important;
    min-height: 350px !important;
    height: auto !important;
}

@media (max-width: 900px) {
    .products-grid {
        grid-auto-rows: auto !important;
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .product-card {
        min-height: 220px !important;
    }

    .product-card-tall {
        grid-row: auto !important;
        min-height: 280px !important;
    }
}

@media (max-width: 560px) {
    .products-grid {
        grid-auto-rows: auto !important;
        grid-template-columns: 1fr !important;
    }

    .product-card,
    .product-card-tall {
        min-height: 200px !important;
    }
}

/* Product content positioning */
.product-location {
    display: none !important;
}

.product-title {
    position: absolute !important;
    bottom: 1rem !important;
    top: auto !important;
    left: 1rem !important;
    right: 1rem !important;
    text-align: left !important;
    font-size: clamp(0.9rem, 1.3vw, 1.15rem) !important;
    line-height: 1.3 !important;
    z-index: 2 !important;
}

/* === 9. POPULAR CATEGORIES + OUR PROJECTS WEB MODE FIX === */
@media (min-width: 901px) {
    .blog-container {
        display: grid !important;
        grid-template-columns: 240px 1fr !important;
        grid-template-rows: auto auto 1fr !important;
        column-gap: 2.5rem !important;
        row-gap: 0 !important;
        align-items: start !important;
        max-width: 1240px !important;
        margin: 0 auto !important;
    }

    /* Eyebrow text spans col 1 only */
    .blog-container>.blog-sidebar-eyebrow {
        grid-column: 1 !important;
        grid-row: 1 !important;
        margin-bottom: 0.35rem !important;
    }

    /* Divider spans col 1 only */
    .blog-container>.features-divider {
        grid-column: 1 !important;
        grid-row: 2 !important;
        margin-bottom: 0.75rem !important;
        justify-content: flex-start !important;
    }

    /* Sidebar categories in col 1 */
    .blog-sidebar {
        grid-column: 1 !important;
        grid-row: 3 !important;
        margin-top: 0 !important;
    }

    /* Blog main content in col 2, all rows */
    .blog-main {
        grid-column: 2 !important;
        grid-row: 1 / 4 !important;
    }

    /* Blog grid - 2 equal columns */
    .blog-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 1.5rem !important;
    }

    .blog-col-right {
        margin-top: 3rem !important;
    }

    /* Blog cards uniform look */
    .blog-card {
        border-radius: 12px !important;
        overflow: hidden !important;
        background: #fff !important;
        border: 1px solid rgba(36, 25, 16, .08) !important;
    }

    .blog-card-image {
        aspect-ratio: 16 / 10 !important;
        margin: 0 !important;
        border-radius: 0 !important;
    }

    .blog-card h3 {
        padding: 0.75rem 0.9rem 0.9rem !important;
        font-size: 0.95rem !important;
        margin: 0 !important;
    }
}

/* ============ END COMPREHENSIVE FIXES v3 ============ */

/* About section — description light, name bold */
.about-author-name {
    font-weight: 700 !important;
}

/* blog filtered tab — colLeft must span both grid columns so images match All Projects size */
.blog-grid--filtered .blog-col-left {
    grid-column: 1 / -1 !important;
}

/* align both blog columns at the top — remove right-column stagger */
.blog-col-right {
    margin-top: 0 !important;
}

/* Explore Our Work section — keep text white against dark background */
.explore-eyebrow {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

.explore-heading {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}


/* Reduce heading sizes across sections — one step smaller */
.services-heading,
.team-heading {
    font-size: clamp(1.35rem, 2.8vw, 2rem) !important;
}

.products-heading,
.features-heading,
.process-heading,
.industries-heading {
    font-size: clamp(1.35rem, 2.8vw, 2rem) !important;
}

.blog-heading {
    font-size: clamp(1rem, 1.8vw, 1.5rem) !important;
}

.about-desc {
    font-family: 'Raleway', 'Host Grotesk', sans-serif !important;
    font-size: clamp(0.95rem, 1.4vw, 1.0rem);
    font-weight: 300;
    line-height: 1.7;
    color: #0c1b2a;
    margin: 0 0 1rem;
}

/* Header contact strip: desktop reveal, tablet/mobile visible below nav. */
.topbar {
    width: calc(100% - 2rem) !important;
    max-width: 1120px !important;
    top: calc(1rem + 100px) !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateX(-50%) translateY(-12px) !important;
    transition: transform 300ms ease, opacity 220ms ease !important;
}

@media (hover: hover) and (min-width: 901px) {
    .nav-group:hover .topbar {
        opacity: 1 !important;
        pointer-events: auto !important;
        transform: translateX(-50%) translateY(0) !important;
    }
}

@media (max-width: 1024px) {
    .topbar {
        display: block !important;
        top: calc(1rem + 90px + 0.5rem) !important;
        width: calc(100% - 4rem) !important;
        border-radius: 10px !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        transform: translateX(-50%) !important;
        transition: none !important;
    }
}

@media (max-width: 900px) {
    .topbar {
        padding: 0.45rem 0.75rem !important;
    }

    .topbar-inner {
        justify-content: center !important;
        gap: 0.4rem 0.9rem !important;
    }

    .topbar-item {
        font-size: 0.72rem !important;
        gap: 0.35rem !important;
    }

    .topbar-icon {
        width: 22px !important;
        height: 22px !important;
    }
}

@media (max-width: 560px) {
    .topbar {
        top: calc(1rem + 82px + 0.45rem) !important;
        width: calc(100% - 3rem) !important;
        padding: 0.4rem 0.5rem !important;
    }

    .topbar-inner {
        gap: 0.35rem 0.65rem !important;
    }

    .topbar-item {
        font-size: 0.66rem !important;
    }

    .topbar-icon {
        width: 20px !important;
        height: 20px !important;
    }
}

/* Fix tablet-width nav gap: hamburger appears before mobile menu rules. */
@media (min-width: 901px) and (max-width: 1000px) {
    nav {
        min-height: 78px !important;
    }

    nav .nav-links {
        position: absolute !important;
        top: calc(100% + 0.5rem) !important;
        left: 0 !important;
        right: 0 !important;
        height: auto !important;
        max-height: 0 !important;
        overflow: hidden !important;
        opacity: 0 !important;
        pointer-events: none !important;
        transform: none !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0 !important;
        margin: 0 !important;
        padding: 0 !important;
        background: #ffffff !important;
        border-radius: 12px !important;
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12) !important;
        transition: max-height 0.35s ease, opacity 0.25s ease !important;
    }

    nav.open .nav-links,
    nav .nav-links.open {
        max-height: 80vh !important;
        overflow-y: auto !important;
        opacity: 1 !important;
        pointer-events: auto !important;
        padding: 0.5rem 0 !important;
    }

    nav .nav-link {
        display: block !important;
        width: 100% !important;
        padding: 0.85rem 1.25rem !important;
        border-bottom: 1px solid #f1ece2 !important;
    }
}

/* Topbar should appear only on header hover at every viewport width. */
.topbar {
    display: block !important;
    opacity: 0 !important;
    pointer-events: none !important;
    transform: translateX(-50%) translateY(-12px) !important;
}

.nav-group:hover .topbar {
    opacity: 1 !important;
    pointer-events: auto !important;
    transform: translateX(-50%) translateY(0) !important;
}

@media (max-width: 1024px) {
    .nav-group:hover .topbar {
        opacity: 0 !important;
        pointer-events: none !important;
        transform: translateX(-50%) translateY(-12px) !important;
    }

    .nav-group.is-hovering .topbar {
        opacity: 1 !important;
        pointer-events: auto !important;
        transform: translateX(-50%) translateY(0) !important;
    }
}

/* === Team slider — tablet & mobile responsive fix === */
@media (max-width: 1000px) and (min-width: 641px) {

    /* Keep laptop-style 3-column layout on tablets */
    .team-slider {
        grid-template-columns: 1.1fr 1fr 1fr !important;
        grid-template-rows: auto !important;
    }

    .team-image {
        grid-column: auto !important;
        grid-row: auto !important;
        height: 420px !important;
        border-radius: 12px 0 0 12px !important;
    }

    .team-info {
        grid-column: auto !important;
        grid-row: auto !important;
        height: 420px !important;
        min-height: 0 !important;
        border-radius: 0 !important;
        padding: 1.75rem 1.25rem !important;
    }

    .team-bio {
        grid-column: auto !important;
        grid-row: auto !important;
        height: 420px !important;
        border-left: 1px solid rgba(255, 255, 255, 0.1) !important;
        border-top: none !important;
        border-radius: 0 12px 12px 0 !important;
        padding: 1.75rem 1.25rem !important;
    }
}

@media (max-width: 1000px) {
    .team-slider-section {
        padding: 2.5rem 1rem !important;
    }

    .team-image {
        border-radius: 12px 0 0 12px !important;
    }

    .team-image img {
        object-position: center 15% !important;
    }

    .team-info {
        padding: 1.5rem 1.25rem !important;
        min-height: auto !important;
    }

    .team-bio {
        padding: 1.5rem 1.25rem !important;
    }

    .team-bio p {
        font-size: 0.9rem !important;
        line-height: 1.6 !important;
    }
}

@media (max-width: 640px) {
    .team-slider-section {
        padding: 2rem 0.75rem !important;
    }

    .team-image {
        height: 440px !important;
        border-radius: 12px !important;
        background: #0d1220 !important;
    }

    /* Fill the frame with the photo */
    .team-image img {
        width: 100% !important;
        height: 100% !important;
        margin: 0 !important;
        display: block !important;
        object-fit: cover !important;
        object-position: center 20% !important;
    }

    .team-name {
        font-size: clamp(1.35rem, 6vw, 1.75rem) !important;
        margin-bottom: 1rem !important;
    }

    .team-info,
    .team-bio {
        padding: 1.25rem 1rem !important;
    }

    .team-bio {
        gap: 0.9rem !important;
    }

    .team-bio p {
        font-size: 0.875rem !important;
    }

    /* Vertical laptop-style nav buttons on phones too */
    .team-nav {
        writing-mode: vertical-lr !important;
        left: 0 !important;
        right: auto !important;
        bottom: auto !important;
        padding: 1rem 0.6rem !important;
        font-size: 0.6rem !important;
        letter-spacing: 0.2em !important;
        background: rgba(0, 0, 0, 0.6) !important;
        border: none !important;
        border-radius: 0 !important;
        backdrop-filter: none;
    }

    .team-next {
        top: 0 !important;
        height: 50% !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
    }

    .team-prev {
        top: auto !important;
        bottom: 0 !important;
        height: 50% !important;
    }

    .team-email {
        font-size: 0.7rem !important;
    }
}

@media (max-width: 380px) {
    .team-image {
        height: 400px !important;
    }
}

/* === Investors nav dropdown — span full nav width (desktop) === */
@media (min-width: 901px) {
    nav .nav-dropdown {
        position: static !important;
    }

    nav .nav-dropdown-menu,
    nav .nav-dropdown:hover .nav-dropdown-menu {
        left: 3rem !important;
        right: 3rem !important;
        width: auto !important;
        min-width: 0 !important;
        max-width: none !important;
        transform: none !important;
        margin-top: 0.5rem !important;
        padding: 1rem 1.25rem !important;
        grid-template-columns: repeat(4, 1fr) !important;
        column-gap: 1rem !important;
        row-gap: 0.25rem !important;
    }

    /* Invisible hover bridge so cursor can travel from trigger to menu
       without losing :hover on .nav-dropdown. Anchored to the trigger
       link (not the full-width menu) so it doesn't cover sibling nav
       links like Home/About and block their clicks. */
    nav .nav-dropdown-menu::before {
        display: none !important;
    }

    nav .nav-dropdown>.nav-link {
        position: relative !important;
    }

    nav .nav-dropdown>.nav-link::after {
        content: "" !important;
        position: absolute !important;
        left: -1.5rem !important;
        right: -1.5rem !important;
        top: 100% !important;
        height: 3rem !important;
        background: transparent !important;
        pointer-events: auto !important;
    }

    nav .nav-dropdown-menu a {
        padding: 10px 14px !important;
        font-size: 0.85rem !important;
    }
}