*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

img,
video,
iframe {
    max-width: 100%;
    height: auto;
}

:root {
    --page-gutter: 40px;
}

body {
    font-family: "Poppins", sans-serif;
    color: #111827;
}

section {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 100px;
    padding-bottom: 100px;
    padding-left: var(--page-gutter);
    padding-right: var(--page-gutter);
    box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Roboto Condensed", sans-serif;
}

h2 {
    font-size: 45px;
    font-weight: 500;
}

h4 {
    font-size: 35px;
    font-weight: 500;
}

p,
a,
li,
label,
input,
textarea,
button {
    font-family: "Poppins", sans-serif;
}

p {
    padding-top: 10px;
    padding-bottom: 10px;
}

.hero-wrapper {
    position: relative;
    width: 100%;
    height: 80vh;
    min-height: 580px;
    background: #0f172a;
    overflow: hidden;
}

.hero-wrapper.home-hero-wrapper {
    height: 100vh;
}

.hero-wrapper .bg-image,
.hero-wrapper .bg-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
    transform: none;
}

.hero-wrapper .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.hero {
    position: absolute;
    inset: 0;
    z-index: 5;
    color: white;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding-bottom: 120px;
    padding-left: var(--page-gutter);
    padding-right: var(--page-gutter);
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.hero-title {
    font-size: 55px;
    font-weight: 500;
    line-height: 1.3;
    color: #ffffff;
    margin: 0;
    max-width: 820px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: transparent;
    border-bottom: 1px solid transparent;
    transition: all 0.4s ease;
}

.main-header.scrolled {
    background: rgba(0, 0, 0, 0.39);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(20, 20, 20, 0.048);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 0;
    padding-bottom: 0;
    padding-left: var(--page-gutter);
    padding-right: var(--page-gutter);
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 170px;
    left: -20px;
}

.nav-bar a {
    color: white;
    text-decoration: none;
    margin-left: 40px;
    font-size: 18px;
    font-weight: 400;
    font-family: "Poppins", sans-serif;
    transition: color 0.3s ease;
}

.nav-bar a:hover,
.nav-bar a.active {
    color: #00a1ca !important;
}

.nav-toggle-checkbox {
    display: none;
}

.navbar-toggler {
    display: none;
    width: 26px;
    height: 20px;
    position: relative;
    cursor: pointer;
}

.navbar-toggler-icon {
    position: absolute;
    top: 9px;
    left: 0;
    width: 26px;
    height: 2px;
    background: #fff;
    transition: background .3s ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 26px;
    height: 2px;
    background: #fff;
    transition: transform .3s ease;
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    top: 8px;
}

.nav-toggle-checkbox:checked~.navbar-toggler .navbar-toggler-icon {
    background: transparent;
}

.nav-toggle-checkbox:checked~.navbar-toggler .navbar-toggler-icon::before {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle-checkbox:checked~.navbar-toggler .navbar-toggler-icon::after {
    transform: translateY(-8px) rotate(-45deg);
}

/* features */
.our-craft-section {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    padding-left: var(--page-gutter);
    padding-right: var(--page-gutter);
    box-sizing: border-box;
}

.craft-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 60px;
    margin-bottom: 60px;
}

.craft-heading .craft-highlight {
    color: #6f7362;
}

.craft-heading {
    color: #17181c;
    margin: 0;
    max-width: 850px;
}

.craft-heading .word {
    display: inline-block;
    white-space: nowrap;
}

.craft-heading .letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.craft-heading.animate .letter {
    opacity: 1;
    transform: translateY(0);
}

.section-topic {
    color: #008db1;
    padding-bottom: 10px;
    font-size: 18px;
    font-weight: 525;
    letter-spacing: 1px;
}

.craft-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #6f7362;
    max-width: 300px;
    text-align: right;
    margin: 0;
}

.craft-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.craft-item {
    background: #ffffff;
    border-radius: 14px;
    padding: 36px 32px;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.048);
    border: 1px solid rgba(0, 0, 0, 0.212);
    transition: transform .4s cubic-bezier(.22, 1, .36, 1), box-shadow .4s ease, background .4s ease, border-color .4s ease;
    cursor: pointer;
    will-change: transform;
}

.craft-item:hover {
    background: #008eb1;
    border-color: transparent;
    transform: translateY(-12px) scale(1.02);
    box-shadow: 0 15px 25px rgba(0, 141, 177, 0.4);
}

.craft-item:hover .craft-icon {
    background: #ffffff;
    color: #008db1;
    transform: rotate(360deg) scale(1.12);
    box-shadow: 0 10px 22px rgba(255, 255, 255, .4);
}

.craft-item:hover p {
    color: #ffffff;
}

.craft-item:hover h5 {
    color: #ffffff;
    letter-spacing: .3px;
}

.craft-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: #008db1;
    color: #ffffff;
    border-radius: 50%;
    font-size: 30px;
    font-weight: 800;
    margin-bottom: 22px;
    box-shadow: 0 6px 14px rgba(0, 141, 177, .22);
    transition: transform .4s cubic-bezier(.22, 1, .36, 1), background .4s ease, color .4s ease, box-shadow .4s ease;
}

.craft-item h5 {
    font-size: 20px;
    color: #17181c;
    margin: 0 0 10px;
    transition: color .35s ease, letter-spacing .35s ease;
}

.craft-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #5b6470;
    margin: 0;
    transition: color .35s ease;
}

/* what we offer section */
.offer-section {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 40px;
    align-items: start;
    padding-top: 0px;
    padding-bottom: 100px;
    padding-left: var(--page-gutter);
    padding-right: var(--page-gutter);
    box-sizing: border-box;
}

.offer-sticky {
    position: sticky;
    top: 100px;
    border-radius: 18px;
    padding: 0;
    margin-top: 0;
}

.offer-eyebrow {
    position: absolute;
    top: -80px;
    color: #008db1;
    padding-bottom: 20px;
    font-size: 18px;
    font-weight: 525;
    text-align: left;
    left: -7px;
}

.offer-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.offer-list-item {
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 22px;
    color: #17181c;
    padding: 16px 20px;
    border-radius: 12px;
    cursor: pointer;
    opacity: 1;
    filter: none;
    transform: translateX(0);
    transition:
        background-color 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        color 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        font-weight 0.5s ease,
        transform 0.5s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 20px;
}

.offer-list-item:not(.active):hover {
    background: rgba(0, 161, 202, .08);
}

.offer-list-item.active {
    background: #00a1ca;
    color: #ffffff;
    font-weight: 600;
    transform: translateX(6px);
    box-shadow: 0 10px 24px rgba(0, 161, 202, .35);
}

.offer-track {
    position: relative;
    height: 300vh;
}

.offer-step {
    position: absolute;
    left: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;
}

.offer-step[data-index="0"] {
    top: 0;
}

.offer-step[data-index="1"] {
    top: 100vh;
}

.offer-step[data-index="2"] {
    top: 200vh;
}

.offer-visual {
    position: sticky;
    top: 120px;
    height: 480px;
    border-radius: 16px;
    overflow: hidden;
}

.offer-block {
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease;
}

.offer-block.active {
    opacity: 1;
    visibility: visible;
}

.offer-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left center;
    display: block;
}

.offer-caption {
    position: absolute;
    top: 24px;
    left: 24px;
    right: 24px;
    background: rgba(20, 20, 20, 0.699);
    backdrop-filter: blur(6px);
    border-radius: 10px;
    padding: 28px 32px;
}

.offer-caption p {
    color: #ffffff;
    font-size: 16px;
    line-height: 1.6;
    margin: 0;
}

/* growth / impact section */
.growth-section {
    background: #0a0a0a;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    max-width: none;
    padding-top: 100px;
    padding-bottom: 100px;
    padding-left: var(--page-gutter);
    padding-right: var(--page-gutter);
    box-sizing: border-box;
}

.growth-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.growth-heading {
    color: #ffffff;
    margin: 0 0 32px;
}

.growth-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.growth-item {
    position: relative;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
    padding: 26px 22px 22px;
    overflow: hidden;
    transition: transform .4s cubic-bezier(.22, 1, .36, 1), background .4s ease, border-color .4s ease;
}

.growth-item:nth-child(2) {
    margin-top: 14px;
}

.growth-item:nth-child(3) {
    margin-top: 24px;
}

.growth-item:nth-child(4) {
    margin-top: 34px;
}

.growth-item:hover {
    transform: translateY(-8px);
    background: rgba(0, 161, 202, .12);
    border-color: #00a1ca;
}

.growth-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 161, 202, .15);
    color: #00a1ca;
    margin-bottom: 14px;
}

.growth-number {
    display: block;
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 44px;
    line-height: 1;
    color: #ffffff;
    margin-bottom: 8px;
}

.growth-plus {
    font-size: 24px;
    color: #00a1ca;
}

.growth-label {
    font-size: 14px;
    line-height: 1.5;
    color: #9a9a9a;
    margin: 0 0 12px;
}

.growth-bar {
    display: block;
    height: 3px;
    width: 30%;
    background: #00a1ca;
    border-radius: 3px;
    transition: width .5s ease;
}

.growth-item:hover .growth-bar {
    width: 100%;
}

/* process */
.development-process {
    padding-left: var(--page-gutter);
    padding-right: var(--page-gutter);
    box-sizing: border-box;
}

.development-process .container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding-left: 0;
    padding-right: 0;
}

.process-topic {
    color: #17181c;
    margin: 0;
    max-width: 850px;
    text-align: left;
}

.process-intro {
    max-width: 750px;
}

.description {
    padding-top: 20px;
    max-width: 550px;
}

.process-timeline {
    position: relative;
    width: 100%;
    align-self: center;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 90px;
    text-align: center;
}

.timeline-kicker {
    position: absolute;
    top: -55px;
    left: 50%;
    transform: translateX(-50%);
    color: #008db1;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: .1em;
}

.timeline-arcs {
    position: absolute;
    top: -30px;
    left: 0;
    width: 100%;
    height: 210px;
    pointer-events: none;
    z-index: 0;
    overflow: visible;
}

.timeline-step {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.3s ease, transform 1.3s cubic-bezier(.22, 1, .36, 1);
}

.timeline-step.in-view {
    opacity: 1;
    transform: translateY(0);
}

.timeline-step[data-index="0"].in-view {
    transition-delay: 0s;
}

.timeline-step[data-index="1"].in-view {
    transition-delay: .15s;
}

.timeline-step[data-index="2"].in-view {
    transition-delay: .1s;
}

.timeline-circle {
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: #ffffff;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    margin-bottom: 22px;
    transition: transform .35s ease, box-shadow .35s ease;
}

.timeline-step:hover .timeline-circle {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 18px 40px rgba(0, 0, 0, .15);
}

.timeline-badge {
    position: absolute;
    top: -10px;
    left: -10px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #0a0a0a;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    font-size: 14px;
}

.timeline-icon {
    color: #17181c;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-step h3 {
    margin: 0 0 8px;
}

.timeline-step .process-description {
    max-width: 230px;
    margin: 0 auto;
}

/* our work */
.our-projects {
    padding-top: 0px;
    padding-bottom: 0px;
    padding-left: var(--page-gutter);
    padding-right: var(--page-gutter);
    box-sizing: border-box;
}

.projects-topic {
    color: #17181c;
    margin: 0;
    max-width: 850px;
    text-align: left;
}

.bento-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    grid-template-rows: 1fr 1fr;
    gap: 15px;
    height: 520px;
    margin-top: 20px;
}

.bento-item {
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.103);
}

.bento-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.bento-item:hover img {
    transform: scale(1.05);
}

.bento-large {
    grid-column: 1;
    grid-row: 1 / 3;
}

.bento-small {
    grid-column: 2;
}

.bento-small:nth-of-type(2) {
    grid-row: 1;
}

.bento-small:nth-of-type(3) {
    grid-row: 2;
}

.project-image1 {
    height: 100%;
}

/* cta section */

.CTA-banner-section .container {
    max-width: 1200px;
    margin: 0 auto;
    display: block;
    padding-left: 0;
    padding-right: 0;
    padding-top: 0px;
    padding-bottom: 0px;
}

.cta-card {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    position: relative;
    border-radius: 32px;
    overflow: visible;
    background: linear-gradient(120deg, #00a1ca 0%, #0074a8 35%, #c10000 100%);
    padding: 10px 60px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, .15);
}

.cta-card .row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.col-8.banner-text {
    flex: 0 0 58%;
    position: relative;
    z-index: 2;
    text-align: left;
}

h4.banner-text {
    line-height: 1.3;
    color: #fff;
    margin: 0 0 10px;
    max-width: 520px;
}

.banner-text p {
    font-family: "Roboto Condensed", sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .85);
    margin: 0 0 30px;
    padding: 0;
    max-width: 460px;
}

.CTA-button {
    position: relative;
    z-index: 2;
}

.CTA-button .button {
    display: inline-block;
    font-family: "Poppins", sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: #00a1ca;
    background: #fff;
    text-decoration: none;
    padding: 16px 36px;
    border-radius: 50px;
    transition: all .3s ease;
    white-space: nowrap;
}

.CTA-button .button:hover {
    background: #0a0a0a;
    color: #fff;
}

.col-4.cta-image-wrap {
    flex: 0 0 38%;
    position: relative;
    align-self: flex-end;
    height: 100%;
    overflow: visible;
}

.cta-image {
    display: block;
    width: 100%;
    max-width: 300px;
    position: relative;
    bottom: -10px;
    top: 10px;
    margin-left: auto;
}

/* footer */
.site-footer {
    background: #09090b;
    color: #9ca3af;
    padding: 50px 0 30px;
    font-family: "Poppins", sans-serif;
    font-size: 14px;
    width: 100%;
    box-sizing: border-box;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--page-gutter);
}

.footer-brand-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 5px;
}

.footer-logo img {
    height: 50px;
    display: block;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #1c1e24;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    transition: background 0.3s ease, color 0.3s ease;
}

.social-icon:hover {
    background: #00a0cf;
    color: #ffffff;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 22px 0;
    border: none;
}

.footer-subscribe-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    flex-wrap: wrap;
    padding: 5px 0;
}

.footer-subscribe-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #6b7280;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.footer-subscribe-heading {
    font-size: 40px;
    font-weight: 500;
    color: #ffffff;
    margin: 0;
}

.footer-subscribe-heading span {
    color: #6b7280;
    font-weight: 300;
}

.footer-subscribe-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #333338;
    padding-bottom: 8px;
    width: 100%;
    max-width: 440px;
}

.footer-subscribe-box input {
    background: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    font-size: 14px;
    flex: 1;
    padding: 6px 0;
    font-family: "Poppins", sans-serif;
}

.footer-subscribe-box input::placeholder {
    color: #6b7280;
}

.footer-subscribe-box button {
    background: transparent;
    border: none;
    color: #ffffff;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    padding: 6px 0 6px 15px;
    font-family: "Poppins", sans-serif;
    transition: color 0.2s ease;
}

.footer-subscribe-box button:hover {
    color: #00a0cf;
}

.footer-tags-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    font-size: 13px;
    color: #6b7280;
    gap: 20px;
}

.footer-tags-row span {
    color: #6b7280;
    font-size: 13px;
    transition: color 0.2s ease;
    cursor: default;
}

.footer-tags-row span:hover {
    color: #ffffff;
}

.footer-info-row {
    font-size: 13px;
    color: #9ca3af;
    line-height: 1.8;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer-address {
    color: #9ca3af;
}

.footer-map-link {
    color: #ffffff;
    text-decoration: underline;
    font-weight: 500;
    font-size: 13px;
    transition: color 0.2s ease;
}

.footer-map-link:hover {
    color: #00a0cf;
}

.footer-copyright {
    text-align: center;
    font-size: 12px;
    color: #4b5563;
    margin-top: 35px;
}

/* marquee */
.client-marquee {
    max-width: none;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    padding-top: 0px;
    padding-bottom: 100px;
    background: white;
    text-align: center;
    overflow: hidden;
}

.client-marquee__title {
    line-height: 1.3;
    text-align: center;
    color: #17181c;
    margin-bottom: 40px;
}

.client-marquee__title span {
    color: #6f7362;
}

.client-marquee__viewport {
    width: 100%;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(to right, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.client-marquee__track {
    display: flex;
    align-items: center;
    width: max-content;
    will-change: transform;
    -webkit-animation: marquee-scroll 40s linear infinite !important;
    animation: marquee-scroll 40s linear infinite !important;
}

.client-marquee__item {
    flex: 0 0 auto;
    width: 120px;
    height: 70px;
    margin: 0 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-marquee__item img {
    max-width: 100%;
    max-height: 70px;
    filter: grayscale(0%);
    opacity: 1;
    transition: filter .3s ease, opacity .3s ease, transform .3s ease;
}

.client-marquee__item img:hover {
    filter: grayscale(100%);
    opacity: .7;
    transform: scale(1.05);
}

.client-marquee__track:hover {
    animation-play-state: paused;
}

@-webkit-keyframes marquee-scroll {
    0% {
        -webkit-transform: translateX(0);
    }

    100% {
        -webkit-transform: translateX(-50%);
    }
}

@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.nav-toggle-checkbox {
    display: none;
}

.navbar-toggler {
    display: none;
    width: 26px;
    height: 20px;
    position: relative;
    cursor: pointer;
}

.navbar-toggler-icon {
    position: absolute;
    top: 9px;
    left: 0;
    width: 26px;
    height: 2px;
    background: #fff;
    transition: background .3s ease;
}

.navbar-toggler-icon::before,
.navbar-toggler-icon::after {
    content: '';
    position: absolute;
    left: 0;
    width: 26px;
    height: 2px;
    background: #fff;
    transition: transform .3s ease;
}

.navbar-toggler-icon::before {
    top: -8px;
}

.navbar-toggler-icon::after {
    top: 8px;
}

.nav-toggle-checkbox:checked~.navbar-toggler .navbar-toggler-icon {
    background: transparent;
}

.nav-toggle-checkbox:checked~.navbar-toggler .navbar-toggler-icon::before {
    transform: translateY(8px) rotate(45deg);
}

.nav-toggle-checkbox:checked~.navbar-toggler .navbar-toggler-icon::after {
    transform: translateY(-8px) rotate(-45deg);
}




/* Extra large devices (large laptops and desktops) > 1200 */
@media only screen and (min-width: 1200px) {}

/* Width 1025px to 1199px */
@media screen and (max-width: 1199px) {
    section {
        margin: 0 auto;
        padding: 60px 20px;
    }

    /* CTA BANNER */
    .cta-card {
        width: 100%;
        max-width: 1180px;
        padding-top: 20px;
    }

    .cta-card .row {
        gap: 0;
    }

    .cta-image {
        max-width: 240px;
    }

    /* HEADER */
    .container {
        padding: 0 40px;
    }

    .nav-bar a {
        margin-left: 18px;
        font-size: 14px;
    }

    /* HERO */
    .hero-wrapper {
        height: 60vh;
        max-height: 640px;
        min-height: 480px;
    }

    .bg-video {
        object-fit: cover;
        object-position: center center;
    }

    .hero {
        padding: 0 40px 70px;
    }

    /* FEATURES */
    .our-craft-section {
        padding: 20px 40px;
    }

    .craft-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* WHAT WE OFFER */
    .offer-section {
        grid-template-columns: 320px 1fr;
        padding: 80px 40px;
    }

    .offer-list-item {
        font-size: 19px;
    }

    .our-projects {
        padding: 20px 40px;
    }

    .CTA-banner-section {
        padding: 20px 40px;
    }

    .CTA-banner-section .container {
        padding-left: 0;
        padding-right: 0;
    }

    .col-8.banner-text {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    h4.banner-text {
        font-size: 28px;
        line-height: 1.3;
    }

    .CTA-button .button {
        padding: 12px 25px;
    }

    .banner-text p {
        margin: 0 0 20px;
    }

    .client-marquee {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    /* OUR IMPACT */
    .growth-section {
        padding: 80px 40px;
    }

    .growth-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .growth-item:nth-child(n) {
        margin-top: 0;
    }

    /* PROCESS / PROJECTS */

    .footer-columns {
        gap: 30px;
    }
}

/* iPads (landscape) 992px to 1024px */
@media screen and (max-width: 1024px) {
    section {
        padding: 60px 20px;
    }

    /* HEADER */
    .container {
        padding: 0 30px;
    }

    .logo img {
        width: 150px;
    }

    .nav-bar a {
        margin-left: 16px;
        font-size: 14px;
    }

    /* HERO */
    .hero-wrapper {
        height: 60vh;
        max-height: 600px;
        min-height: 460px;
    }

    .bg-video {
        object-fit: cover;
        object-position: center left;
    }

    .hero {
        padding: 0 30px 60px;
    }

    /* FEATURES */
    .our-craft-section {
        padding: 20px 30px;
    }

    .craft-header {
        margin-top: 70px;
        gap: 40px;
    }

    .craft-desc {
        font-size: 14px;
        max-width: 260px;
    }

    .craft-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .craft-item {
        padding: 28px 24px;
    }

    .craft-item h5 {
        font-size: 17px;
    }

    .craft-item p {
        font-size: 13.5px;
    }

    /* WHAT WE OFFER */
    .offer-section {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 60px 20px;
    }

    .offer-sticky {
        position: static;
        padding: 0;
        margin-top: 0;
    }

    .offer-eyebrow {
        position: static;
        display: block;
        margin-bottom: 20px;
    }

    .offer-list-item {
        font-size: 19px;
    }

    .offer-track {
        height: auto;
    }

    .offer-step {
        position: static;
        height: auto;
    }

    .offer-visual {
        position: static;
        top: auto;
        height: 400px;
        margin-top: 30px;
    }

    .offer-block {
        position: static;
        opacity: 1;
        visibility: visible;
        display: none;
    }

    .offer-block.active {
        display: block;
    }

    .offer-caption {
        padding: 22px 24px;
    }

    .offer-caption p {
        font-size: 14.5px;
    }


    /* OUR IMPACT */
    .growth-section {
        padding: 60px 30px;
    }

    .growth-heading {
        font-size: 28px;
        margin-bottom: 24px;
    }

    .growth-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .growth-item:nth-child(n) {
        margin-top: 0;
    }

    .growth-number {
        font-size: 38px;
    }

    .growth-label {
        font-size: 13px;
    }

    /* PROCESS */

    .description {
        font-size: 14.5px;
    }

    .process-timeline {
        gap: 18px;
        margin-top: 70px;
    }

    .timeline-circle {
        width: 120px;
        height: 120px;
        margin-bottom: 18px;
    }

    .timeline-step .process-description {
        max-width: 200px;
        font-size: 13.5px;
    }

    /* OUR WORK */
    .our-projects {
        padding: 20px 30px;
    }

    .bento-grid {
        height: 460px;
        gap: 12px;
    }

    /* CTA BANNER */
    .CTA-banner-section {
        padding: 20px 30px;
    }

    .CTA-banner-section .container {
        padding-left: 0;
        padding-right: 0;
    }

    .cta-card {
        width: 100%;
        max-width: 100%;
        padding: 24px 40px;
    }

    .cta-card .row {
        gap: 20px;
    }

    h4.banner-text {
        font-size: 26px;
    }

    .banner-text p {
        font-size: 14px;
        margin-bottom: 20px;
    }

    .CTA-button .button {
        padding: 13px 28px;
        font-size: 14px;
    }

    .cta-image {
        max-width: 220px;
    }

    /* MARQUEE */
    .client-marquee {
        padding: 40px 0 60px;
    }

    .client-marquee__title {
        font-size: 26px;
        padding: 0px 30px;
        margin-bottom: 30px;
    }

    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 20px;
    }

    .footer-brand-row {
        padding: 24px 0 32px;
    }
}

/* iPads (portrait) - 768px to 991px */
@media screen and (max-width: 991px) {
    section {
        padding: 50px 20px;
    }

    /* HEADER / NAV */
    .container {
        padding: 0 24px;
    }

    .logo img {
        width: 140px;
    }

    .navbar-toggler {
        display: block;
        position: relative;
        z-index: 1100;
    }

    .nav-bar {
        display: flex;
        position: fixed;
        top: 0;
        right: 0;
        width: min(70vw, 320px);
        height: 100vh;
        background: #0a0a0a;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 0;
        padding: 0 40px;
        transform: translateX(100%);
        transition: transform .35s ease;
        z-index: 1050;
    }

    .nav-toggle-checkbox:checked~.nav-bar {
        transform: translateX(0);
    }

    .nav-bar a {
        color: #ffffff;
        margin: 0;
        padding: 16px 0;
        font-size: 18px;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* HERO */
    .hero-wrapper {
        height: 45vh;
        min-height: 480px;
    }

    .hero-wrapper.home-hero-wrapper {
        height: 70vh;
        min-height: 500px;
    }

    .hero {
        padding: 0 30px 60px;
    }

    .bg-video {
        object-fit: cover;
        object-position: center right;
    }

    /* FEATURES */
    .our-craft-section {
        padding: 20px 20px;
    }

    .craft-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        margin-top: 70px;
        margin-bottom: 40px;
    }

    h2,
    .h2,
    .craft-heading,
    .craft-heading .craft-highlight,
    .about-heading,
    .expertise-heading,
    .growth-heading,
    .services-heading,
    .history-subtopic,
    .reviews-subtopic,
    .form-title,
    .surveillance-intro-title,
    .surveillance-features-main-title,
    .surveillance-slider-title,
    .client-marquee__title {
        font-size: 30px !important;
    }

    .section-topic {
        font-size: 16px;
        padding-bottom: 16px;
    }

    .craft-desc {
        text-align: left;
        max-width: 100%;
        font-size: 14px;
    }

    .craft-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .craft-item {
        padding: 26px 22px;
    }

    .craft-item h5 {
        font-size: 17px;
    }

    .craft-item p {
        font-size: 13.5px;
    }

    /* WHAT WE OFFER */
    .offer-section {
        grid-template-columns: 1fr;
        gap: 0;
        padding: 50px 20px;
    }

    .offer-sticky {
        position: static;
        padding: 0;
        margin-top: 0;
    }

    .offer-eyebrow {
        position: static;
        display: block;
        margin-bottom: 16px;
    }

    .offer-list-item {
        font-size: 18px;
        padding: 14px 16px;
        margin-bottom: 12px;
    }

    .offer-track {
        height: auto;
    }

    .offer-step {
        position: static;
        height: auto;
    }

    .offer-visual {
        position: static;
        height: 300px;
        margin-top: 24px;
    }

    .offer-caption {
        padding: 18px 20px;
    }

    .offer-caption p {
        font-size: 14px;
    }

    .offer-block {
        position: static;
        opacity: 1;
        visibility: visible;
        display: none;
    }

    .offer-block.active {
        display: block;
    }

    /* OUR IMPACT */
    .growth-section {
        padding: 50px 24px;
    }

    .growth-heading {
        font-size: 24px;
        margin-bottom: 20px;
    }

    .growth-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }

    .growth-item:nth-child(n) {
        margin-top: 0;
    }

    .growth-item {
        padding: 20px 18px;
    }

    .growth-number {
        font-size: 32px;
    }

    .growth-label {
        font-size: 13px;
    }

    .description {
        font-size: 14px;
    }

    .process-timeline {
        grid-template-columns: 1fr;
        gap: 60px;
        margin-top: 60px;
    }

    .timeline-arcs {
        display: none;
    }


    .timeline-step {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .timeline-circle {
        width: 110px;
        height: 110px;
        margin-bottom: 18px;
    }

    .timeline-step .process-description {
        font-size: 12px;
        max-width: 220px;
    }

    .timeline-step {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 1.3s ease, transform 1.3s cubic-bezier(.22, 1, .36, 1);
    }

    /* OUR WORK */
    .our-projects {
        padding: 20px 20px;
    }

    .bento-grid {
        height: 460px;
        gap: 12px;
    }

    /* CTA BANNER  */
    .CTA-banner-section {
        padding: 20px 24px;
    }

    .cta-card {
        width: 100%;
        padding: 24px;
    }

    .cta-card .row {
        flex-direction: row;
        align-items: center;
        gap: 20px;
    }

    .col-8.banner-text {
        flex: 0 0 60%;
        max-width: 60%;
        width: 60%;
        text-align: left;
    }

    .col-4.cta-image-wrap {
        flex: 0 0 36%;
        max-width: 36%;
        width: 36%;
        align-self: center;
        margin-top: 0;
    }

    h4.banner-text {
        font-size: 22px;
        max-width: 100%;
    }

    .banner-text p {
        font-size: 13px;
        max-width: 100%;
    }

    .CTA-banner-section .container {
        padding-left: 0;
        padding-right: 0;
    }

    .cta-image {
        max-width: 100%;
        top: 25px;
    }

    /* MARQUEE */
    .client-marquee {
        padding: 40px 0 60px;
    }

    .client-marquee__title {
        padding: 0px 20px;
    }

    .footer-columns {
        grid-template-columns: repeat(2, 1fr);
        gap: 26px 20px;
    }

    .footer-col__title {
        font-family: "Poppins", sans-serif;
        font-weight: 600;
        font-size: 12px;
    }
}

/* Smartphones (landscape) 481px to 767px */
@media screen and (max-width: 767px) {

    /* PROCESS */
    .development-process {
        padding: 50px 20px 0;
    }

    :root {
        --mobile-gutter: 20px !important;
    }

    /* HEADER / NAV */
    .main-header {
        padding: 14px 0;
    }

    .container {
        padding: 0 var(--mobile-gutter);
    }

    .logo img {
        width: 110px;
    }

    .navbar-toggler {
        display: block;
        position: relative;
        z-index: 1100;
    }

    .nav-bar {
        display: flex;
        position: fixed;
        top: 0;
        right: 0;
        width: min(80vw, 280px);
        height: 100vh;
        background: #0a0a0a;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        gap: 0;
        padding: 0 30px;
        transform: translateX(100%);
        transition: transform .35s ease;
        z-index: 1050;
    }

    .nav-toggle-checkbox:checked~.nav-bar {
        transform: translateX(0);
    }

    .nav-bar a {
        color: #ffffff;
        margin: 0;
        padding: 14px 0;
        font-size: 16px;
        letter-spacing: .01em;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    /* ABOUT HERO */
    .hero-wrapper {
        height: 50vh;
        min-height: 350px;
        display: flex;
        align-items: flex-end;
    }

    .hero-wrapper.home-hero-wrapper {
        height: 70vh;
        min-height: 450px;
    }

    .hero {
        position: static;
        top: auto;
        left: auto;
        right: auto;
        transform: none;
        width: 100%;
        height: auto;
        padding: 0 var(--mobile-gutter) 28px;
    }

    .section-topic {
        color: #008db1;
        padding-bottom: 0px;
        font-size: 13px;
        letter-spacing: .02em;
        margin-bottom: 8px;
    }

    /* ABOUT INTRO */
    .about-intro {
        padding: 50px var(--mobile-gutter);
        padding-bottom: 0px;
    }

    .about-heading {
        line-height: 1.3;
        margin-bottom: 14px;
    }

    .about-image {
        order: 0;
        height: 240px;
        border-radius: 10px;
    }

    .about-col p {
        font-size: 12.5px;
        line-height: 1.6;
        margin-bottom: 0px;
    }

    .about-columns {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        align-items: center;
    }

    /* EXPERTISE */
    .expertise-section {
        padding: 40px var(--mobile-gutter);
        padding-bottom: 0px;
    }

    .expertise-grid {
        grid-template-columns: 1fr;
        gap: 22px;
        margin-top: 24px;
    }

    .expertise-item {
        position: relative;
        height: auto;
        min-height: 0;
        padding: 0;
        border-radius: 16px;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        background: #fff;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
        gap: 0;
    }

    .expertise-item .expertise-bg {
        position: relative;
        inset: auto;
        width: 100%;
        height: 180px;
        border-radius: 16px 16px 0 0;
        filter: none;
        transform: none;
    }

    .expertise-item:hover .expertise-bg {
        filter: none;
        transform: none;
    }

    .expertise-item::before,
    .expertise-item::after {
        display: none;
    }

    .expertise-item .expertise-num {
        display: none;
    }

    .expertise-icon {
        position: static;
        width: 42px;
        height: 42px;
        font-size: 10px;
        font-weight: 400;
        margin: 16px 0 0 18px;
    }

    .expertise-item h5 {
        font-size: 18px;
        line-height: 1.25;
        color: #17181c;
        margin: 12px 18px 0;
        padding-right: 0;
    }

    .expertise-item p.expertise-sub {
        font-size: 13px;
        line-height: 1.5;
        color: #5b6470;
        opacity: 1;
        max-height: none;
        overflow: visible;
        margin: 6px 18px 18px;
        padding-top: 0;
    }

    /* VISION / MISSION */
    .vision-mission-section {
        padding: 40px var(--mobile-gutter);
        padding-top: 0;
        padding-bottom: 0;
    }

    .vm-card {
        padding: 36px 20px 30px;
        border-radius: 18px;
    }

    .vm-heading {
        font-size: 19px;
        margin-bottom: 18px;
    }

    .vm-subheading {
        font-size: 12px;
        margin-bottom: 18px;
    }

    .vm-columns {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .vm-col {
        padding: 14px 16px;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        gap: 0 12px;
    }

    .vm-icon {
        width: 28px;
        height: 28px;
        font-size: 11px;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .vm-label {
        font-size: 12px;
        margin-bottom: 0;
    }

    .vm-col p {
        font-size: 12.5px;
        line-height: 1.5;
        margin: 6px 0 0;
    }

    /* SERVICES */
    .services-section {
        padding: 40px var(--mobile-gutter);
        padding-bottom: 0px;
    }

    .services-heading {
        margin-bottom: 22px;
    }

    .services-cards {
        grid-template-columns: 1fr;
        gap: 22px;
    }





    .timeline-step {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 1.3s ease, transform 1.3s cubic-bezier(.22, 1, .36, 1);
    }

    .service-card {
        height: auto;
        border-radius: 16px;
        display: flex;
        flex-direction: column;
        background: #fff;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
        cursor: default;
    }

    .service-card-bg {
        position: relative;
        inset: auto;
        width: 100%;
        height: 200px;
        border-radius: 16px 16px 0 0;
        filter: none;
        transform: none;
    }

    .service-card::before {
        display: none;
    }

    .service-card-content {
        position: static;
        height: auto;
        padding: 20px;
    }

    .service-card-num {
        display: none;
    }

    .service-card-content h3 {
        color: #17181c;
        font-size: 20px;
    }

    .service-card-details {
        max-height: none;
        opacity: 1;
        margin-top: 10px;
    }

    .service-card-details p {
        color: #5b6470;
        font-size: 13.5px;
        line-height: 1.55;
    }

    .service-card-link {
        color: #00a1ca;
        border-bottom-color: #00a1ca;
    }

    /* HISTORY */
    .history-section {
        padding: 40px var(--mobile-gutter);
        padding-top: 0;
    }

    .history-subtopic {
        font-size: 20px;
        margin-bottom: 26px;
    }

    .history-timeline-wrapper {
        overflow-x: visible;
        padding-bottom: 0;
    }

    .history-timeline {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 26px 20px;
        min-width: 0;
        padding: 0;
        justify-items: center;
    }

    .history-timeline::before {
        display: none;
    }

    .history-hex-item.hex-up,
    .history-hex-item.hex-down {
        margin-top: 0;
    }

    .history-hex-item {
        width: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .history-hex {
        width: 100%;
        max-width: 140px;
        height: auto;
        aspect-ratio: 170 / 190;
        margin: 0 auto;
    }

    .history-hex-year {
        font-size: 21px;
    }

    .history-title {
        font-size: 15px;
    }

    .history-hex-text {
        margin-top: 14px;
        max-width: 100%;
        text-align: center;
    }

    .history-hex-text p {
        font-size: 12.5px;
        line-height: 1.5;
    }

    /* REVIEWS */
    .reviews-section {
        padding: 40px var(--mobile-gutter);
        padding-bottom: 30px;
    }

    .reviews-section-topic {
        color: #008db1;
        padding-bottom: 0px;
        font-size: 13px;
        letter-spacing: .02em;
        margin-bottom: 8px;
    }

    .reviews-subtopic {
        font-size: 19px;
        margin-bottom: 16px;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .review-card {
        padding: 22px 20px;
        border-radius: 12px;
    }

    .review-quote-mark {
        font-size: 32px;
    }

    .review-text {
        font-size: 13.5px;
        line-height: 1.55;
    }

    .review-author {
        font-size: 12px;
    }

    /* CTA BANNER */
    .CTA-banner-section {
        padding: 50px 0;
    }

    .CTA-banner-section .container {
        padding-left: var(--mobile-gutter);
        padding-right: var(--mobile-gutter);
    }

    .cta-card {
        padding: 24px var(--mobile-gutter);
        border-radius: 20px;
    }

    .cta-card .row {
        flex-direction: row;
        align-items: center;
        gap: 16px;
    }

    .col-8.banner-text {
        flex: 0 0 60%;
        max-width: 60%;
        width: 60%;
        text-align: left;
    }

    h4.banner-text {
        font-size: 18px;
        letter-spacing: -0.005em;
        line-height: 1.3;
        max-width: 100%;
        margin-bottom: 10px;
    }

    .banner-text p {
        font-size: 12px;
        line-height: 1.55;
        max-width: 100%;
        margin-bottom: 16px;
    }

    .CTA-button .button {
        font-size: 12px;
        letter-spacing: .01em;
        padding: 11px 20px;
    }

    .col-4.cta-image-wrap {
        flex: 0 0 36%;
        max-width: 36%;
        width: 36%;
        align-self: center;
        margin-top: 0;
    }

    .cta-image {
        max-width: 100%;
        width: 100%;
        margin: 0;
        bottom: 0;
        top: 0;
    }

    .footer-logo img {
        width: 110px;
    }

    .footer-columns {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 40px;
        margin-bottom: 30px;
    }

    .footer-socials a {
        width: 28px;
        height: 28px;
    }

    .footer-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        margin-bottom: 20px;
    }

    .footer-hero {
        padding: 12px 0;
    }

    .footer-eyebrow {
        font-size: 11px;
        letter-spacing: .1em;
        margin-bottom: 8px;
    }

    .footer-subscribe {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .footer-hero__title {
        font-size: 26px;
        line-height: 1.2;
    }

    .footer-subscribe__form {
        min-width: 100%;
        width: 100%;
    }

    .footer-subscribe__form input {
        font-size: 13.5px;
    }

    .footer-subscribe__form button {
        font-size: 12.5px;
        letter-spacing: .02em;
    }

    .footer-tags {
        gap: 8px 10px;
        padding: 14px 0;
    }

    .footer-tags span {
        font-size: 10px;
        margin-left: 0;
        margin-right: 8px;
        padding-right: 8px;
    }

    .footer-bottom {
        grid-template-columns: 1fr;
        gap: 12px;
        text-align: center;
        padding-top: 16px;
    }

    .footer-address {
        grid-column: 1;
        justify-self: center;
        text-align: center;
    }

    .footer-address p {
        font-size: 11.5px;
        line-height: 1.6;
    }

    .footer-map-link {
        font-size: 11.5px;
    }

    .footer-copyright {
        grid-column: 1;
    }

    .footer-copyright p {
        font-size: 10.5px;
        margin-top: 4px;
    }

    .footer-brand-row {
        align-items: start;
    }

    .footer-col__list {
        gap: 10px;
    }

    .footer-tags-row {
        gap: 10px;
    }

    h4 {
        font-size: 25px;
        font-weight: 500;
    }
}

/* Smartphones (portrait) < 480px */
@media screen and (max-width: 480px) {
    :root {
        --page-gutter: 20px;
    }

    /* HEADER / NAV */
    .logo img {
        width: 90px;
    }

    .nav-bar {
        width: 85vw;
        padding: 0 24px;
    }

    .nav-bar a {
        font-size: 15px;
        padding: 12px 0;
    }

    .navbar-toggler {
        width: 22px;
        height: 16px;
    }

    .navbar-toggler-icon,
    .navbar-toggler-icon::before,
    .navbar-toggler-icon::after {
        width: 22px;
    }

    /* HERO */
    .hero-wrapper {
        height: 45vh;
        min-height: 350px;
        display: flex;
        align-items: flex-end;
    }

    .hero-wrapper.home-hero-wrapper {
        height: 70vh;
        min-height: 380px;
    }

    .hero {
        padding: 0 24px 30px;
    }

    /* FEATURES */
    .our-craft-section {
        padding: 50px 20px 0;
    }

    .craft-header {
        margin-top: 0;
        margin-bottom: 24px;
    }

    .craft-heading,
    .craft-heading .craft-highlight {
        line-height: 1.4;
    }

    .section-topic {
        font-size: 13px;
        letter-spacing: .02em;
    }

    .craft-item {
        padding: 18px 16px;
    }

    .craft-icon {
        width: 36px;
        height: 36px;
        font-size: 20px;
        margin-bottom: 12px;
    }

    .craft-item h5 {
        font-size: 15px;
        margin-bottom: 6px;
    }

    .craft-item p {
        font-size: 12.5px;
        line-height: 1.5;
    }

    .craft-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 16px;
    }

    /* WHAT WE OFFER */
    .offer-section {
        padding: 50px 20px;
    }

    .offer-image {
        width: 100%;
        height: 265px;
        overflow: hidden;
        border-radius: 10px;
        object-fit: contain;
        background: #f2f2f2;
        display: block;
    }

    .offer-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        display: block;
    }

    .offer-list-item {
        font-size: 15px;
        padding: 18px 12px;
        margin-bottom: 6px !important;
    }

    .offer-list-item.active {
        padding: 18px 12px;
    }

    .offer-eyebrow {
        font-size: 15px;
        margin-bottom: 0;
    }

    .offer-visual {
        height: 200px;
        margin-top: 20px;
    }

    .offer-caption {
        top: 20px;
        left: 0;
        right: 0;
        padding: 12px 14px;
    }

    .offer-caption p {
        font-size: 12.5px;
        line-height: 1.5;
    }

    /* OUR IMPACT */
    .growth-section {
        padding: 50px 20px;
    }

    .growth-heading {
        font-size: 18.5px;
        line-height: 1.4;
        margin-bottom: 20px;
    }

    .growth-grid {
        gap: 12px;
    }

    .growth-item,
    .growth-item:nth-child(n) {
        margin-top: 0;
        padding: 18px 16px;
        text-align: center;
    }

    .growth-number {
        font-size: 24px;
    }

    .growth-plus {
        font-size: 15px;
    }

    .growth-label {
        font-size: 11.5px;
        margin-bottom: 8px;
    }



    .description {
        font-size: 13.5px;
    }

    .process-timeline {
        gap: 50px;
        margin-top: 40px;
    }

    .timeline-circle {
        width: 84px;
        height: 84px;
        margin-bottom: 12px;
        box-shadow: 0 10px 30px rgba(2, 151, 189, 0.35);

    }

    .timeline-badge {
        width: 22px;
        height: 22px;
        font-size: 10px;

    }

    .timeline-step h3 {
        font-size: 20px;
        margin-top: 10px;
    }

    .timeline-step .process-description {
        font-size: 12px;
        max-width: 220px;
        margin-top: -10px;
    }

    .timeline-step {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 1.3s ease, transform 1.3s cubic-bezier(.22, 1, .36, 1);
    }

    /* OUR WORK */
    .our-projects {
        padding: 50px 20px;
    }

    .projects-topic {
        font-size: 22px;
        line-height: 1.3;
    }

    .bento-grid {
        grid-template-columns: 1.15fr 1fr;
        grid-template-rows: repeat(2, 150px);
        height: auto;
        gap: 5px;
        margin-top: 12px;
    }

    .bento-large {
        grid-column: 1;
        grid-row: 1 / 3;
    }

    .bento-small {
        grid-column: 2;
    }

    .bento-small:nth-of-type(2) {
        grid-row: 1;
    }

    .bento-small:nth-of-type(3) {
        grid-row: 2;
    }

    /* CTA BANNER */
    .cta-card .row {
        flex-direction: row;
        flex-wrap: nowrap;
        align-items: center;
        gap: 8px;
    }

    .col-8.banner-text {
        flex: 0 0 58%;
        max-width: 58%;
        width: 58%;
        text-align: left;
    }

    .col-4.cta-image-wrap {
        flex: 0 0 38%;
        max-width: 38%;
        width: 38%;
        align-self: center;
    }

    .CTA-banner-section {
        padding: 0;
    }

    .cta-card {
        padding: 12px 16px;
        border-radius: 16px;
    }

    h4.banner-text {
        line-height: 1.3;
        margin-bottom: 6px;
    }

    .banner-text p {
        margin-bottom: 10px;
        font-weight: 200;
    }

    .CTA-banner-section .CTA-button .button {
        display: inline-block;
        padding: 4px 16px;
        font-size: 8px;
        white-space: nowrap;
    }

    .cta-image {
        max-width: none;
        width: 150px;
        margin-right: 0;
        position: absolute;
        top: -80px;
        left: -25px;
    }

    .CTA-banner-section .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    /* MARQUEE */
    .client-marquee {
        padding: 40px 0 48px;
    }

    .client-marquee__title {
        margin-bottom: 20px;
        padding: 0px 20px;
    }

    .client-marquee__item {
        width: 70px;
        height: 44px;
    }

    .client-marquee__item img {
        max-height: 28px;
    }

    .footer-columns {
        grid-template-columns: 1fr 1fr;
        gap: 28px 20px;
        margin-bottom: 24px;
    }

    .footer-col__title {
        font-size: 11px;
        letter-spacing: .1em;
        margin-bottom: 14px;
        color: #00a1ca;
    }

    .footer-col__list {
        gap: 6px;
    }

    .footer-col__list li {
        font-size: 12px;
        line-height: 1.15;
    }

    .footer-col:last-child .footer-col__list li:first-child {
        line-height: 1.6;
        max-width: 140px;
    }

    .footer-map-link {
        font-size: 12px;
        margin-top: 2px;
    }

    .footer-brand-row {
        padding: 0 0 30px;
    }

    .footer-logo img {
        width: 88px;
    }

    .footer-wordmark {
        font-size: 24px;
    }

    .footer-socials {
        gap: 10px;
    }

    .footer-socials a {
        width: 30px;
        height: 30px;
    }

    .footer-bottom {
        padding-top: 20px;
        margin-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, .1);
        text-align: center;
    }

    .footer-bottom p {
        font-size: 10.5px;
        letter-spacing: .02em;
    }
}

/* ==========================================================================
   Surveillance Page Styles
   ========================================================================== */
.surveillance-intro-grid {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.surveillance-intro-content {
    flex: 1;
}

.surveillance-intro-title {
    line-height: 1.2;
    color: #111827;
    margin-bottom: 20px;
}

.surveillance-intro-text {
    line-height: 1.7;
    color: #4b5563;
    margin: 0;
}

.surveillance-intro-image {
    flex: 1;
}

.surveillance-intro-image img,
.surveillance-intro-image video,
.surveillance-intro-video {
    width: 100%;
    height: 350px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
    display: block;
    object-fit: cover;
}

@media (max-width: 991px) {
    .surveillance-intro-grid {
        flex-direction: column;
        gap: 40px;
    }
}

/* ==========================================================================
   Surveillance Features Section (Enhanced Premium Design)
   ========================================================================== */
.surveillance-features-wrapper {
    background: linear-gradient(180deg, #f8fafc 0%, #f8f9ff 100%);
    width: 100%;
    position: relative;
}

.surveillance-features-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 40px auto;
}

.surveillance-features-badge {
    display: inline-block;
    padding: 6px 18px;
    background: rgba(0, 161, 202, 0.1);
    color: #00a1ca;
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: 30px;
    margin-bottom: 20px;
}

.surveillance-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.surveillance-feature-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 30px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.03);
    position: relative;
    overflow: hidden;
}

.surveillance-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #00a1ca 0%, #0284c7 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.surveillance-feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(0, 161, 202, 0.3);
    box-shadow: 0 22px 45px rgba(0, 161, 202, 0.12);
}

.surveillance-feature-card:hover::before {
    opacity: 1;
}

.surveillance-feature-icon-wrapper {
    width: 76px;
    height: 76px;
    background: linear-gradient(135deg, rgba(0, 161, 202, 0.12) 0%, rgba(15, 23, 42, 0.04) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 26px;
    color: #00a1ca;
    transition: all 0.3s ease;
}

.surveillance-feature-card:hover .surveillance-feature-icon-wrapper {
    background: #00a1ca;
    color: #ffffff;
    transform: scale(1.08) rotate(-3deg);
    box-shadow: 0 10px 25px rgba(0, 161, 202, 0.3);
}

.surveillance-feature-icon-wrapper svg {
    transition: all 0.3s ease;
}

.surveillance-feature-title {
    font-size: 20px;
    font-weight: 600;
    color: #0f172a;
    margin: 0 0 14px 0;
    line-height: 1.3;
}

.surveillance-feature-desc {
    font-family: "Poppins", sans-serif;
    font-size: 14.5px;
    line-height: 1.65;
    color: #64748b;
    margin: 0;
    padding: 0;
}

@media (max-width: 1024px) {
    .surveillance-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 35px;
    }
}

@media (max-width: 576px) {
    .surveillance-features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .surveillance-feature-card {
        padding: 32px 20px;
    }
}

/* ==========================================================================
   Surveillance Image Slider Section
   ========================================================================== */

.surveillance-slider-title {
    color: #0b1e38;
    text-align: center;
    margin: 0 0 50px 0;
}

.surveillance-slider-container {
    display: flex;
    align-items: center;
    gap: 20px;
    position: relative;
}

.surveillance-slider-arrow {
    background: transparent;
    border: none;
    outline: none;
    color: #0b1e38;
    cursor: pointer;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease, color 0.2s ease, opacity 0.2s ease;
    flex-shrink: 0;
}

.surveillance-slider-arrow:hover {
    color: #00a1ca;
    transform: scale(1.15);
}

.surveillance-slider-viewport {
    overflow: hidden;
    width: 100%;
    border-radius: 12px;
}

.surveillance-slider-track {
    display: flex;
    gap: 24px;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

.surveillance-slide-item {
    flex: 0 0 calc((100% - 24px) / 2);
    min-width: calc((100% - 24px) / 2);
    box-sizing: border-box;
}

.surveillance-slide-item img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
}

@media (max-width: 768px) {
    .surveillance-slider-title {
        margin-bottom: 30px;
    }

    .surveillance-slide-item {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .surveillance-slide-item img {
        height: 280px;
    }
}

@media (max-width: 576px) {
    .surveillance-slider-container {
        gap: 8px;
    }

    .surveillance-slider-arrow {
        padding: 4px;
    }

    .surveillance-slide-item img {
        height: 220px;
    }

    .footer-subscribe-box {
        flex-direction: column;
        width: 100%;
    }

    .footer-subscribe-box input,
    .footer-subscribe-box button {
        width: 100%;
        border-radius: 6px;
    }

    .footer-info-row {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }
}