.material-symbols-outlined {
    display: inline-block;
    vertical-align: middle;
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.card-shadow {
    box-shadow: 0 4px 20px rgba(5, 22, 38, 0.06);
}

.projects-title {
    font-size: clamp(2.5rem, 6vw, 4.8rem);
}

.project-icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    color: #00677f;
    background: #e5f8fc;
    border-radius: 8px;
    font-size: 28px;
}

.project-overview-item,
.featured-project,
.capability-item,
.industry-item {
    transition: transform 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.project-overview-item:hover,
.featured-project:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(5, 22, 38, 0.1);
}

.project-image-wrap {
    aspect-ratio: 16 / 8.5;
    min-height: 245px;
}

.featured-project:hover .project-image-wrap img {
    transform: scale(1.035);
}

.project-image-wrap img {
    transition: transform 500ms ease;
}

.project-tag {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 5px 10px;
    color: #38485a;
    background: #f2f4f6;
    border: 1px solid #e2e8f0;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
}

.project-client-logos-section {
    margin-top: clamp(4.5rem, 8vw, 7.5rem);
    padding-top: clamp(4rem, 7vw, 6rem);
    border-top: 1px solid #dbe5ea;
}

.project-client-logos-heading {
    margin-bottom: 2.5rem;
}

.project-client-logos-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1rem;
}

.project-client-logo-card {
    min-width: 0;
    min-height: 132px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
    overflow: hidden;
    background: #fff;
    border: 1px solid #dbe5ea;
    border-radius: 8px;
    box-shadow: 0 5px 18px rgba(5, 22, 38, 0.055);
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

a.project-client-logo-card:hover {
    transform: translateY(-3px);
    border-color: #9acbd6;
    box-shadow: 0 12px 28px rgba(5, 22, 38, 0.1);
}

.project-client-logo-image {
    width: 100%;
    height: 64px;
    object-fit: contain;
    filter: grayscale(1);
    opacity: 0.72;
    transition: filter 220ms ease, opacity 220ms ease, transform 220ms ease;
}

.project-client-logo-card:hover .project-client-logo-image {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.025);
}

.projects-process-flow {
    position: relative;
}

.projects-process-flow::before {
    content: '';
    position: absolute;
    top: 71px;
    left: 6%;
    right: 6%;
    height: 2px;
    background: #cfe3e9;
}

.projects-process-step {
    position: relative;
    padding-top: 2.5rem;
}

.projects-process-marker {
    position: relative;
    z-index: 1;
    width: 64px;
    height: 64px;
    display: grid;
    place-items: center;
    color: #fff;
    background: #051626;
    border: 6px solid #fff;
    border-radius: 50%;
    box-shadow: 0 0 0 1px #cfe3e9;
}

.projects-process-number {
    position: absolute;
    top: -0.65rem;
    right: -0.65rem;
    min-width: 1.65rem;
    height: 1.65rem;
    display: grid;
    place-items: center;
    color: #051626;
    background: #00d2ff;
    border: 2px solid #fff;
    border-radius: 50%;
    font-size: 0.65rem;
    font-weight: 800;
}

.projects-process-content {
    margin-top: 1.25rem;
}

.project-detail-aside {
    align-self: start;
    padding: 1.5rem;
    background: #f2f4f6;
    border-left: 3px solid #00d2ff;
    border-radius: 8px;
}

.project-gallery-image {
    aspect-ratio: 4 / 3;
    background: #e6e8ea;
}

.project-gallery-image img { transition: transform 500ms ease; }
.project-gallery-image:hover img { transform: scale(1.035); }

@media (max-width: 1024px) {
    .projects-hero { min-height: 70vh; }
    .project-image-wrap { min-height: 225px; }
    .project-client-logos-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
    .projects-hero { min-height: auto; }
    .projects-hero .projects-hero-inner {
        padding: 7rem 2rem 6rem !important;
    }
    .projects-section { padding-top: 4.5rem; padding-bottom: 4.5rem; }
    .projects-process-flow { max-width: 34rem; margin-inline: auto; gap: 0; }
    .projects-process-flow::before { display: none; }
    .projects-process-step {
        min-height: 10.75rem;
        display: grid;
        grid-template-columns: 4.5rem minmax(0, 1fr);
        gap: 1.25rem;
        padding: 0 0 2.5rem;
    }
    .projects-process-step:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 4rem;
        bottom: 0;
        left: 31px;
        width: 2px;
        background: #9ccbd6;
    }
    .projects-process-step:not(:last-child)::before {
        content: '';
        position: absolute;
        z-index: 2;
        bottom: 0.7rem;
        left: 26px;
        width: 12px;
        height: 12px;
        border-right: 2px solid #00677f;
        border-bottom: 2px solid #00677f;
        transform: rotate(45deg);
    }
    .projects-process-marker { grid-column: 1; grid-row: 1; }
    .projects-process-content { grid-column: 2; grid-row: 1; margin-top: 0.15rem; }
    .project-client-logos-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 0.75rem; }
    .project-client-logo-card { min-height: 112px; padding: 1rem; }
    .project-client-logo-image { height: 56px; }
}

@media (max-width: 480px) {
    .projects-hero .projects-hero-inner {
        padding: 6.5rem 1.75rem 5.5rem !important;
    }
    .projects-title { font-size: 2.35rem; line-height: 1.12; }
    .projects-actions { flex-direction: column; }
    .projects-actions a { width: 100%; text-align: center; }
    .project-image-wrap { min-height: 190px; aspect-ratio: 4 / 3; }
    .industry-grid { gap: 0.75rem; }
    .industry-item { min-height: 7.5rem; padding: 1rem; }
    .industry-item h3 { font-size: 0.875rem; }
    .projects-process-step { grid-template-columns: 4.25rem minmax(0, 1fr); gap: 1rem; }
    .project-client-logos-section { margin-top: 3.75rem; padding-top: 3.5rem; }
    .project-client-logos-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .project-client-logo-card { min-height: 100px; padding: 0.85rem; }
    .project-client-logo-image { height: 50px; }
}
