/* =============================================
   FONT FACES
   ============================================= */
@font-face {
    font-family: 'Canela Text Trial Bold';
    font-style: normal;
    font-weight: normal;
    src: local('Canela Text Trial Bold'), url('../fonts/CanelaText-Bold-Trial.woff') format('woff');
}

@font-face {
    font-family: 'Canela Deck Trial Light';
    font-style: normal;
    font-weight: normal;
    src: local('Canela Deck Trial Light'), url('../fonts/CanelaDeck-Light-Trial.woff') format('woff');
}

@font-face {
    font-family: 'Canela Deck Trial Regular';
    font-style: normal;
    font-weight: normal;
    src: local('Canela Deck Trial Regular'), url('../fonts/CanelaDeck-Regular-Trial.woff') format('woff');
}

@font-face {
    font-family: 'Canela Deck Trial Medium';
    font-style: normal;
    font-weight: normal;
    src: local('Canela Deck Trial Medium'), url('../fonts/CanelaDeck-Medium-Trial.woff') format('woff');
}

@font-face {
    font-family: 'Canela Deck Trial Bold';
    font-style: normal;
    font-weight: normal;
    src: local('Canela Deck Trial Bold'), url('../fonts/CanelaDeck-Bold-Trial.woff') format('woff');
}

@font-face {
    font-family: 'Canela Deck Trial Black';
    font-style: normal;
    font-weight: normal;
    src: local('Canela Deck Trial Black'), url('../fonts/CanelaDeck-Black-Trial.woff') format('woff');
}

@font-face {
    font-family: 'GT Super Txt Trial Rg';
    font-style: normal;
    font-weight: normal;
    src: local('GT Super Txt Trial Rg'), url('../fonts/GT-Super-Text-Regular-Trial.woff') format('woff');
}

@font-face {
    font-family: 'GT Super Txt Trial Bk';
    font-style: normal;
    font-weight: normal;
    src: local('GT Super Txt Trial Bk'), url('../fonts/GT-Super-Text-Book-Trial.woff') format('woff');
}

@font-face {
    font-family: 'GT Super Txt Trial Md';
    font-style: normal;
    font-weight: normal;
    src: local('GT Super Txt Trial Md'), url('../fonts/GT-Super-Text-Medium-Trial.woff') format('woff');
}

@font-face {
    font-family: 'GT Super Txt Trial Bd';
    font-style: normal;
    font-weight: normal;
    src: local('GT Super Txt Trial Bd'), url('../fonts/GT-Super-Text-Bold-Trial.woff') format('woff');
}

@font-face {
    font-family: 'GT Super Txt Trial Bl';
    font-style: normal;
    font-weight: normal;
    src: local('GT Super Txt Trial Bl'), url('../fonts/GT-Super-Text-Black-Trial.woff') format('woff');
}

/* =============================================
   CSS VARIABLES
   ============================================= */
:root {
    --color-cyan: #00d2ff;
    --color-teal: #088293;
    --color-navy: #1D305F;
    --color-orange: #E65100;
    --color-white: #ffffff;
    --color-dark: #121212;
    --color-text-light: #e0e0e0;
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Urbanist', sans-serif;
    --font-mono: 'Sometype Mono', monospace;
    --font-custom-bold: 'Canela Text Trial Bold', serif;
}

/* =============================================
   RESET & BASE
   ============================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-dark);
    color: var(--color-white);
    overflow: hidden;
}

/* =============================================
   HORIZONTAL SCROLL LAYOUT
   ============================================= */
.scroll-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.horizontal-container {
    display: flex;
    height: 100vh;
    width: max-content;
    will-change: transform;
    transition: transform 0.1s ease-out;
}

.panel {
    width: 100vw;
    height: 100vh;
    flex-shrink: 0;
    position: relative;
    padding: 2rem 4rem;
}

/* =============================================
   NAVBAR
   ============================================= */
.navbar,
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1440px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    width: 197.86px;
    height: 49px;
    object-fit: contain;
}

.nav-links {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.nav-links a {
    color: var(--color-white);
    text-decoration: none;
    font-family: "Space Grotesk Variable", "Space Grotesk", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0px;
    padding: 10px 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.other-pages .nav-links a {
    color: #000000;
}

.nav-links a:hover {
    background-color: #088293;
    color: var(--color-white);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 100;
}

.hamburger span {
    width: 30px;
    height: 3px;
    background-color: var(--color-white);
    border-radius: 2px;
    transition: all 0.3s;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    padding: 0.75rem 1.5rem;
    border-radius: 30px;
    text-decoration: none;
    font-family: var(--font-mono);
    font-weight: 600;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0px;
    transition: all 0.3s;
    display: inline-block;
}

.btn-quote {
    background: linear-gradient(360deg, #088293 0%, #1D305F 100%);
    color: var(--color-white);
    border: none;
}

.btn-quote:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(8, 130, 147, 0.4);
}

.service-btn-group {
    display: flex;
    align-items: center;
    gap: 0;
}

.btn-service-text {
    border: 1px solid var(--color-cyan);
    border-radius: 30px;
    padding: 0.8rem 1.8rem;
    color: var(--color-white);
    display: inline-flex;
    align-items: center;
    backdrop-filter: blur(5px);
    transition: all 0.3s;
    background: transparent;
}

.btn-service-icon {
    background: transparent;
    border: 1px solid var(--color-cyan);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    backdrop-filter: blur(5px);
    transition: all 0.3s;
}

.service-btn-group:hover .btn-service-text,
.service-btn-group:hover .btn-service-icon {
    background: rgba(0, 210, 255, 0.2);
    border-color: var(--color-white);
}

.arrow-image {
    width: 24px;
    height: 24px;
    object-fit: contain;
    border-radius: 50%;
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero-panel {
    background-image: url('../images/banner.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
}

.hero-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 12rem;
    padding-bottom: 8rem;
    z-index: 1;
}

.hero-title {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 84px;
    line-height: 120%;
    letter-spacing: 0px;
    margin-bottom: 2rem;
}

.text-cyan {
    color: var(--color-cyan);
}

.text-teal {
    background: linear-gradient(360deg, #088293 0%, #1D305F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0px;
    margin-bottom: auto;
    margin-top: -1rem;
}

.image-indicator {
    width: 36px;
    height: 36px;
    object-fit: contain;
    border-width: 12px;
}

.hero-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 2rem;
}

.hero-description {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: 0px;
    color: var(--color-text-light);
    max-width: 600px;
}

/* =============================================
   ABOUT US SECTION
   ============================================= */
.about-panel {
    background-color: var(--color-white);
    color: #000000;
    display: flex;
    padding: 0;
}

.about-container {
    display: flex;
    gap: 4rem;
    align-items: center;
    width: 100%;
    height: 100%;
    padding: 0 0 0 12rem;
}

.about-content {
    flex: 1;
    max-width: 60%;
    padding: 40px 0px;
    padding-right: 20px;
    height: 90%;
    overflow-y: auto;
}

.about-subtitle {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0px;
    color: #888;
    text-transform: uppercase;
    display: block;
}

.about-title {
    font-family: var(--font-custom-bold);
    font-weight: 700;
    font-size: 48px;
    color: #000;
    margin-bottom: 2rem;
    line-height: 50px;
    letter-spacing: 0px;
}

.about-content p {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0px;
    color: #757575;
    margin-bottom: 1.5rem;
}

.about-content .about-intro {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: 0px;
    color: #000000;
}

.about-images {
    flex: 1;
    display: flex;
    height: 100vh;
    position: relative;
}

.about-image-wrapper {
    flex: 1;
    height: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: flex-end;
}

.about-image-wrapper img {
    width: 100%;
    height: 90%;
    object-fit: contain;
    object-position: right bottom;
}

/* =============================================
   TRUST / GLOBAL REACH SECTION
   ============================================= */
.trust-panel {
    background-color: #ffffff;
    padding: 0;
    overflow: hidden;
    /* background-image: radial-gradient(circle, #c8ccd4 1px, transparent 1px); */
    background-size: 22px 22px;
    width: auto;
}

.trust-container {
    display: flex;
    height: 100%;
    width: 100%;
}

/* --- Left Stats Column --- */
.trust-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    width: 26%;
    flex-shrink: 0;
    background-color: var(--color-teal);
    padding: 6rem 2.5rem;
    gap: 2rem;
}

.stat-card {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    padding: 1.5rem 1.5rem 1.5rem 1.5rem;
    background-color: var(--color-white);
    border-radius: 16px;
    gap: 0.75rem;
}

.stat-number {
    font-family: 'Canela Deck Trial Bold', serif;
    font-weight: 700;
    font-style: normal;
    font-size: 80px;
    line-height: 150%;
    letter-spacing: 0px;
    color: #111;
    margin-bottom: auto;
}

.stat-label {
    font-family: 'GT Super Txt Trial Md', serif;
    font-weight: 500;
    font-style: normal;
    font-size: 24px;
    line-height: 150%;
    letter-spacing: 0px;
    color: #000000;
}

/* --- Center Features Column --- */
.trust-center {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 3rem 4rem;
    background-color: transparent;
    background-image: url(../images/pattern-bg.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.trust-heading {
    text-align: center;
    margin-bottom: 2.5rem;
}

.trust-heading h2 {
    font-family: var(--font-custom-bold);
    font-weight: 700;
    font-style: normal;
    font-size: 48px;
    color: #000000;
    line-height: 120%;
    letter-spacing: 0px;
    text-align: center;
    margin-bottom: 0.5rem;
}

.trust-heading p {
    font-family: var(--font-body);
    font-weight: 500;
    font-style: normal;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: 0px;
    text-align: center;
    color: #000000;
    margin-top: 1.5rem;
}

.trust-features {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    border-radius: 20px;
    padding: 2.5rem 3rem;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.07);
    width: 100%;
    max-width: 94%;
    background: var(--grey-100, #F5F5F5);
    border: 4px solid #FFFFFF;
}

.feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1.5rem 1.5rem;
}

.feature-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.25rem;
    opacity: 1;
    padding: 1px;
}

.feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-item h4 {
    font-family: var(--font-body);
    font-weight: 700;
    font-style: normal;
    font-size: 28px;
    line-height: 150%;
    letter-spacing: 0px;
    color: #000;
    margin-bottom: 0.3rem;
}

.feature-item p {
    font-family: var(--font-body);
    font-weight: 600;
    font-style: normal;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0px;
    color: #757575;
}

/* --- Right Mission/Vision Column --- */
.trust-right {
    width: 900px;
    flex-shrink: 0;
    position: relative;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap: 0;
    align-items: flex-end;
    overflow: visible;
}

.mission-card {
    position: relative;
    z-index: 2;
    background-color: var(--color-navy);
    color: var(--color-white);
    padding: 8rem 4rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 100vh;
    border-radius: 0;
    width: 55%;
}

.vision-card {
    position: relative;
    z-index: 3;
    background-color: var(--color-teal);
    color: var(--color-white);
    padding: 8rem 3rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: start;
    min-height: 72%;
    border-radius: 40px 0px 0px 0px;
    margin-left: -40px;
    width: 50%;
}

.mission-card h3,
.vision-card h3 {
    font-family: var(--font-custom-bold);
    font-weight: 700;
    font-style: normal;
    font-size: 48px;
    line-height: 120%;
    letter-spacing: 0px;
    margin-bottom: 1.2rem;
}

.mission-card p,
.vision-card p {
    font-family: var(--font-body);
    font-weight: 500;
    font-style: normal;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: 0px;
    opacity: 0.9;
}

/* =============================================
   GLOBAL SUPPLY NETWORK SECTION
   ============================================= */
.network-panel {
    background-color: var(--color-white);
    padding: 0;
    overflow: hidden;
    width: 100vw;
    position: relative;
    flex-shrink: 0;
}

.network-container {
    display: flex;
    width: 100%;
    height: 100%;
}

/* --- Left Content --- */
.network-content {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 5rem 5rem 8rem;
    background-color: var(--color-white);
}

.network-title {
    font-family: var(--font-custom-bold);
    font-weight: 700;
    font-style: normal;
    font-size: 48px;
    line-height: 120%;
    letter-spacing: 0px;
    color: #000000;
    margin-bottom: 2.5rem;
}

.network-we {
    font-family: var(--font-body);
    font-weight: 600;
    font-style: normal;
    font-size: 24px;
    line-height: 110%;
    letter-spacing: 0px;
    color: #000000;
    margin-bottom: 2rem;
}

.cards-stack {
    position: relative;
    width: 100%;
    max-width: 400px;
    height: 400px;
    margin-left: 50px;
}

.network-card {
    background: #f7f8fa;
    border-radius: 20px;
    padding: 2.5rem;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
    border: 4px solid #fff;

    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transform: rotate(0deg) translateY(50px);
    transform-origin: center;
    transition: opacity 0.5s ease-out, transform 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    will-change: transform, opacity;
}

/* Active state triggered by JS */
.network-card.active {
    opacity: 1;
    /* transform is set by JS for random rotation */
}

/* Done state styling */
.network-upnext.done-text {
    background: none;
    -webkit-text-fill-color: #1D305F;
    color: #1D305F;
}

.network-card-title {
    font-family: var(--font-body);
    font-weight: 700;
    font-style: normal;
    font-size: 40px;
    line-height: 110%;
    letter-spacing: 0px;
    color: #000000;
}

.network-card-desc {
    font-family: var(--font-body);
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0px;
    color: #000000;
}

.network-upnext {
    font-family: 'GT Super Txt Trial Bl', serif;
    font-weight: 900;
    font-style: normal;
    font-size: 40px;
    line-height: 110%;
    letter-spacing: 0px;
    color: #1D305F;
    margin-top: auto;
}

/* --- Right Image --- */
.network-image {
    flex: 0 0 50%;
    overflow: hidden;
    position: relative;
}

.network-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* =============================================
   INDUSTRIES WE SUPPORT SECTION
   ============================================= */
.industries-panel {
    background-color: var(--color-teal);
    padding: 6rem 0 0 0;
    overflow: hidden;
    width: 100vw;
    flex-shrink: 0;
}

.industries-container {
    padding: 0 5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.industries-title {
    color: var(--color-white);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0px;
    margin-bottom: 3rem;
}

.industries-grid {
    display: flex;
    gap: 1.5rem;
    height: 100%;
    align-items: flex-start;
}

.industry-card {
    flex: 1;
    border-radius: 30px 30px 0 0;
    background-size: cover;
    background-position: center;
    position: relative;
    height: 85vh;
    /* Taller than screen so it bleeds off the bottom */
    overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.industry-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

/* Staggered Vertical Alignment */
.industry-card.card-1 {
    margin-top: 4rem;
}

.industry-card.card-2 {
    margin-top: 0rem;
}

.industry-card.card-3 {
    margin-top: 8rem;
}

.industry-card.card-4 {
    margin-top: 6rem;
}

.industry-card-overlay {
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.85) 25%, rgba(255, 255, 255, 0) 65%);
    width: 100%;
    height: 100%;
    padding: 5rem 1.5rem 2rem;
    display: flex;
    flex-direction: column;
}

.industry-label {
    display: block;
    color: var(--color-orange);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    opacity: 1;
    visibility: visible;
}

.industry-heading {
    color: #000000;
    font-family: 'GT Super Txt Trial Bd', serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 120%;
    letter-spacing: 0px;
}

/* =============================================
   QUOTE SECTION (Section 6)
   ============================================= */
.quote-panel {
    background-color: transparent;
    background-image: url(../images/content-bg.jpg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10rem;
    width: 100vw;
    flex-shrink: 0;
}

.quote-container {
    max-width: 1100px;
    text-align: center;
    margin: 0 auto;
}

.main-quote {
    font-family: 'Canela Deck Trial Medium', 'Canela Text Trial', serif;
    font-weight: 500;
    font-size: 52px;
    line-height: 100%;
    color: #000000;
    text-align: center;
    letter-spacing: 0px;
}

/* =============================================
   PROCUMEX ENGINE SECTION (Section 7)
   ============================================= */
.engine-panel {
    background-color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    flex-shrink: 0;
    padding: 2rem 0rem;
}

.engine-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.engine-title {
    font-family: var(--font-custom-bold);
    font-weight: 700;
    font-size: 48px;
    line-height: 100%;
    letter-spacing: 0px;
    margin-left: 34rem;
    color: #000000;
    margin-bottom: 2rem;
    align-self: flex-start;
}

.text-teal {
    background: linear-gradient(360deg, #088293 0%, #1D305F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.engine-timeline-wrapper {
    position: relative;
    width: 100%;
    padding: 1rem 6rem;
}

.engine-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    width: auto;
    height: 1px;
    background-color: #d1d5db;
    transform: translateY(-50%);
    z-index: 0;
    border: 1px solid;
    border-image-source: linear-gradient(270deg, rgba(8, 130, 147, 0) 0.66%, #1D305F 53.67%);
    border-image-slice: 1;
}

.engine-nodes {
    display: flex;
    gap: 2rem;
    align-items: center;
    width: max-content;
    z-index: 2;
    padding: 0 1rem;
    margin: 0 auto;
}

.engine-node {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 400px;
    flex-shrink: 0;
}

.node-number {
    order: 2;
    width: 69px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(180deg, #C2C4FB 0%, #EDCFC8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-custom-bold);
    font-size: 40px;
    font-weight: 700;
    line-height: 48px;
    letter-spacing: 0px;
    text-align: center;
    color: #000000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    z-index: 3;
    padding-bottom: 15px;
}

.node-card {
    position: relative;
    width: 100%;
    height: 230px;
    background: linear-gradient(66.6deg, rgba(255, 255, 255, 0) 80%, #088293 153.16%);
    border-radius: 16px;
    padding: 2rem 1.5rem;
    box-shadow: 0 10px 40px rgba(8, 130, 147, 0.08);
    border: 2px solid #EEEEEE;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}

.node-top .node-card {
    order: 1;
    bottom: -10px;
}

.node-top::after {
    content: '';
    order: 3;
    height: 230px;
    /* balances the card height */
    width: 1px;
}

.node-bottom .node-card {
    order: 3;
    top: -10px;
}

.node-bottom::before {
    content: '';
    order: 1;
    height: 230px;
    /* balances the card height */
    width: 1px;
}

.node-icon {
    width: 39px;
    height: 48px;
    object-fit: contain;
    opacity: 1;
    padding: 1px;
    margin-bottom: 10px;
}

.node-title {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 28px;
    color: #000000;
    margin-bottom: 10px;
    line-height: 100%;
    letter-spacing: 0px;
}

.node-desc {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 16px;
    color: #666666;
    line-height: 150%;
    letter-spacing: 0px;
}

/* =============================================
   CATALOG SECTION (Section 8)
   ============================================= */
.catalog-panel {
    background-color: var(--color-white);
    padding: 0;
    width: auto;
    display: flex;
    flex-direction: column;
    justify-content: stretch;
    background-color: #1D305F;
    padding-right: 4rem;
}

.catalog-container {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    height: 100vh;
    min-height: 600px;
    width: 100%;
    scrollbar-width: none;
    gap: 24px;
    /* Firefox */
}

.catalog-carousel {
    display: contents;
}

.catalog-container::-webkit-scrollbar {
    display: none;
    /* Chrome/Safari */
}

.catalog-title-card {
    flex: 0 0 900px;
    padding: 4rem 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #ffffff;
}

.arcoss-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 14px;
    font-family: var(--font-body);
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 2rem;
}

.arcoss-dot {
    width: 16px;
    height: 16px;
    background-color: #00ff00;
    border-radius: 50%;
    display: inline-block;
}

.catalog-heading {
    font-family: "Canela Text Trial", var(--font-custom-bold);
    font-size: 64px;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: 0px;
    margin-bottom: 2rem;
}

.catalog-heading .text-teal {
    background: linear-gradient(360deg, #07C1DB 0%, #3E72F2 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.catalog-desc {
    font-family: "Urbanist", var(--font-body);
    font-size: 20px;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0px;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.85);
}

.catalog-action {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.catalog-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    border: 1px solid var(--color-teal);
    border-radius: 30px;
    color: var(--color-teal);
    text-decoration: none;
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14px;
    width: max-content;
    transition: all 0.3s ease;
}

.catalog-btn:hover {
    background-color: var(--color-teal);
    color: #ffffff;
}

.catalog-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--color-teal);
    border-radius: 50%;
    color: var(--color-teal);
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.catalog-arrow:hover {
    background-color: var(--color-teal);
    color: #ffffff;
}

.catalog-item {
    flex: 0 0 380px;
    position: relative;
    background-size: cover;
    background-position: center;
    padding: 2.5rem 1.5rem;
    display: flex;
    flex-direction: column;
    height: 90%;
}

.catalog-item:nth-child(odd) {
    margin-top: 0;
    margin-bottom: auto;
    padding-top: 5rem;
}

.catalog-item:nth-child(even) {
    margin-top: auto;
    margin-bottom: 0;
}

.catalog-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 70%;
    background: linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 25%, rgba(255, 255, 255, 0.8) 45%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
}

.catalog-item-content {
    position: relative;
    z-index: 2;
}

.catalog-item-title {
    font-family: "Urbanist", var(--font-body);
    font-weight: 700;
    font-size: 32px;
    color: #000;
    margin-bottom: 0.8rem;
    line-height: 120%;
    letter-spacing: 0px;
}

.catalog-item-subtitle {
    font-family: "Urbanist", var(--font-body);
    font-weight: 400;
    font-size: 20px;
    color: #333;
}

/* =============================================
   CTA SECTION (Section 9)
   ============================================= */
.cta-panel {
    background-color: #ffffff;
    background-image: url('../images/pattern-bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 6rem 2rem;
    width: 100vw;
}

.cta-content {
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-logo {
    width: 355px;
    height: 208px;
    opacity: 1;
    object-fit: contain;
    margin-bottom: 2rem;
}

.cta-heading {
    font-family: "Canela Text Trial", var(--font-custom-bold);
    font-weight: 700;
    font-size: 48px;
    line-height: 120%;
    letter-spacing: 0px;
    text-align: center;
    color: #000;
    margin-bottom: 1.5rem;
}

.cta-desc {
    font-family: "Urbanist", var(--font-body);
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0px;
    text-align: center;
    color: #757575;
    margin-bottom: 3rem;
}

.cta-btn {
    background: linear-gradient(360deg, #088293 0%, #1D305F 100%);
    font-family: "Sometype Mono", monospace;
    font-weight: 600;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0px;
    text-align: center;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn:hover {
    opacity: 0.9;
    color: #ffffff;
    transform: translateY(-2px);
}

/* =============================================
   CONTACT SECTION (Section 10)
   ============================================= */
.contact-panel {
    display: flex;
    width: 100vw;
    height: 100vh;
    padding: 0;
    background-color: #088293;
}

.contact-left {
    flex: 0 0 65%;
    padding: 6rem 2rem 2rem 6rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-image: url('../images/pattern-bg.png');
    background-size: cover;
    background-position: center;
    color: #ffffff;
}

.contact-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}

.contact-heading {
    font-family: "Canela Text Trial", var(--font-custom-bold);
    font-weight: 700;
    font-size: 72px;
    line-height: 150%;
    letter-spacing: 0px;
    margin: 0;
}

.contact-logo {
    height: 48px;
    object-fit: contain;
}

.contact-subheading {
    font-family: "Urbanist", var(--font-body);
    font-weight: 500;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: 0px;
    margin-top: 1rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: auto;
    margin-bottom: auto;
}

.contact-col h4 {
    font-family: "Sometype Mono", monospace;
    font-weight: 500;
    font-size: 20px;
    line-height: 150%;
    letter-spacing: 0px;
    color: #BDBDBD;
    margin-bottom: 0.5rem;
}

.contact-col p {
    font-family: "Sometype Mono", monospace;
    font-weight: 500;
    font-size: 24px;
    line-height: 150%;
    letter-spacing: 0px;
    color: #ffffff;
    margin: 0;
}

.contact-phone {
    font-size: 24px;
    font-weight: 500;
}

.contact-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: "Sometype Mono", monospace;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: 0px;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 2rem;
}

.social-links {
    display: flex;
    gap: 1.5rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    color: #088293;
    border-radius: 50%;
    text-decoration: none;
    font-weight: bold;
    font-size: 12px;
}

.contact-right {
    flex: 0 0 35%;
    background-size: cover;
    background-position: center;
    height: 100vh;
}

/* =============================================
   BACK TO TOP BUTTON
   ============================================= */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background-color: var(--color-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top img {
    width: 20px;
    height: auto;
    transform: rotate(-180deg);
    /* Flips right arrow to point up */
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
    background-color: #06A1B7;
}

/* =============================================
   MOBILE OFF-CANVAS NAV
   ============================================= */
.mobile-nav-links {
    display: none;
}

/* =============================================
   RESPONSIVE — 1280px (Large tablet / small desktop)
   ============================================= */
@media (max-width: 1280px) {
    .about-container {
        padding: 0rem !important;
        gap: 2rem;
    }

    .network-content {
        padding: 2rem;
    }

    .industries-container {
        padding: 0 2rem;
    }

    .contact-left {
        padding: 4rem 2rem 2rem 2rem;
    }

    .cards-stack {
        margin-left: 0px;
    }

    .trust-stats {
        width: 650px;
    }

    .trust-right {
        width: 800px;
    }

    .trust-center {
        max-width: 1200px;
    }

}

@media (max-width: 1160px) {
    .nav-links {
        gap: 0px;
    }

    .nav-links a {
        padding: 10px;
    }

    .hero-panel {
        padding: 2rem;
    }

    .network-panel,
    .trust-panel,
    .engine-panel,
    .catalog-panel {
        padding-top: 0px !important;
        padding-bottom: 0px !important;
        padding-right: 0px !important;
        padding-left: 0px !important;
    }

    .industries-panel {
        width: auto;
    }

    .about-images {
        display: none;
    }

    .about-content {
        max-width: 100%;
        align-content: center;
    }

    .panel {
        padding: 2rem;
    }
}

/* =============================================
   RESPONSIVE — 1024px (Tablet landscape)
   ============================================= */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 4rem;
        line-height: 110%;
    }

    .trust-features {
        padding: 20px
    }

    .about-title {
        font-size: 36px;
    }

    .stat-number {
        font-size: 3.2rem;
    }

    .contact-right {
        display: none;
    }

    .contact-left {
        flex: 0 0 100%;
    }
}

/* =============================================
   RESPONSIVE — 991px (Mobile / tablet portrait)
   ============================================= */
@media (max-width: 991px) {
    .hero-content {
        padding-top: 5rem;
        padding-bottom: 5rem;
        gap: 20px;
    }

    .trust-features {
        grid-template-columns: 1fr 1fr;
    }

    /* --- Foundation Reset for Vertical Flow --- */
    body {
        overflow-y: auto;
        overflow-x: hidden;
    }

    .engine-nodes {
        position: relative;
    }

    .back-to-top img {
        transform: rotate(-90deg);
    }

    .engine-title {
        margin-left: 0rem;
    }

    .scroll-wrapper {
        position: relative;
        width: 100%;
        height: auto;
        overflow: visible;
    }

    .horizontal-container {
        display: flex;
        flex-direction: column;
        width: 100%;
        height: auto;
        transform: none !important;
    }

    .panel {
        width: 100%;
        height: auto;
        min-height: auto;
    }

    /* --- Hamburger Menu --- */
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
    }

    .nav-action {
        display: none;
    }

    .mobile-nav-links {
        display: flex;
        position: fixed;
        top: 0;
        right: -320px;
        width: 320px;
        max-width: 100%;
        height: 100dvh;
        background-color: #0f172a;
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
        padding: 2rem;
        transition: right 0.4s ease, box-shadow 0.4s ease;
        z-index: 9999;
    }

    .mobile-nav-links.active {
        right: 0;
        box-shadow: 0 0 0 10000px rgba(0, 0, 0, 0.6);
    }

    .mobile-nav-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        margin-bottom: 3rem;
        flex-shrink: 0;
    }

    .mobile-nav-header .logo img {
        width: 150px;
        height: auto;
        filter: brightness(0) invert(1);
    }

    .hamburger-close {
        display: flex;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
    }

    .hamburger-close span {
        width: 30px;
        height: 3px;
        background-color: var(--color-white);
        border-radius: 2px;
        transition: all 0.3s;
    }

    .hamburger-close span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger-close span:nth-child(2) {
        opacity: 0;
    }

    .hamburger-close span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    .mobile-nav-scroll-wrapper {
        flex: 1;
        overflow-y: auto;
        width: 100%;
        display: flex;
        flex-direction: column;
        min-height: 0;
    }

    .mobile-nav-links a {
        font-family: var(--font-heading);
        font-weight: 500;
        color: var(--color-white);
        text-decoration: none;
        font-size: 1.25rem;
        width: 100%;
        text-align: left;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        display: block;
    }

    .mobile-socials {
        display: flex;
        gap: 1.5rem;
        margin-top: auto;
        padding-top: 2rem;
        width: 100%;
        flex-shrink: 0;
    }

    .mobile-socials a {
        font-size: 1rem;
        width: auto;
        border-bottom: none;
        padding: 0;
        opacity: 0.7;
    }

    .mobile-socials a:hover {
        opacity: 1;
        color: var(--color-cyan);
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

    /* --- Panel base --- */
    .panel {
        padding: 1.5rem 2rem;
    }

    /* --- Hero --- */
    .hero-title {
        font-size: 3rem;
        line-height: 110%;
    }

    .hero-bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 1.5rem;
    }

    /* --- About --- */
    .about-panel {
        overflow-y: auto;
        height: auto;
    }

    .about-container {
        flex-direction: column;
        padding: 3rem 2rem;
        gap: 2rem;
        height: auto;
        align-items: flex-start;
    }

    .about-content {
        max-width: 100%;
    }

    .about-title {
        font-size: 32px;
    }

    .about-images {
        width: 100%;
        height: 50vh;
    }

    .about-image-wrapper img {
        object-position: center bottom;
    }

    /* --- Trust Section --- */
    .trust-container {
        flex-direction: column;
        overflow-y: auto;
        height: auto;
    }

    .trust-stats {
        width: 100%;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
    }

    .stat-card {
        padding: 1.5rem;
    }

    .trust-center {
        padding: 4rem 0px;
        align-items: center;
    }

    .trust-features {
        grid-template-columns: 1fr 1fr;
        max-width: 100%;
        padding: 1.5rem 1rem;
    }

    .feature-item {
        padding: 1rem;
    }

    .trust-right {
        width: 100%;
        flex-direction: row;
        padding: 0;
        overflow: hidden;
        height: auto;
    }

    .mission-card {
        flex: 1;
        min-height: unset;
        padding: 1.5rem;
        margin: 0;
    }

    .network-card-title {
        font-size: 28px;
    }

    .industry-heading {
        font-size: 25px;
    }

    .vision-card {
        flex: 1;
        min-height: unset;
        padding: 1.5rem;
        margin: 0;
        border-radius: 0px;
    }

    /* --- Network Section --- */
    .network-container {
        flex-direction: column;
        height: auto;
    }

    .network-content {
        flex: auto;
        padding: 4rem 2rem;
    }

    .network-image {
        flex: auto;
        height: 50vh;
    }

    /* --- Industries Section --- */
    .industries-container {
        padding: 3rem 0rem;
    }

    .industries-title {
        font-size: 32px;
    }

    .industries-grid {
        flex-wrap: wrap;
        height: auto;
    }

    .industry-card {
        flex: 1 1 45%;
        height: 50vh;
        border-radius: 20px;
        margin-top: 0 !important;
        margin-bottom: 1rem;
    }

    /* --- Quote Section --- */
    .quote-panel {
        padding: 5rem 4rem;
    }

    .main-quote {
        font-size: 40px;
    }

    .network-image {
        display: none;
    }

    .network-content {
        flex: 0 0 100%;
        justify-content: center;
        align-items: center;
        text-align: center;
    }

    .cards-stack {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        height: auto;
        position: relative;
        margin-left: 0;
        margin-top: 2rem;
        width: 100%;
        max-width: 100%;
    }

    .network-card {
        position: static;
        width: 100%;
        height: auto;
        opacity: 1 !important;
        transform: none !important;
        text-align: left;
    }

    .network-upnext {
        display: none;
    }

    /* --- Catalog Section --- */
    .catalog-container {
        display: block;
        height: auto;
        padding: 0;
        overflow: visible;
    }

    .catalog-title-card {
        width: 100%;
        padding: 4rem 0rem 2rem 0rem;
        box-sizing: border-box;
    }

    .catalog-carousel {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        gap: 1.5rem;
    }

    .catalog-carousel::-webkit-scrollbar {
        display: none;
    }

    .catalog-item {
        flex: 0 0 300px;
        height: 60vh;
        scroll-snap-align: center;
    }

    /* --- Engine Section --- */
    .engine-panel {
        padding: 2rem 0;
    }

    .engine-title {
        margin-left: 2rem;
        font-size: 42px;
    }

    .engine-timeline-wrapper {
        padding: 1rem 1.5rem;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
    }

    .engine-timeline-wrapper::-webkit-scrollbar {
        display: none;
    }

    .engine-node {
        scroll-snap-align: center;
        width: 300px;
    }


    .node-title {
        font-size: 20px;
    }

    .node-card {
        padding: 20px;
    }

    /* --- CTA Section --- */
    .cta-panel {
        height: auto;
        padding: 4rem 2rem;
    }

    .cta-heading {
        font-size: 36px;
    }

    /* --- Contact Section --- */
    .contact-panel {
        flex-direction: column;
        height: auto;
    }

    .contact-left {
        padding: 4rem 2rem;
    }

    .contact-heading {
        font-size: 48px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: 3rem;
        margin-bottom: 3rem;
    }

    .contact-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .network-card {
        padding: 20px;
    }

    .network-content {
        padding: 3rem 0px;
    }

    .about-container {
        padding: 0rem;
    }

    .about-content {
        height: auto;
    }

    .stat-label {
        font-size: 18px;
    }

    .trust-heading h2,
    .mission-card h3,
    .vision-card h3,
    .network-title,
    .engine-title,
    .catalog-heading {
        font-size: 38px;
    }

    .feature-item h4 {
        font-size: 20px;
    }

    .feature-icon {
        width: 38px;
        height: 38px;
    }

    .contact-left {
        padding: 4rem 0rem;
    }

    .cta-logo {
        width: 270px;
        height: auto;
    }
}

/* =============================================
   RESPONSIVE — 600px (Small phones)
   ============================================= */
@media (max-width: 767px) {
    .hero-title {
        font-size: 2.2rem;
    }

    .engine-title {
        margin-left: 1rem;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .btn-service-text {
        padding: 0.8rem 20px;
    }

    .quote-panel {
        padding: 5rem 2rem;
    }

    .feature-item {
        text-align: center;
        align-items: center;
    }

    .contact-header {
        display: block;
    }

    .about-title {
        font-size: 28px;
    }

    .trust-features {
        grid-template-columns: 1fr;
    }

    .trust-right {
        flex-direction: column;
        height: auto;
        margin-bottom: 3rem;
    }

    .mission-card,
    .vision-card {
        min-height: 100%;
        padding: 1.5rem;
        display: block;
        width: 100%;
    }

    .trust-stats {
        display: flex;
        flex-direction: column;
        padding: 30px;
        margin-top: 3rem;
    }

    .stat-card {
        padding: 1rem 1.2rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .network-title {
        font-size: 42px;
    }

    .network-content {
        padding: 3rem 0rem;
    }

    .network-image {
        height: 40vh;
    }

    .cards-stack {
        grid-template-columns: 1fr;
    }

    .industries-grid {
        display: block;
    }

    .contact-header {
        display: block;
    }

    .contact-left {
        padding: 4rem 0rem;
    }
}

/* =============================================
   AOS-LIKE SCROLL ANIMATIONS
   ============================================= */
[data-aos] {
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.16, 1, 0.3, 1), transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-down"] {
    transform: translateY(-30px);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="zoom-in"] {
    transform: scale(0.95);
}

/* Animate state */
[data-aos].aos-animate {
    opacity: 1;
    transform: translate(0, 0) scale(1);
}

/* Delays */
[data-aos-delay="100"] {
    transition-delay: 100ms;
}

[data-aos-delay="200"] {
    transition-delay: 200ms;
}

[data-aos-delay="300"] {
    transition-delay: 300ms;
}

[data-aos-delay="400"] {
    transition-delay: 400ms;
}

[data-aos-delay="500"] {
    transition-delay: 500ms;
}

[data-aos-delay="600"] {
    transition-delay: 600ms;
}

[data-aos-delay="700"] {
    transition-delay: 700ms;
}

[data-aos-delay="800"] {
    transition-delay: 800ms;
}

/* Product Service Page */
.product-service-main {
    margin: 0;
    font-family: "Space Grotesk Variable", "Space Grotesk", sans-serif;
}

.product-service-container {
    display: flex;
    flex-wrap: wrap;
    min-height: 100vh;
    max-width: 1440px;
    margin: auto;
}

.product-service-content {
    flex: 1;
    padding: 60px 40px 0px 10px;
    max-width: 70%;
}

.product-service-image-container {
    width: 40%;
    position: absolute;
    right: 0;
    /* Fallback */
}

.ps-image-wrapper {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /* Right center align */
    overflow: hidden;
}

.ps-image-wrapper img {
    width: 504px;
    height: auto;
    max-width: 100%;
    object-fit: cover;
    object-position: right center;
    transition: opacity 0.3s ease-in-out;
}

.ps-header {
    margin-bottom: 40px;
}

.ps-back-btn {
    display: inline-block;
    margin-bottom: 20px;
    color: #000000;
    text-decoration: none;
    font-family: "Sometype Mono", monospace;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.2;
    letter-spacing: 0px;
}

.ps-title {
    color: #0d4a70;
    margin-bottom: 15px;
    font-family: "Canela Text Trial", serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.2;
    letter-spacing: 0px;
    text-transform: uppercase;
}

.ps-description {
    color: #666;
    max-width: 800px;
    font-family: "Urbanist", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0px;
}

.ps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.ps-grid-item {
    padding: 30px;
    border-right: 1px dashed #d9d9d9;
    border-bottom: 1px dashed #d9d9d9;
    position: relative;
}

/* Align first column with title */
.ps-grid-item:nth-child(3n+1) {
    padding-left: 0;
}

/* Remove right border and padding on last column */
.ps-grid-item:nth-child(3n) {
    border-right: none;
    padding-right: 0;
}

/* Intersection circles */
.ps-grid-item::after {
    content: '';
    position: absolute;
    right: -5px;
    bottom: -5px;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    border: 1px solid #d9d9d9;
    background: #fff;
    z-index: 1;
}

/* Hide circles on right edge */
.ps-grid-item:nth-child(3n)::after {
    display: none;
}

/* Hide bottom borders on last row elements */
.ps-grid-item:nth-last-child(-n+3):nth-child(3n+1),
.ps-grid-item:nth-last-child(-n+3):nth-child(3n+1)~.ps-grid-item {
    border-bottom: none;
}

.ps-grid-item:nth-last-child(-n+3):nth-child(3n+1)::after,
.ps-grid-item:nth-last-child(-n+3):nth-child(3n+1)~.ps-grid-item::after {
    display: none;
}

.ps-clickable-li {
    cursor: pointer;
    transition: color 0.3s;
    font-family: "Urbanist", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0px;
}

.ps-clickable-li:hover,
.ps-clickable-li.active {
    color: #0d4a70;
    font-weight: 600;
}

.ps-item-title {
    color: #333;
    margin-bottom: 10px;
    display: flex;
    /* align-items: center; */
    gap: 10px;
    font-family: "Urbanist", sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1;
    letter-spacing: 0px;
}

.ps-icon img {
    width: 21px;
    height: 17.25px;
    object-fit: contain;
}

.ps-item-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ps-item-list li {
    position: relative;
    padding-left: 20px;
    color: #666;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.ps-item-list li::before {
    content: "➢";
    position: absolute;
    left: 0;
    color: #999;
    font-size: 0.9em;
}

@media (max-width: 1400px) {
    .product-service-content {
        max-width: 60%;
    }
}

@media (max-width: 1300px) {
    .product-service-content {
        max-width: 60%;
    }
}

@media (max-width: 1200px) {
    .product-service-content {
        max-width: 70%;
    }

    .product-service-image-container {
        width: 30%;
    }
}

.ps-lightbox-close {
    display: none;
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 40px;
    color: #fff;
    cursor: pointer;
    z-index: 10000;
}

.ps-lightbox-caption {
    display: none;
}

.ps-lightbox-nav {
    display: none;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: #fff;
    cursor: pointer;
    z-index: 10000;
    user-select: none;
    padding: 10px 15px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    transition: background 0.3s;
}

.ps-lightbox-nav:hover {
    background: rgba(0, 0, 0, 0.8);
}

.ps-lightbox-prev {
    left: 20px;
}

.ps-lightbox-next {
    right: 20px;
}

@media (max-width: 992px) {
    .product-service-container {
        flex-direction: column;
    }

    .product-service-content {
        padding: 10px;
    }

    .product-service-content {
        max-width: 100%;
        width: 100%;
    }

    .product-service-image-container {
        display: none;
        /* hidden by default on mobile */
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw !important;
        height: 100vh;
        background: rgba(0, 0, 0, 0.8);
        z-index: 9999;
        align-items: center;
        justify-content: center;
        padding: 20px;
        max-width: none !important;
    }

    .product-service-image-container.lightbox-active {
        display: flex !important;
    }

    .ps-lightbox-close,
    .ps-lightbox-nav {
        display: block;
    }

    .ps-image-wrapper {
        position: relative;
        height: auto;
        width: 100%;
        max-width: 504px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .ps-image-wrapper img {
        width: 100%;
        height: auto;
        max-height: 75vh;
        object-fit: contain;
    }

    .ps-lightbox-caption {
        display: block;
        margin-top: 20px;
        color: #fff;
        font-family: "Urbanist", sans-serif;
        font-weight: 500;
        font-size: 18px;
        text-align: center;
        transition: opacity 0.3s ease-in-out;
    }

    .ps-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ps-grid-item:nth-child(3n+1) {
        padding-left: 30px;
    }

    .ps-grid-item:nth-child(3n) {
        border-right: 1px dashed #d9d9d9;
        padding-right: 30px;
    }

    .ps-grid-item:nth-child(3n)::after {
        display: block;
    }

    .ps-grid-item:nth-child(2n+1) {
        padding-left: 0;
    }

    .ps-grid-item:nth-child(2n) {
        border-right: none;
        padding-right: 0;
    }

    .ps-grid-item:nth-child(2n)::after {
        display: none;
    }

    /* Reset bottom border logic for 2 cols */
    .ps-grid-item {
        border-bottom: 1px dashed #d9d9d9 !important;
    }

    .ps-grid-item::after {
        display: block;
    }

    .ps-grid-item:nth-child(2n)::after {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .ps-grid {
        grid-template-columns: 1fr;
    }

    .ps-grid-item {
        padding: 20px 0 !important;
        border-right: none !important;
    }

    .ps-grid-item::after {
        display: none !important;
    }
}

/* =========================================
   Career Page Styles
   ========================================= */

.career-main {
    background-color: #ffffff;
    height: auto;
    padding-bottom: 4rem;
}

.career-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.career-hero {
    text-align: center;
    margin-bottom: 80px;
}

.career-title {
    font-family: "Canela Text Trial", serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 120%;
    letter-spacing: 0px;
    text-align: center;
    text-transform: uppercase;
    color: #0d4a70;
    margin-bottom: 20px;
}

.career-subtitle {
    font-family: "Urbanist", sans-serif;
    font-size: 18px;
    color: #666;
    max-width: 800px;
    margin: 0 auto 50px auto;
    line-height: 1.6;
}

.career-subtitle p {
    margin-bottom: 0;
}

.career-images-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.career-image-box {
    flex: 1;
    max-width: 33%;
    height: 168px;
    border-radius: 16px;
    overflow: hidden;
    background-color: #f8f9fa;
    display: flex;
    justify-content: center;
    align-items: center;
}

.career-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.career-image-box.logo-box {
    background-color: #f8f9fa;
}

.career-image-box.logo-box img {
    max-width: 70%;
    height: auto;
    object-fit: contain;
}

/* Openings Section */
.career-openings-section {
    padding-top: 40px;
}

.career-section-title {
    font-family: "Canela Text Trial", serif;
    font-weight: 700;
    font-size: 40px;
    line-height: 120%;
    letter-spacing: 0px;
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 50px;
    color: #000;
}

/* Job Grid */
.job-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.job-card {
    background-color: #f4f4f4;
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.job-title {
    font-family: "Urbanist", sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 120%;
    letter-spacing: 0px;
    color: #000;
    margin: 0;
}

.job-location {
    font-family: "Urbanist", sans-serif;
    font-weight: 400;
    font-size: 24px;
    line-height: 120%;
    letter-spacing: 0px;
    color: #333;
}

.job-department {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-family: "Urbanist", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 120%;
    letter-spacing: 0px;
    color: #666;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.job-dept-icon {
    margin-right: 8px;
    font-size: 16px;
}

.job-type {
    margin-bottom: 25px;
}

.badge-fulltime {
    display: inline-block;
    background: #FAFAFA;
    border: 1px solid #E0E0E0;
    padding: 6px 20px;
    border-radius: 20px;
    font-family: "Urbanist", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0px;
    color: #333;
}

.job-description {
    font-family: "Urbanist", sans-serif;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 30px;
    flex-grow: 1;
}

.job-action {
    margin-top: auto;
}

.btn-apply-group {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    gap: 0px;
}

.btn-apply-text {
    font-family: "Sometype Mono", monospace;
    font-weight: 600;
    font-size: 16px;
    line-height: 120%;
    letter-spacing: 0px;
    color: #088293;
    border: 1px solid #088293;
    padding: 10px 25px;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.other-pages .hamburger span {
    background-color: #000000;
}

.other-pages .hamburger:hover span {
    background-color: #088293;
}

.btn-apply-icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid #088293;
    border-radius: 50%;
    color: #088293;
    font-size: 20px;
    transition: all 0.3s ease;
}

.btn-apply-group:hover .btn-apply-text,
.btn-apply-group:hover .btn-apply-icon {
    background-color: #ffffff;
    color: #088293 !important;
}

/* Responsive */
@media (max-width: 992px) {
    .career-images-wrapper {
        flex-direction: column;
    }

    .career-image-box {
        max-width: 100%;
        height: 200px;
    }

    .job-grid {
        grid-template-columns: 1fr;
    }

    .career-section-title {
        font-size: 30px;
    }

    .job-title {
        font-size: 25px;
    }
}

@media (max-width: 768px) {
    .career-title {
        font-size: 35px;
    }

    .career-container {
        padding: 0 0px;
    }

    .job-header {
        flex-direction: column;
        gap: 15px;
    }
}

/* =========================================
   Products & Services Listing Page Styles
   ========================================= */

.ps-listing-main {
    background-color: #ffffff;
    height: auto;
    padding-bottom: 4rem;
}

.ps-listing-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 10px;
    padding-top: 0px;
}

.ps-listing-grid {
    margin-top: 3rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.ps-listing-card {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 163px;
    border-radius: 16px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-color: #333;
    text-decoration: none;
    color: #fff;
    transition: transform 0.3s ease;
}

.ps-listing-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.1) 100%);
    z-index: 1;
    transition: opacity 0.3s ease;
}

.ps-listing-card-hover-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(360deg, #088293 0%, #1D305F 100%);
    opacity: 0;
    z-index: 2;
    transition: opacity 0.3s ease;
}

.ps-listing-card:hover .ps-listing-card-overlay {
    opacity: 0;
}

.ps-listing-card:hover .ps-listing-card-hover-bg {
    opacity: 1;
}

.ps-listing-card-content {
    position: relative;
    z-index: 3;
    padding: 25px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.ps-listing-card-title {
    font-family: "Urbanist", sans-serif;
    font-weight: 500;
    font-size: 20px;
    color: #fff;
    margin: 0 0 10px 0;
    line-height: 130%;
    letter-spacing: 0px;
}

.ps-listing-card-hover-content {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.ps-listing-card:hover .ps-listing-card-hover-content {
    opacity: 1;
    transform: translateY(0);
}

.ps-listing-card-excerpt {
    font-family: "Urbanist", sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: #FFFFFFB2;
    line-height: 130%;
    letter-spacing: 0px;
    margin-bottom: auto;
}

.ps-listing-card-view-wrapper {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.ps-listing-card-view-wrapper img {
    width: 20px;
    height: 14px;
    object-fit: contain;
}

.ps-listing-card-view-btn {
    font-family: "Sometype Mono", monospace;
    font-weight: 500;
    font-size: 16px;
    color: #fff;
    text-decoration: underline;
    line-height: 120%;
    letter-spacing: 0px;
}

/* Responsive */
@media (max-width: 1200px) {
    .ps-listing-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* =========================================
   Industries Page Styles
   ========================================= */

body.page-template-page-industries {
    overflow: hidden !important;
}

.industries-main {
    height: 100vh;
    width: 100vw;
    padding-top: 0 !important;
    background-color: #ffffff;
    position: relative;
}

.industries-scroll-container {
    height: 100vh;
    width: 100%;
    overflow-y: scroll;
    scroll-snap-type: y mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    position: relative;
    z-index: 2;
}

.industries-scroll-container::-webkit-scrollbar {
    display: none;
}

.industry-section {
    height: 100vh;
    max-width: 1440px;
    margin: auto;
    width: 100%;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    display: flex;
    background-color: transparent;
}

.industry-content-wrap {
    width: 60%;
    height: 100%;
    padding: 30px 5% 0px 10px;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
    position: relative;
    z-index: 2;
}

.industry-back-link {
    font-family: "Urbanist", sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    margin-bottom: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid #333;
    width: max-content;
    padding-bottom: 2px;
}

.industry-title {
    font-family: "Canela Text Trial", serif;
    font-weight: 700;
    font-size: 32px;
    margin-bottom: 10px;
    text-transform: uppercase;
    line-height: 120%;
    letter-spacing: 0px;
    background: linear-gradient(360deg, #088293 0%, #1D305F 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.industry-subtitle {
    font-family: "Urbanist", sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #757575;
    margin-bottom: 30px;
    line-height: 150%;
    letter-spacing: 0px;
}

.industry-description {
    font-family: "Urbanist", sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: #000;
    line-height: 150%;
    letter-spacing: 0px;
    margin-bottom: 50px;
    max-width: 90%;
}

.industry-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    max-width: 95%;
}

.industry-feature-card {
    background-color: #f7f7f7;
    padding: 25px;
    border-radius: 16px;
}

.feature-title {
    font-family: "Urbanist", sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #000;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 100%;
    letter-spacing: 0px;
}

.feature-icons img {
    width: 21px;
    height: 17.25px;
    object-fit: contain;
    margin-top: 2px;
}

.feature-text {
    font-family: "Urbanist", sans-serif;
    font-weight: 500;
    font-size: 16px;
    color: #757575;
    line-height: 150%;
    letter-spacing: 0px;
    margin: 0;
}

/* Fixed Sticky Backgrounds */
.industry-fixed-bgs {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    z-index: 1;
    pointer-events: none;
}

.industry-bg-item {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 45%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    clip-path: polygon(25% 0, 100% 0, 100% 100%, 0% 100%);
}

.industry-bg-item.active {
    opacity: 1;
}

/* Responsive */
@media (max-width: 1440px) {
    .about-container {
        padding: 0 0 0 7rem;
    }

    .industry-bg-item {
        width: 40%;
        clip-path: polygon(45% 0, 100% 0, 100% 100%, 0% 100%);
    }

    .industry-content-wrap {
        width: 70%;
    }
}

@media (max-width: 1300px) {
    .industry-description {
        font-size: 18px;
        line-height: 24px;
    }
}

@media (max-width: 1200px) {
    .industry-content-wrap {
        width: 75%;
        padding-right: 10px;
    }

    .industry-image-wrap {
        width: 50%;
        clip-path: polygon(15% 0, 100% 0, 100% 100%, 0% 100%);
    }
}

@media (max-width: 992px) {
    .industry-section {
        flex-direction: column;
        height: auto;
        min-height: 100vh;
        scroll-snap-align: start;
    }

    .industry-content-wrap {
        width: 100%;
        padding: 100px 5% 50px 5%;
    }

    .industry-image-wrap {
        position: relative;
        width: 100%;
        height: 400px;
        clip-path: polygon(0 10%, 100% 0, 100% 100%, 0 100%);
    }

    .industry-features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .ps-listing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 993px) {
    .ps-lightbox-nav {
        display: none !important;
    }
}

@media (max-width: 576px) {
    .ps-listing-grid {
        grid-template-columns: 1fr;
    }

    .ps-listing-main-title {
        font-size: 30px;
    }
}

/* =========================================
   About Us Page Styles
   ========================================= */


.about-page-wrapper {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 60px 20px;
    min-height: 100vh;
}

.about-page-containers {
    max-width: 1440px;
    margin: 0 auto;
}

.about-page-header {
    text-align: center;
    margin-bottom: 60px;
    color: #ffffff;
}

.about-page-title {
    font-family: "Canela Text Trial", serif;
    font-weight: 700;
    font-size: 48px;
    line-height: 1.2;
    letter-spacing: 0px;
    margin-bottom: 15px;
    text-transform: uppercase;
    text-align: center;
    color: #ffffff;
}

.about-page-subtitle {
    font-family: "Urbanist", sans-serif;
    font-weight: 600;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.about-page-card-wrapper {
    display: flex;
    border-radius: 24px 24px 0 0;
    overflow: hidden;
    background-color: #ffffff00;
    gap: 3px;
}

.about-page-features-col {
    width: 35%;
    background-color: #F5F5F5;
    padding: 50px 40px;
}

.about-page-content-col {
    width: 65%;
    background-color: #F5F5F5;
    padding: 50px 60px;
}

.about-page-feature {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 35px;
}

.about-page-feature:last-child {
    margin-bottom: 0;
}

.about-page-feature-icon {
    flex-shrink: 0;
    width: 26px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 3px;
}

.about-page-feature-icon img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.about-page-feature-text h4 {
    font-family: "Urbanist", sans-serif;
    font-weight: 700;
    font-size: 24px;
    line-height: 1.5;
    letter-spacing: 0px;
    color: #000000;
    margin-bottom: 5px;
}

.about-page-feature-text p {
    font-family: "Urbanist", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0px;
    color: #757575;
    margin: 0;
}

.about-page-content-col p {
    font-family: "Urbanist", sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: #757575;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-page-content-col p:last-child {
    margin-bottom: 0;
}

.about-page-content-col strong {
    font-weight: 700;
}

.about-page-mission-vision-wrapper {
    display: flex;
    border-radius: 0 0 24px 24px;
    overflow: hidden;
}

.about-page-mission-col {
    width: 50%;
    background-color: #1D305F;
    padding: 50px 60px;
    color: #ffffff;
}

.about-page-vision-col {
    width: 50%;
    background-color: #088293;
    padding: 50px 60px;
    color: #ffffff;
}

.about-page-mission-vision-wrapper h2 {
    font-family: "Canela Text Trial", serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 1.2;
    letter-spacing: 0px;
    color: #ffffff;
    margin-bottom: 20px;
}

.about-page-mission-vision-wrapper p {
    font-family: "Urbanist", sans-serif;
    font-weight: 500;
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0px;
    margin: 0;
    color: #ffffff;
}

/* Responsive */
@media (max-width: 992px) {
    .about-page-card-wrapper {
        flex-direction: column;
        border-radius: 24px;
        margin-bottom: 20px;
    }

    .about-page-features-col,
    .about-page-content-col {
        width: 100%;
        padding: 40px;
    }

    .about-page-mission-vision-wrapper {
        flex-direction: column;
        border-radius: 24px;
    }

    .about-page-mission-col,
    .about-page-vision-col {
        width: 100%;
        padding: 40px;
    }
}

@media (max-width: 576px) {
    .about-page-title {
        font-size: 36px;
    }

    .about-page-features-col,
    .about-page-content-col,
    .about-page-mission-col,
    .about-page-vision-col {
        padding: 30px 20px;
    }
}