/* ===== GLOBAL & RESET STYLES ===== */
body {
    font-family: 'Inter', sans-serif !important;
}

html {
    scroll-behavior: smooth
}

:root {
    --inter: 'Inter', sans-serif;
    --black: #000000;
    --white: #FFFFFF;
    --primary-color: #007DC6;
    --dark-color: #111111;
    --dark-navy: #05070A;
    --charcoal-dark: #17181C;
    --light-gray: #B0B1B1;
    --gunmetal: #525457;
}

.entry-content p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 24px;
}

.bg-midnight-blue {
    background: radial-gradient(50% 50% at 65% 50%, #001D2E 0%, #0D1019 100%);
}

section {
    padding: 100px 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

button:focus {
    box-shadow: none;
    outline: 0;
}

p {
    font-size: 14px;
    line-height: 22px;
    font-weight: 400;
    margin: 0;
}

/* ===== HERO SECTION ===== */
.hero-area {
    background: radial-gradient(50% 50% at 65% 50%, rgb(0, 29, 46) 0%, rgb(0, 0, 0) 100%);
}

.hero-subtitle {
    position: relative;
    -webkit-text-fill-color: transparent;
    padding-left: 70px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: linear-gradient(90deg, rgb(0, 125, 198) 0%, rgb(0, 168, 89) 100%) text;
}

.hero-subtitle::before {
    content: "";
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 1px;
    background-color: var(--primary-color);
}

.hero-title {
    font-size: 88px;
    font-weight: 700;
    color: var(--white);
    line-height: 100px;
}

.hero-title span {
    background: linear-gradient(90deg, #007DC6 0%, #00A859 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 20px;
    line-height: 28px;
    margin: 10px 0px 40px;
}

.hero-cta-group {
    display: inline-flex;
    gap: 10px;
}

.hero-cta-group a {
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 12px;
    display: inline-block;
    padding: 18px 30px 17px;
    border-radius: 100px;
    text-decoration: none;
    transition: all 0.35s ease;
}

.btn-hero-primary {
    color: var(--white);
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-hero-outline {
    color: var(--white);
    background: linear-gradient(rgb(0, 0, 0), rgb(0, 0, 0)) padding-box padding-box, linear-gradient(90deg, rgb(0, 125, 198) 0%, rgb(0, 168, 89) 100%) border-box border-box;
    border-width: 1px;
    border-style: solid;
    border-color: transparent;
    border-image: initial;
    transition: all 0.35s ease;
}

.hero-cta-group .btn-hero-outline:hover {
    background: linear-gradient(90deg, rgb(0, 125, 198) 0%, rgb(0, 168, 89) 100%) border-box border-box;
    transition: all 0.35s ease;
}



/* ===== CERTIFICATION BAR SECTION ===== */
.cert-bar {
    background: var(--black);
    border-top: 1px solid rgb(33, 33, 35);
    padding: 46px 0px;
    border-bottom: 1px solid rgb(33, 33, 35);
}

.cert-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.cert-item img {
    height: 22px;
    width: auto;
}

.cert-item span {
    color: var(--white);
    font-size: 14px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    white-space: nowrap;
}

/* ===== PRODUCTS SECTION ===== */

.products-section {
    background: var(--dark-navy);
}

.section-subtitle {
    -webkit-text-fill-color: transparent;
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 10px;
    display: inline-block;
    background: linear-gradient(90deg, rgb(0, 125, 198) 0%, rgb(0, 168, 89) 50%) text;
}

.section-title {
    font-size: 48px;
    font-weight: 600;
    color: var(--white);
    line-height: 56px;
}


.products-section .swiper-wrapper {
    margin-bottom: 70px;
}

.products-tabs {
    flex-wrap: wrap;
    gap: 5px;
}

.products-tabs .nav-link {
    color: var(--white);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: var(--charcoal-dark);
    padding: 10px 20px;
    border-radius: 6px;
    border-width: initial;
    border-style: none;
    border-color: initial;
    border-image: initial;
    transition: 0.3s;
}

.products-tabs .nav-link:hover {
    color: var(--white);
    background: rgb(42, 44, 49);
}

.productsSwiper .swiper-slide {
    height: auto;
    display: flex;
}

.productsSwiper .swiper-scrollbar {
    bottom: 0px !important;
    left: 0px !important;
    width: 100% !important;
    height: 12px !important;
    background: var(--white);
    border-radius: 100px;
}

.productsSwiper .swiper-scrollbar-drag {
    background: linear-gradient(90deg, rgb(0, 125, 198) 0%, rgb(0, 168, 89) 100%);
    border-radius: 100px;
}

.product-card {
    border-width: 1px;
    border-style: solid;
    border-color: rgb(35, 37, 40);
    border-image: initial;
    border-radius: 16px;
    padding: 24px;
    transition: border-color 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
    position: relative;
}



.product-card-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 15px;
    line-height: 32px;
}

.product-card-desc {
    color: var(--white);
    margin-bottom: 30px;
    flex-shrink: 0;
}

.product-card-img {
    margin-bottom: 30px;
    display: flex;
    align-items: flex-end;
    min-height: 0px;
    border-radius: 12px;
    overflow: hidden;
    flex: 1 1 auto;
}

.product-card-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    border-radius: 12px;
}

.product-card-link {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    flex-shrink: 0;
    margin-top: auto;
    background: linear-gradient(90deg, rgb(0, 125, 198) 0%, rgb(0, 168, 89) 40%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none !important;
    transition: opacity 0.3s;
}

.product-card-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.product-card-link span {
    display: inline-block;
    margin-left: 10px;
    transition: transform 0.3s;
}

.product-card-link span img {
    height: 12px;
    width: auto;
    object-fit: contain;
}

/* ===== WHY US SECTION ===== */

.why-us-section {
    background: radial-gradient(50% 50% at 65% 50%, rgb(0, 29, 46) 0%, rgb(13, 16, 25) 100%);
}

.why-desc-col {
    padding-left: 40px;
}

.why-subtitle-desc {
    font-size: 20px;
    line-height: 28px;
    color: var(--white);
}

.why-divider {
    opacity: 1;
    border-top: 1px solid var(--white);
    margin: 70px 0px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    border-radius: 14px;
}

.feature-icon i {
    font-size: 24px;
    color: #ffffff;
}

.feature-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    margin-left: 20px;
}

.feature-desc {
    font-size: 14px;
    line-height: 24px;
    color: var(--light-gray);
}

/* ===== FACILITY / CUSTOM SECTION ===== */


.facility-custom-section {
    background: var(--dark-navy);
    padding: 100px 0px;
}

@media (min-width: 992px) {
    .facility-left-panel {
        margin-bottom: 0px;
    }
}

/* .facility-left-panel {
display: flex;
flex-direction: column;
justify-content: center;
margin-bottom: 48px;
} */

.facility-top-desc {
    margin: 20px 0px 40px;
}

.facility-stats-layout {
    margin-bottom: 50px;
    gap: 70px;
}

.stat-block-1 h3,
.stat-block-2 h3 {
    font-size: 32px;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-block-1 span,
.stat-block-2 span {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    background: linear-gradient(90deg, #007DC6 0%, #00A859 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
}

.facility-features-list {
    margin-bottom: 0px;
}

.facility-features-list li {
    font-size: 15px;
    font-weight: 500;
    color: var(--white);
    margin-bottom: 16px;
    display: flex;
    align-items: flex-start;
}

.facility-check-icon {
    width: 20px;
    height: 20px;
    margin-right: 15px;
    margin-top: 0px;
    object-fit: contain;
}

.facility-inner-left,
.facility-inner-right {
    display: flex;
    flex-direction: column;
}

.card-smt {
    margin-bottom: 24px;
    background: var(--white);
}

.f-card {
    width: 100%;
    border-radius: 16px;
    padding: 24px;
}

.card-icon-blue {
    background: var(--primary-color);
}

.f-card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border-radius: 14px;
}

.card-icon-blue img {
    filter: brightness(0) invert(1);
}

.f-card-icon img {
    height: 30px;
    width: 30px;
    object-fit: contain;
}


.card-img-only {
    flex-grow: 1;
    min-height: 200px;
    padding: 0px;
    overflow: hidden;
}

.f-card {
    width: 100%;
    border-radius: 16px;
    padding: 24px;
}

.card-img-only img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
    display: block;
    border-radius: 14px;
}

.facility-inner-left,
.facility-inner-right {
    display: flex;
    flex-direction: column;
}

.card-qa {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
    background: linear-gradient(40deg, #007DC6 0%, #00A859 100%);
}

.qa-full-img {
    width: 100%;
    margin-bottom: 24px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    min-height: 150px;
    border-radius: 12px;
}

.f-card-title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
}

.card-qa .f-card-desc {
    opacity: 0.75;
}



.card-sheet-metal {
    background: var(--primary-color);
}

.f-card {
    width: 100%;
    border-radius: 16px;
    padding: 30px 30px 38px 30px;
}

.card-icon-white {
    background: var(--white);
}


.f-card-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    border-radius: 15px;
}

.card-icon-white img {
    filter: invert(41%) sepia(85%) saturate(3015%) hue-rotate(185deg) brightness(87%) contrast(97%);
}

.f-card-icon img {
    height: 30px;
    width: 30px;
    object-fit: contain;
}



.card-sheet-metal .f-card-desc {
    opacity: 0.75;
}

/* ===== INDUSTRIES WE SERVE SECTION ===== */

.industries-section {
    background: radial-gradient(50% 50% at 65% 50%, #001D2E 0%, #0D1019 100%);
}

.industries-section .swiper-wrapper {
    margin-bottom: 70px;
}

.industry-card {
    position: relative;
    height: 300px;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    /* align-items: center; */
    justify-content: flex-end;
    padding: 0px 30px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.industry-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.industry-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, #000000 100%);
    z-index: 1;
}

.industry-icon-container {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    border: 1px solid var(--white);
    z-index: 2;
    transition: all 0.3s ease;
    font-size: 24px;
    color: var(--white);
    background: #0000004D;
}

.industry-card-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.industry-card-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--white);
    line-height: 26px;
    margin: 0;
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.industry-card:hover {
    transform: translateY(-5px);
}

.industry-card:hover .industry-icon-container {
    background: rgba(0, 125, 198, 0.3);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.industry-card:hover .industry-card-title {
    color: var(--primary-color);
}

/* ===== INDUSTRIES SWIPER NAVIGATION ===== */

.industries-nav-prev,
.industries-nav-next {
    color: var(--white);
    background: radial-gradient(rgba(0, 29, 46, 1), rgba(13, 16, 25, 1)) padding-box padding-box, linear-gradient(90deg, rgb(0, 125, 198) 0%, rgb(0, 168, 89) 100%) border-box border-box;
    border-width: 1px;
    border-style: solid;
    border-color: transparent;
    border-image: initial;
    width: 70px;
    height: 40px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.industries-nav-prev img,
.industries-nav-next img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* .industries-nav-prev:hover,
.industries-nav-next:hover {
background: var(--primary-color);
color: var(--white);
} */

.industriesSwiper .swiper-scrollbar {
    bottom: 0px !important;
    left: 0px !important;
    width: 100% !important;
    height: 12px !important;
    background: var(--white);
    border-radius: 100px;
}

.industriesSwiper .swiper-scrollbar-drag {
    background: linear-gradient(90deg, rgb(0, 125, 198) 0%, rgb(0, 168, 89) 100%);
    border-radius: 100px;
}

/* ===== LANDMARK DEPLOYMENTS SECTION ===== */

.landmark-section {
    background: var(--dark-navy);
}

.section-desc {
    color: var(--white);
    margin-top: 20px;
}

.landmark-card {
    position: relative;
    height: 370px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.landmark-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.landmark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 2;
}

.landmark-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 20px;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.landmark-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--white);
    margin: 0;
    flex: 1;
}

.landmark-arrow {
    margin-left: 10px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.landmark-arrow-img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

/* .landmark-card:hover {
transform: translateY(-5px);
} */

.landmark-card:hover .landmark-img {
    transform: scale(1.05);
}



.landmark-card:hover .landmark-arrow {
    transform: translateX(5px);
}

.landmark-card:hover .landmark-arrow-img {
    filter: brightness(0) invert(1) hue-rotate(185deg) saturate(1.2);
}

.project-cta {
    font-weight: 500;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 14px;
    display: inline-block;
    padding: 18px 30px 17px;
    border-radius: 100px;
    text-decoration: none;

    color: var(--white);
    background: linear-gradient(rgb(0, 0, 0), rgb(0, 0, 0)) padding-box padding-box, linear-gradient(90deg, rgb(0, 125, 198) 0%, rgb(0, 168, 89) 100%) border-box border-box;
    border-width: 1px;
    border-style: solid;
    border-color: transparent;
    border-image: initial;
    transition: all 0.5s ease;
}

.project-cta:hover {
    background: linear-gradient(90deg, rgb(0, 125, 198) 0%, rgb(0, 168, 89) 100%);
}

/* ===== TRUSTED BY INDUSTRY TITANS SECTION ===== */

.trusted-section {
    background: radial-gradient(50% 50% at 65% 50%, #001D2E 0%, #0D1019 100%);
}


.trusted-desc {
    font-size: 18px;
    line-height: 26px;
    color: var(--white);
    margin: 20px 0 40px;
}

.trusted-cta {
    font-weight: 500;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    line-height: 12px;
    display: inline-block;
    padding: 16px 28px;
    border-radius: 100px;
    text-decoration: none;
    color: var(--white);
    background: linear-gradient(rgb(0, 0, 0), rgb(0, 0, 0)) padding-box padding-box, linear-gradient(90deg, rgb(0, 125, 198) 0%, rgb(0, 168, 89) 100%) border-box border-box;
    border-width: 1px;
    border-style: solid;
    border-color: transparent;
    border-image: initial;
    transition: all 0.35s ease;
}

.trusted-cta:hover {
    background: linear-gradient(90deg, rgb(0, 125, 198) 0%, rgb(0, 168, 89) 100%);
    color: var(--white);
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: center;
}

.client-logo-item {
    background: var(--white);
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 150px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.client-logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 125, 198, 0.2);
}

.client-logo-item img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
}

@media (max-width: 991px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .trusted-title {
        font-size: 42px;
        line-height: 50px;
    }
}

@media (max-width: 576px) {

    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .client-logo-item {
        min-height: 100px;
        padding: 15px;
    }

    .trusted-title {
        font-size: 32px;
        line-height: 40px;
    }

    .trusted-desc {
        font-size: 14px;
        line-height: 22px;
    }
}

/* ===== CTA PARTNER SECTION ===== */

.cta-partner-section {
    background: var(--dark-navy);
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    min-height: 400px;
    display: flex;
    align-items: center;
}



.cta-partner-section .container {
    position: relative;
    z-index: 1;
}

.cta-partner-desc {
    font-size: 18px;
    line-height: 26px;
    color: var(--white);
    margin: 20px 0 50px;
    text-align: center;
}


.cta-partner-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cta-watermark-text {
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 90px;
    font-weight: 900;
    color: rgba(255, 255, 255, 0.03);
    white-space: nowrap;
    pointer-events: none;
    z-index: 0;
    letter-spacing: 2px;
}

@media (max-width: 991px) {
    .cta-watermark-text {
        font-size: 60px;
        top: 50px;
    }
}

@media (max-width: 767px) {
    .cta-watermark-text {
        font-size: 40px;
        top: 40px;
    }
}


.cta-partner-btn {
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 12px;
    display: inline-block;
    padding: 23px 45px 22px;
    border-radius: 100px;
    text-decoration: none;
    color: var(--white);
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
    transition: all 0.35s ease;
}

.cta-partner-btn:hover {
    background: transparent;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 125, 198, 0.3);
}

.cta-partner-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}

.contact-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    background: linear-gradient(90deg, #007DC6 0%, #00A859 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.contact-number {
    font-size: 24px;
    font-weight: 800;
    color: var(--white);
    text-decoration: none;
    transition: all 0.35s ease;
    font-style: italic;
}

.contact-number:hover {
    color: var(--primary-color);
}

.cta-partner-section img {
    position: absolute;
    top: 70px;
    left: 50%;
    transform: translateX(-50%);
    width: 585px;
}

@media (max-width: 1200px) {
    .cta-partner-section::before {
        font-size: 100px;
        letter-spacing: 7px;
    }

    .cta-partner-title {
        font-size: 48px;
        line-height: 56px;
    }
}

@media (max-width: 768px) {
    .cta-partner-section {
        padding: 70px 0;
        min-height: auto;
    }

    .cta-partner-section::before {
        font-size: 60px;
        letter-spacing: 4px;
    }

    .cta-partner-title {
        font-size: 36px;
        line-height: 44px;
        margin-bottom: 18px;
    }

    .cta-partner-desc {
        font-size: 14px;
        line-height: 24px;
        margin-bottom: 40px;
    }

    .cta-partner-actions {
        gap: 40px;
    }

    .cta-partner-btn {
        padding: 14px 36px;
    }
}

@media (max-width: 576px) {
    .cta-partner-section {
        padding: 60px 0;
    }

    .cta-partner-section::before {
        font-size: 36px;
        letter-spacing: 2px;
    }

    .cta-partner-title {
        font-size: 28px;
        line-height: 36px;
    }

    .cta-partner-desc {
        font-size: 13px;
        line-height: 22px;
        margin-bottom: 35px;
    }

    .cta-partner-actions {
        flex-direction: column;
        gap: 25px;
    }

    .cta-partner-btn {
        padding: 13px 32px;
        font-size: 11px;
    }

    .cta-partner-contact {
        align-items: center;
    }

    .contact-number {
        font-size: 18px;
    }
}

/* ===== FOOTER SECTION ===== */
.site-footer {
    background: radial-gradient(50% 50% at 65% 50%, #001D2E 0%, #0D1019 100%);
    padding-top: 100px;
    font-family: var(--inter);
}

.footer-top {
    padding-bottom: 50px;
}

.footer-logo {
    display: inline-block;
    margin-bottom: 15px;
}

.footer-logo img {
    height: 45px;
    object-fit: contain;
}

.footer-logo-divider {
    border-top: 2px solid #ffffff1a;
    margin: 30px 0;
    width: 100%;

}

.footer-social-wrapper {
    margin-top: 20px;
}

.footer-heading {
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 15px;
    background: linear-gradient(90deg, #007DC6 0%, #00A859 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: #0090e6;
    color: var(--white);
    transform: translateY(-3px);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: all 0.3s ease;
    line-height: 30px;
}

.footer-links li a:hover {
    color: var(--white);
}

.footer-middle {
    border-top: 1px solid #ffffff1a;
    border-bottom: 1px solid #ffffff1a;
    padding: 30px 0;
}

.f-contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

@media (max-width: 991px) {
    .f-contact-item {
        margin-bottom: 20px;
    }
}

.f-contact-info p {
    color: var(--white);
    font-size: 14px;
    margin-bottom: 3px;
    line-height: 22px;
    font-weight: 400;
}

.f-contact-label {
    font-size: 12px;
    font-weight: 400;
    background: linear-gradient(90deg, #007DC6 0%, #00A859 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 4px;
}

.f-contact-link {
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    line-height: 22px;
}

.f-contact-link:hover {
    color: var(--primary-color);
}

.footer-bottom {
    padding: 20px 0;
    text-align: left;
}

.footer-copyright {
    color: var(--white);
    font-size: 12px;
    margin: 0;
    opacity: 0.8;
}

/* ===== SCROLL ANIMATION KEYFRAMES ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ===== ANIMATION CLASSES ===== */
.animate-on-scroll {
    opacity: 0;
}

.animate-on-scroll.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.animate-on-scroll.fade-in-down {
    animation: fadeInDown 0.8s ease-out forwards;
}

.animate-on-scroll.fade-in-left {
    animation: fadeInLeft 0.8s ease-out forwards;
}

.animate-on-scroll.fade-in-right {
    animation: fadeInRight 0.8s ease-out forwards;
}

.animate-on-scroll.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

/* Stagger animation delays for multiple elements */
.animate-on-scroll:nth-child(1) {
    animation-delay: 0s;
}

.animate-on-scroll:nth-child(2) {
    animation-delay: 0.15s;
}

.animate-on-scroll:nth-child(3) {
    animation-delay: 0.3s;
}

.animate-on-scroll:nth-child(4) {
    animation-delay: 0.45s;
}

.animate-on-scroll:nth-child(5) {
    animation-delay: 0.6s;
}

/* ==========================================================
   Single Product & Products Archive Styles
   ========================================================== */

/* Page Banner */
.page-banner {
    min-height: 350px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}

.page-banner .overlay {
    background-color: rgba(0, 0, 0, 0.6);
    top: 0;
    left: 0;
}

.page-banner h1 {
    letter-spacing: 2px;
    font-size: 3rem;
}

/* Breadcrumb Section */
.breadcrumb-section {
    background-color: #f8f9fa;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumb-section .breadcrumb {
    font-size: 14px;
}

.contact-card {
    border-right: solid 1px var(--primary-color);
    margin-right: 80px;
    padding-right: 20%;
    height: 100%;
}

.contact-dec {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
}

.icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 18px;
    flex-shrink: 0;
}

.toll {
    background: var(--midnight-blue);
}

.text h5 {
    margin: 0 0 5px;
    font-size: 16px;
    line-height: 23px;
    font-weight: 600;
    color: var(--black);
}

.text h6 {
    margin: 0 0 10px;
    text-transform: uppercase;
    font-size: 17px;
    line-height: 23px;
    font-weight: 600;
    color: var(--black);
}

.text p,
.text a {
    line-height: 23px;
    color: var(--black);
    text-decoration: none;
}

.tollfree a {
    margin: 0;
    font-size: 22px;
    color: #1f2a44;
    font-weight: 700;
}

.contact-social-link ul {
    margin: 50px 0 0 0;
    padding: 0;
    list-style: none;
}

.contact-social-link {
    border-top: solid 1px #CCCCCC;
    margin-top: 50px;
}

.contact-social-link li:not(:last-child) {
    margin-right: 15px;
}

.contact-social-link li a {
    background-color: var(--primary-color);
    border-radius: 100px;
    display: inline-flex;
    width: 50px;
    height: 50px;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.contact-social-link li:hover a {
    background-color: var(--black);
}

.contact-social-link li a img {
    height: 24px;
    filter: brightness(0) invert(1);
}

.map {
    border-radius: 20px;
}

.map iframe {
    border-radius: 20px;
}

.contact-form p {
    margin: 30px 0 30px 0;
}

.contact-field label {
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    color: var(--black);
    margin: 0 0 10px 0;
}

.contact-field label span {
    color: #a9a6a6;
    font-weight: 400;
}


.contact-field .form-control {
    border-color: #CCCCCC;
    padding: 13px 20px;
    font-size: 16px;
    line-height: 24px;
}

.btn-submit {
    background-color: var(--primary-color);
    color: var(--white);
    font-size: 17px;
    line-height: 23px;
    padding: 18px 0;
}

.btn-submit:hover {
    background-color: var(--black);
    color: var(--white);
}

.btn-submit img {
    margin-left: 14px;
}

.contact-field .form-control:focus {
    box-shadow: none;
}

.contact-field p {
    padding: 0;
    margin: 0;
}

/* Product Header */
.product-header hr {
    border-color: #ddd;
}

/* LED Item Card Gallery (ACF) */
.led-item-card img {
    height: 250px;
    object-fit: cover;
}

.entry-content p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 24px;
}


.home-section-title {
    font-size: 52px;
    font-weight: 500;
    line-height: 52px;
    color: var(--black);
}

.breadcrumb-wrap {
    border: solid 2px var(--white);
    display: inline-flex;
    align-items: center;
    padding: 13px 25px;
    border-radius: 100px;
    color: var(--white);
    list-style: none;
    margin: 20px 0 0 0;
}


.breadcrumb-wrap {
    border: solid 2px var(--white);
    display: inline-flex;
    align-items: center;
    padding: 13px 25px;
    border-radius: 100px;
    color: var(--white);
    list-style: none;
    margin: 20px 0 0 0;
}

.breadcrumb-wrap li a {
    text-decoration: none;
    color: var(--white);
    font-size: 18px;
    font-weight: 400;
}

.breadcrumb-wrap li a:hover {
    color: var(--primary-gold);
}

.breadcrumb-wrap li {
    position: relative;
    font-size: 18px;
    font-weight: 400;
}

/* .breadcrumb-wrap li:not(:last-child)::before{display: none;} */
.breadcrumb-wrap li:not(:last-child) {
    padding-right: 18px;
}

.breadcrumb-wrap li:first-child:before {
    display: none;
}

.breadcrumb-wrap li::before {
    content: "\f105";
    font-family: FontAwesome;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: -11px;
}

/* =========================
   CLIENT SECTION
========================== */
.clients-section {
    --border: rgba(255, 255, 255, .13);
    --text-muted: #aab7c6;
    padding: 85px 0 105px;
    background: var(--dark-navy);
}

.pg-client-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #00a0f0;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.pg-client-kicker::before,
.pg-client-kicker::after {
    content: "";
    width: 45px;
    height: 1px;
    background: #008ee5;
}

.clients-section .pg-client-title {
    font-size: clamp(30px, 3vw, 46px);
    line-height: 1.15;
    font-weight: 600;
    margin: 0 auto 15px;
}

.clients-section .pg-client-title span {
    color: #0098ea;
}

.pg-client-description {
    color: var(--text-muted);
    max-width: 780px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.7;
}

.pg-client-title-line {
    width: 65px;
    height: 2px;
    background: #008ee5;
    margin: 22px auto 25px;
    position: relative;
}

.pg-client-title-line::after {
    content: "";
    position: absolute;
    width: 7px;
    height: 7px;
    background: #008ee5;
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 5px #06101c;
}

/* =========================
   CLIENT CARDS
========================== */
.pg-client-grid {
    margin-top: 55px;
}

.pg-client-card {
    height: 245px;
    display: flex;
    overflow: hidden;
    position: relative;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: linear-gradient(135deg, #0d1b2a, #07111c);
    transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}

.pg-client-card:hover {
    transform: translateY(-7px);
    border-color: rgba(0, 153, 238, .7);
    box-shadow: 0 18px 45px rgba(0, 0, 0, .35);
}

.pg-client-info {
    width: 43%;
    padding: 28px 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    z-index: 2;
    background: #0D1019;
}

.pg-client-info::after {
    content: "";
    position: absolute;
    right: -28px;
    top: 0;
    width: 55px;
    height: 100%;
    background: #0D1019;
    clip-path: polygon(0 0, 100% 0, 45% 100%, 0 100%);
    z-index: -1;
}

.pg-client-logo {
    width: 76px;
    height: 76px;
    object-fit: contain;
    padding: 8px;
    border-radius: 12px;
    background: #fff;
    margin-bottom: 22px;
}

.pg-client-name {
    color: #fff;
    font-size: 18px;
    line-height: 1.25;
    font-weight: 600;
    margin: 0 0 9px;
}

.pg-client-industry {
    color: #93a5b7;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.pg-client-industry i {
    color: #00a0f0;
}

.pg-client-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.pg-client-card:hover .pg-client-image {
    transform: scale(1.06);
}

.pg-client-image-wrap {
    width: 57%;
    overflow: hidden;
    position: relative;
}

.pg-client-image-wrap::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(7, 17, 28, .2), transparent 45%);
    pointer-events: none;
}

.entry-content a {
    text-decoration: none;
}

/* =========================
   RESPONSIVE
========================== */
@media (max-width: 1199px) {
    .pg-client-card {
        height: 225px;
    }

    .pg-client-name {
        font-size: 16px;
    }

    .pg-client-logo {
        width: 68px;
        height: 68px;
    }
}

@media (max-width: 991px) {
    .pg-client-card {
        height: 220px;
    }

    .clients-section {
        padding: 65px 0 75px;
    }
}

@media (max-width: 767px) {
    .pg-client-grid {
        margin-top: 38px;
    }

    .pg-client-card {
        height: 205px;
    }

    .pg-client-info {
        width: 45%;
        padding: 20px 14px;
    }

    .pg-client-image-wrap {
        width: 55%;
    }

    .pg-client-logo {
        width: 58px;
        height: 58px;
        margin-bottom: 14px;
    }

    .pg-client-name {
        font-size: 15px;
    }

    .pg-client-industry {
        font-size: 11px;
    }
}

@media (max-width: 575px) {
    .pg-client-card {
        height: 190px;
    }

    .clients-section .pg-client-title {
        font-size: 28px;
    }

    .pg-client-description {
        font-size: 13px;
    }

    .pg-client-info {
        width: 46%;
    }

    .pg-client-image-wrap {
        width: 54%;
    }
}

/* =========================
   SINGLE PRODUCT & SIDEBAR UI
========================== */
.product-header .product-title-divider {
    width: 100%;
    height: 1px;
    background-color: #e9ecef;
    position: relative;
    margin-top: 18px;
}

.product-header .product-title-divider::before {
    content: "";
    position: absolute;
    left: 0;
    top: -1px;
    height: 3px;
    width: 45px;
    background-color: var(--primary-color);
}

.custom-sidebar-border {
    background-color: var(--white);
    box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px !important;
}

.sidebar-sticky-wrap {
    top: 100px;
    z-index: 1;
}

.sidebar-header .sidebar-title-divider {
    width: 35px;
    height: 3px;
    background-color: var(--primary-color);
    margin-top: 15px;
}

.related-product-item:last-child {
    border-bottom: none !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

.related-item-link {
    transition: all 0.3s ease;
}

.related-item-link .related-img {
    background: #f0f2f5 !important;
    width: 85px;
    height: 85px;
    overflow: hidden;
    border-radius: 8px !important;
}

.related-item-link .related-img img {
    object-fit: cover !important;
    width: 100%;
    height: 100%;
}

.related-item-title {
    transition: color 0.3s ease;
    font-size: 16px;
    line-height: 1.3;
    color: var(--black);
}

.related-item-link:hover .related-item-stitle {
    color: var(--primary-color) !important;
}

.related-item-link:hover .related-item-details-btn {
    text-decoration: none;
}

.related-item-excerpt {
    font-size: 14px;
    line-height: 1.4;
    color: var(--black);
}

.related-item-details-btn {
    font-size: 13px;
    color: var(--primary-color);
    background: linear-gradient(90deg, rgb(0, 125, 198) 0%, rgb(0, 168, 89) 50%) text;
    -webkit-text-fill-color: transparent;
}

.product-title,
.led-item-title,
.sidebar-title {
    color: var(--black);
    background: linear-gradient(90deg, rgb(0, 125, 198) 0%, rgb(0, 168, 89) 50%) text;
    -webkit-text-fill-color: transparent;
}

.custom-border-light {
    border-bottom-color: #e9ecef !important;
}

/* Hero Carousel Custom Controls */
.custom-hero-controls {
    pointer-events: none;
    /* Let clicks pass through empty space */
}

.hero-control-btn {
    pointer-events: auto;
    /* Make buttons clickable */
    width: 70px;
    height: 40px;
    min-width: 70px;
    padding: 0;
    border-radius: 100px;
    background: transparent;
    border: none;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: transform 0.3s ease, opacity 0.3s ease;
    cursor: pointer;
}

.hero-control-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 100px;
    padding: 1px;
    /* border thickness */
    background: linear-gradient(90deg, rgb(0, 125, 198), rgb(0, 168, 89));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.hero-control-btn img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.hero-control-btn:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

/* ===== ABOUT PAGE STYLES ===== */

.bg-light-gray {
    background-color: #f8f9fa;
}

.bg-dark-navy {
    background-color: var(--dark-navy) !important;
}

.text-primary-gradient {
    background: linear-gradient(90deg, var(--primary-color), rgb(0, 168, 89));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.career-text {
    font-size: 1.1rem;
    color: var(--gunmetal);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.match-height-img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
}

.custom-border-gradient {
    border-image: linear-gradient(180deg, var(--primary-color) 0%, rgb(0, 168, 89) 100%) 1;
}

/* Core Values Unified Component */
.core-values-wrapper {
    background-color: transparent;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cv-row {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cv-col {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.cv-col:last-child {
    border-right: none;
}

/* VMV Top Section */
.cv-vmv-item {
    padding: 35px 30px;
}

.cv-icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 1px solid var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cv-icon-circle i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.cv-title {
    color: var(--white);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.cv-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    line-height: 1.6;
}

/* Features Middle/Bottom Section */
.cv-feature-item {
    padding: 30px 20px;
    transition: background-color 0.3s ease;
    height: 100%;
}

.cv-feature-item:hover {
    background-color: rgba(255, 255, 255, 0.03);
}

.cv-feature-icon {
    margin-bottom: 12px;
}

.cv-feature-icon i {
    color: var(--primary-color);
    font-size: 1.8rem;
}

.cv-feature-title {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    margin: 0;
}

@media (max-width: 991px) {
    .cv-col {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .cv-row {
        border-bottom: none;
    }

    .cv-col:last-child {
        border-bottom: none;
    }

    .cv-vmv-item {
        padding: 25px 20px;
    }
}

/* ===== CAREERS PAGE STYLES ===== */

/* Grid Helpers */
@media (min-width: 992px) {
    .row-cols-lg-5>* {
        flex: 0 0 auto;
        width: 20%;
    }
}

/* Backgrounds */
.bg-charcoal-dark {
    background-color: var(--charcoal-dark);
}

/* Why Tremai - Perks Card */
.career-perk-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    gap: 20px;
    height: 100%;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.career-perk-card:hover {
    background-color: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.career-perk-icon {
    flex-shrink: 0;
}

.career-perk-icon i {
    font-size: 2rem;
    background: linear-gradient(180deg, var(--primary-color) 0%, rgb(0, 168, 89) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.career-perk-title {
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.3;
}

.career-perk-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
}

/* How We Work - Values Card */
.career-value-card {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    height: 100%;
    transition: background-color 0.3s ease;
}

.career-value-card:hover {
    background-color: rgba(255, 255, 255, 0.06);
}

.career-value-icon {
    margin-bottom: 15px;
}

.career-value-icon i {
    font-size: 2.2rem;
    background: linear-gradient(180deg, var(--primary-color) 0%, rgb(0, 168, 89) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.career-value-title {
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 10px;
    line-height: 1.3;
}

.career-value-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    line-height: 1.5;
    margin: 0;
}


/* Contact Form */
.career-form-input,
.career-form-select {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: var(--white);
    padding: 12px 15px;
    width: 100%;
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
}

.career-form-input:focus,
.career-form-select:focus {
    outline: none;
    border-color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--white);
}

.career-form-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.career-form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='rgba(255,255,255,0.4)' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 12px;
}

.career-form-select option {
    background-color: var(--charcoal-dark);
    color: var(--white);
}

.career-form-file-wrap {
    position: relative;
}

.career-form-file-label {
    display: block;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 5px;
}

.career-form-file-input {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.6);
    padding: 10px 15px;
    width: 100%;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.career-form-file-input:after {
    content: '\f0c6';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.career-checkbox-wrap {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.career-checkbox-wrap input[type="checkbox"] {
    margin-top: 4px;
}

.career-checkbox-wrap label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.4;
    margin: 0;
}

.career-contact-info-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}

.career-contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    color: var(--white);
    font-size: 0.95rem;
}

.career-contact-info-list li i {
    color: rgb(0, 168, 89);
    font-size: 1.2rem;
    margin-top: 2px;
}

/* Career Section Layouts & Utilities */
.career-intro-section,
.career-why-section,
.career-values-section,
.career-connect-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.career-container {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.career-intro-text-col {
    margin-bottom: 1.5rem;
}

@media (min-width: 992px) {
    .career-intro-text-col {
        margin-bottom: 0;
        padding-right: 3rem;
    }

    .career-connect-text-col {
        margin-bottom: 0;
        padding-right: 3rem;
    }

    .career-connect-form-col {
        padding-left: 3rem;
    }
}

.career-connect-text-col {
    margin-bottom: 3rem;
}

/* Typography & Visuals */
.career-intro-img {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.career-section-header {
    margin-bottom: 3rem;
}

.career-border-top {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.career-form-intro-text {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

/* Career Buttons */
.career-btn-primary {
    background: linear-gradient(90deg, var(--primary-color), rgb(0, 168, 89));
    border: none;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

.career-btn-outline {
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
}

/* Form & Secure Text */
.career-form-row {
    margin-bottom: 1rem;
}

.career-form-row-last {
    margin-bottom: 1.5rem;
}

.career-secure-box {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
}

.career-secure-icon {
    color: rgb(0, 168, 89) !important;
}

.career-secure-text-span {
    line-height: 1.2;
}

.section-subtitle {
    background: linear-gradient(90deg, rgb(0, 125, 198) 0%, rgb(0, 168, 89) 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.inner-banner {
    padding: 50px 0;
}

/* ===== ABOUT PAGE SPECIFIC STYLES ===== */

/* Override font sizes specifically for About Us page to make them smaller than Home page */
[class^="about-"] .section-title {
    /* font-size: 37px;
    line-height: 43px; */
    margin-bottom: 20px;
}

[class^="about-"] .section-subtitle {
    font-size: 11px;
}

.text-tremai-green {
    color: rgb(0, 168, 89);
}

.text-xs {
    font-size: 0.7rem;
}

/* 1. Intro */
.about-intro {
    background-color: var(--white);
}

.about-intro-text {
    padding-right: 1.5rem;
    margin-bottom: 1.5rem;
}

@media (min-width: 992px) {
    .about-intro-text {
        margin-bottom: 0;
        padding-right: 2rem;
    }
}

.text-dark-override {
    color: var(--dark-color) !important;
}

.about-stat-card {
    background-color: var(--white);
    border: 1px solid #f4f4f4;
    border-radius: 6px;
    padding: 1.5rem 0.5rem;
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.about-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.06);
}

.stat-icon {
    color: #1a4185;
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
    display: inline-block;
}

.stat-value {
    font-weight: 700;
    font-size: 1.7rem;
    margin-bottom: 0.2rem;
    color: rgb(0, 168, 89);
}

.stat-label {
    color: var(--dark-color);
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 0;
    line-height: 1.3;
}

/* 2. Heritage */
.about-heritage {

    background: radial-gradient(50% 50% at 65% 50%, #001D2E 0%, #0D1019 100%);
}

/* midnight-blue equivalent */
.about-heritage-title {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.about-heritage-text {
    color: var(--white);
}

/* Background Images for Dark Sections */
.heritage-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background-size: cover;
    background-position: center;
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 100%);
}

.approach-bg-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-size: cover;
    background-position: center;
    mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 100%);
    -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 1) 40%, rgba(0, 0, 0, 0) 100%);
}

@media (max-width: 991px) {

    .heritage-bg-image,
    .approach-bg-image {
        width: 100%;
        mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
        -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%);
        opacity: 0.3;
    }
}

/* 3. Build */
.about-build {
    background-color: var(--white);
}

.about-build-header {
    margin-bottom: 1.5rem;
}

@media (min-width: 992px) {
    .about-build-header {
        margin-bottom: 0;
    }
}

.build-card {
    border: 1px solid #dee2e6;
    border-radius: 0.25rem;
    overflow: hidden;
    background: var(--white);
    transition: box-shadow 0.3s ease;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.build-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.build-card img {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.build-card-content {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.build-card-title {
    margin-bottom: 0;
    font-weight: 700;
    font-size: 14px;
}

.build-card-icon {
    background: linear-gradient(90deg, var(--primary-color) 0%, rgb(0, 168, 89) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: auto;
    align-self: flex-end;
}

/* 5. Journey */
.about-journey {
    background-color: var(--white);
}

.journey-title {
    color: var(--dark-color);
    margin-bottom: 3rem;
}

.timeline-year {
    font-weight: 700;
    margin-top: 1rem;
    margin-bottom: 0.25rem;
}

.timeline-desc {
    font-size: 0.875em;
    color: #6c757d;
    margin-bottom: 0;
}

/* ===== OUR JOURNEY SECTION ===== */
.about-journey {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

/* Timeline Container */
.timeline-container {
    max-width: 1000px;
    margin: 0 auto;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.timeline-line {
    position: absolute;
    top: 31px;
    left: 2%;
    right: 8%;
    height: 2px;
    background: linear-gradient(90deg, rgba(0, 125, 198, 0.3) 0%, rgba(0, 168, 89, 0.3) 100%);
}

.timeline-point {
    width: 16px;
    height: 16px;
    background: linear-gradient(90deg, rgb(0, 125, 198) 0%, rgb(0, 168, 89) 100%);
    border-radius: 50%;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    box-shadow: 0 0 0 4px rgba(0, 125, 198, 0.2);
}

/* 7. Approach */
.about-approach {
    background: radial-gradient(50% 50% at 65% 50%, #001D2E 0%, #0D1019 100%);
}

.approach-header {
    margin-bottom: 1.5rem;
}

@media (min-width: 992px) {
    .approach-header {
        margin-bottom: 0;
    }
}

.about-approach-title {
    color: var(--white);
    margin-bottom: 1.5rem;
}

.about-approach-text {
    color: rgba(255, 255, 255, 0.5);
}

/* 8. Guides */
.about-guides {
    background-color: var(--white);
    border-bottom: 1px solid #dee2e6;
}

.guides-header {
    margin-bottom: 1.5rem;
}

@media (min-width: 992px) {
    .guides-header {
        margin-bottom: 0;
    }
}

.guides-vision-mission {
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 1.5rem;
}

.guides-box {
    text-align: center;
}

@media (min-width: 768px) {
    .guides-box-border {
        border-left: 1px solid #dee2e6;
    }
}

.guides-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: inline-block;
    background: linear-gradient(90deg, var(--primary-color) 0%, rgb(0, 168, 89) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.guides-title {
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.guides-desc {
    font-size: 0.875em;
    color: #6c757d;
    padding: 0 1rem;
}

.values-main-title {
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.values-list {
    color: #6c757d;
    font-size: 0.875em;
}

.value-item {
    gap: 0.5rem;
}

.value-icon {
    color: var(--primary-color);
}

/* 9. Quality */
.about-quality {
    background-color: var(--charcoal-dark);
}

.quality-header {
    margin-bottom: 1.5rem;
}

@media (min-width: 992px) {
    .quality-header {
        margin-bottom: 0;
    }
}

.quality-subtitle {
    color: #6c757d;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.quality-title {
    color: var(--white);
    margin-bottom: 0;
    font-size: 1.75rem;
}

.quality-logos {
    gap: 1.5rem;
}

.quality-logo {
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

.quality-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.quality-icon-large {
    font-size: 2.5rem;
    margin-bottom: 0.25rem;
    display: block;
}

.quality-text {
    font-size: 0.875em;
}

.quality-text-small {
    font-size: 0.7rem;
}

/* ===== ABOUT APPROACH SECTION ===== */
.about-approach {
    background-color: var(--dark-navy);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.about-heritage {
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.approach-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    z-index: 0;
}

.approach-bg-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #010a14 45%, rgba(1, 10, 20, 0.85) 60%, rgba(1, 10, 20, 0) 100%);
    z-index: 1;
}

.approach-title-custom {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    margin-top: 15px;
}


@media (max-width: 991px) {
    .approach-bg-image::after {
        background: linear-gradient(90deg, #010a14 20%, rgba(1, 10, 20, 0.95) 100%);
    }

    .approach-title-custom {
        font-size: 28px;
        margin-bottom: 20px;
    }

    .approach-text-custom {
        margin-top: 15px;
    }
}

/* ===== WHAT GUIDES US SECTION ===== */
.guides-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.015);
    border-radius: 12px;
    padding: 12px;
    transition: all 0.3s ease;
}

.guides-card-title {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin-bottom: 8px;
}

.guides-card-text {
    font-size: 12px;
    line-height: 1.5;
    color: #666;
    margin-bottom: 0;
}

.values-divider {
    border-color: rgba(0, 0, 0, 0.06);
    opacity: 1;
    margin-top: 10px;
    margin-bottom: 0px;
    /* Removed margin since grid handles padding */
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.values-grid-item {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0px;
    padding: 15px 7px;
    border-right: 1px solid rgba(0, 0, 0, 0.06);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.values-grid-item:nth-child(3n) {
    border-right: none;
}

.values-grid-item:nth-last-child(-n+3) {
    border-bottom: none;
}

.value-text {
    font-size: 12px;
    font-weight: 600;
    color: #111;
}

.value-icon {
    color: var(--primary-color);
    font-size: 14px;
    width: 20px;
    text-align: center;
}

/* ===== QUALITY & COMPLIANCE SECTION ===== */
.quality-badges-wrapper {
    display: flex;
    flex-wrap: nowrap;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 5px;
}

@media (max-width: 991px) {
    .quality-badges-wrapper {
        flex-wrap: wrap;
    }
}

.quality-badge {
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 12px 8px;
    height: 90px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: transparent;
    color: var(--white);
}

.quality-badge-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 5px;
}

.quality-badge-text {
    font-size: 10px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
}

/* ==========================================================================
   CAPABILITIES PAGE STYLES
   ========================================================================== */



/* Our Infrastructure Section CSS */
.cap-infra-section {
    padding-top: 3rem;
    padding-bottom: 0;
}

.cap-infra-section .infra-text-col {
    margin-bottom: 3rem;
    padding-right: 1.5rem;
}

@media (min-width: 992px) {
    .cap-infra-section {
        padding-top: 4rem;
        padding-bottom: 0;
    }

    .cap-infra-section .infra-text-col {
        margin-bottom: 0;
    }
}


.cap-infra-section .section-title {
    margin-bottom: 1.5rem;
}

.infra-stats-grid {
    gap: 1.5rem;
}

/* Cards & Hover Effects */
.hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08) !important;
}

.cap-stat-card {
    padding: 1.5rem;
    border: 1px solid var(--light-gray);
    border-radius: 0.5rem;
    background-color: var(--white);
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

.cap-stat-card .stat-icon {
    margin-bottom: 1rem;
}

.cap-stat-card .stat-value {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--charcoal-dark);
    margin-bottom: 0.5rem;
}

.cap-stat-card .stat-value-sm {
    font-size: 1.25rem;
}

.cap-stat-card .stat-label {
    font-weight: 600;
    color: var(--gunmetal);
    margin-bottom: 0;
}

.cap-stat-card .stat-icon svg {
    color: var(--primary-color);
}

/* Production Capabilities Section */
.cap-production-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
    background-color: var(--white);
}

@media (min-width: 992px) {
    .cap-production-section {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
}

.cap-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.cap-section-header .section-title {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    color: var(--dark-navy);
}

.cap-section-header p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1rem;
    color: var(--gunmetal);
}

.prod-cards-grid {
    /* Let Bootstrap grid gutters handle the spacing */
}

/* Production Cards */
.cap-process-card {
    background-color: var(--white);
    border: 1px solid #F0F0F0;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.04);
    position: relative;
}

.cap-process-card .card-img-wrap {
    background-color: #F8F9FA;
    padding: 10px;
    position: relative;
    margin-bottom: 2rem;
    border-bottom: none;
}

.cap-process-card .card-img-wrap img {
    height: 200px;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.card-curve {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 35px;
    z-index: 1;
}

.card-icon-circle {
    position: absolute;
    bottom: -7px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    background: #ffffff;
    border: 1px solid #D4A351;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    color: #D4A351;
    font-size: 18px;
}

.cap-process-card .card-content {
    padding: 1.25rem;
}

.cap-testing-section {
    background: radial-gradient(50% 50% at 65% 50%, #001D2E 0%, #0D1019 100%);
}

.prod-cards-grid .cap-process-card .card-content {
    padding: 0 1.25rem;
}

.cap-process-card h5 {
    color: var(--dark-navy);
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 0.75rem;
}

/* 
.cap-process-card p {
    color: var(--gunmetal);
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 0;
} */

.card-dots {
    width: 58px;
    height: 18px;
    margin: 1.5rem auto 0 auto;
    background-image: radial-gradient(#D4A351 1.5px, transparent 1.5px);
    background-size: 10px 10px;
    background-position: center;
    opacity: 0.5;
}

/* Supporting Infrastructure */
.cap-support-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
    background-color: var(--dark-navy);
    overflow: hidden;
}

@media (min-width: 992px) {
    .cap-support-section {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
}

.cap-support-section .support-bg {
    background-image: url('https://tremailed.ezeone.tech/wp-content/uploads/2026/08/Manufacturing-Capabilities.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
}

.cap-support-section .support-content {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

/* Split OEM/ODM & R&D Section */
.cap-split-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

@media (min-width: 992px) {
    .cap-split-section {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
}


.split-col .section-title {
    color: var(--dark-navy);
    margin-bottom: 1.5rem;
}

.split-col p {
    color: var(--gunmetal);
    margin-bottom: 1.5rem;
}

.split-col p:last-child {
    margin-bottom: 0;
}

@media (min-width: 992px) {
    .split-col:first-child p {
        padding-right: 1.5rem;
    }
}

/* Process Flow (OEM Section) */
.cap-process-flow {
    margin-bottom: 3rem;
}

.process-line {
    position: absolute;
    top: 24px;
    left: 8%;
    right: 8%;
    height: 2px;
    background-color: var(--light-gray);
    z-index: 0;
}

.process-circle {
    width: 48px;
    height: 48px;
    background-color: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.process-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gunmetal);
    line-height: 1.2;
}

.btn-icon {
    font-size: 14px;
    font-weight: 600;
    padding: 0.5rem 1rem;
    gap: 0.5rem;
}

.rd-images {
    margin-top: 0.5rem;
    gap: 1rem;
}

.rd-images img {
    border-radius: 0.25rem;
    box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
}

/* Testing Infrastructure */
.cap-testing-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
    background-color: var(--white);
}

@media (min-width: 992px) {
    .cap-testing-section {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
}

/* Quality Section */
.cap-quality-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

@media (min-width: 992px) {
    .cap-quality-section {
        padding-top: 4rem;
        padding-bottom: 4rem;
    }
}

.cap-quality-row {
    gap: 3rem;
}

.cap-quality-text .section-title {
    color: var(--dark-navy);
    margin-bottom: 1.5rem;
}

/* .cap-quality-text p {
    color: var(--gunmetal);
    margin-bottom: 1.5rem;
} */

.cap-quality-text .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Quality Flow Diagram */
.cap-quality-flow .quality-circle {
    width: 80px;
    height: 80px;
    background-color: var(--white);
    border: 2px solid var(--light-gray);
    border-radius: 50%;
    margin-bottom: 1rem;
    color: var(--gunmetal);
}

.cap-quality-flow h6 {
    font-weight: 700;
    font-size: 1rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.cap-quality-flow p {
    /* color: var(--gunmetal);
    font-size: 0.6875rem; */
    /* 11px */
    /* margin-bottom: 0; */
}

.cap-quality-flow .quality-arrow {
    top: 40px;
    right: -25px;
    color: var(--light-gray);
    transform: translateY(-50%);
}

.cap-support-header {
    margin-bottom: 3rem;
    text-align: left;
}

.cap-support-header .section-subtitle {
    color: var(--primary-color);
}

.cap-support-header .section-title {
    color: var(--white);
    margin-bottom: 1rem;
    max-width: none;
}

.cap-support-header p {
    color: var(--white);
}

.support-grid {

    gap: 0;
}

.cap-support-section .support-col {
    padding: 10px 15px;
}

@media (min-width: 992px) {
    .cap-support-section .support-bg {
        width: 100%;
        opacity: 0.9;
        background-position: right center;
        -webkit-mask-image: linear-gradient(to right, transparent 0%, transparent 65%, black 100%);
        mask-image: linear-gradient(to right, transparent 0%, transparent 65%, black 100%);
    }

    .cap-support-section .support-col {
        border-right: 1px solid rgba(255, 255, 255, 0.15);
    }

    .cap-support-section .support-col:last-child {
        border-right: none;
    }
}

.support-col h5 {
    color: var(--white);
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.support-col p {
    color: var(--white);
}

.support-icon {
    margin-bottom: 1rem;
    margin-left: auto;
    margin-right: auto;
}

.support-icon svg {
    color: var(--primary-color);
}

.rd-images img {
    aspect-ratio: 4/3;
    object-fit: cover;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* OEM Flow Diagram */
.cap-process-flow {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.cap-process-flow .process-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 50px;
}

.cap-process-flow .process-circle {
    width: 44px;
    height: 44px;
    background-color: var(--dark-navy);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cap-process-flow .process-arrow {
    padding-top: 14px;
    color: #6fb04a;
}

.cap-process-flow .process-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--gunmetal);
    line-height: 1.2;
}

@media (min-width: 992px) {
    .split-col-left {
        border-right: 1px solid #EAEAEA;
    }
}

/* Quality Flow Diagram */
.cap-quality-flow {
    padding-top: 1rem;
}

.cap-quality-flow .process-step {
    padding: 0 5px;
}

.cap-quality-flow .quality-circle {
    width: 80px;
    height: 80px;
    background-color: var(--white);
    border: 1px solid #E0E0E0;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    color: var(--gunmetal);
}

.cap-quality-flow .process-step:hover .quality-circle {
    border-color: var(--gunmetal);
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.06);
}

.cap-quality-flow h6 {
    color: var(--dark-navy);
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

/* .cap-quality-flow p {
    color: #777777;
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 0;
} */

.cap-quality-flow .quality-arrow {
    top: 40px;
    right: -15px;
    transform: translateY(-50%);
    color: #B0B1B1;
    z-index: -1;
}

@media (max-width: 991px) {
    .cap-quality-flow .process-step {
        width: 100% !important;
        margin-bottom: 2rem;
    }

    .cap-quality-flow .quality-arrow {
        top: auto;
        bottom: -20px;
        right: 50%;
        transform: translateX(50%) rotate(90deg);
    }

    .cap-quality-flow .process-step:last-child {
        margin-bottom: 0;
    }
}



/* Buttons */
.btn-gradient {
    background: linear-gradient(90deg, #007DC6 0%, #00A859 100%);
    color: var(--white) !important;
    border: none;
    border-radius: 50px;
    padding: 12px 30px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.35s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 168, 89, 0.3);
}


.btn-success {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-success:hover {
    background-color: var(--dark-navy);
    border-color: var(--dark-navy);
}

.text-dark-override {
    color: var(--dark-navy) !important;
}

/* ===== OUR JOURNEY SECTION ===== */
.about-journey {
    background-color: #FAFCFF;
    overflow: hidden;
}

.journey-subtitle {
    color: #00A859 !important;
    font-size: 13px;
    letter-spacing: 1px;
}

.journey-subtitle-line {
    height: 1px;
    width: 40px;
    background-color: #00A859 !important;
}

.journey-title {
    font-size: 42px;
    color: #0b4f3b !important;
    /* Dark emerald green */
}

.timeline-wrapper {
    position: relative;
    padding-top: 20px;
    padding-bottom: 20px;
}

.timeline-node-col {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 3;
}

.node-icon-wrap {
    position: relative;
    width: 44px;
    height: 44px;
    background: #097B51;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    margin-bottom: 12px;
    box-shadow: 0 8px 16px rgba(9, 123, 81, 0.4);
    border: none;
    z-index: 3;
}

.node-card {
    position: relative;
    width: 100%;
    height: 180px;
    padding: 0px 15px 0px 15px;
    border-radius: 12px;
    z-index: 3;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    background-color: #ffffff;
    border: none;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08) !important;
    justify-content: center;
}

.node-card::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    margin-left: -10px;
    width: 20px;
    height: 20px;
    background-color: #ffffff;
    transform: rotate(45deg);
    border-radius: 3px;
    z-index: -1;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.node-divider {
    background-color: #097B51;
    width: 24px;
    height: 2px;
    margin-bottom: 10px;
    border-radius: 1px;
}

.node-year {
    color: #097B51 !important;
    font-size: 22px !important;
    font-weight: 800;
    margin-bottom: 10px !important;
}

.node-title {
    color: #112A46 !important;
    font-size: 13px;
    font-weight: 800;
    margin-bottom: 4px !important;
    line-height: 1.3;
}

.node-desc {
    color: #6c757d !important;
    font-size: 11px;
    line-height: 1.6;
    margin-bottom: 0;
}

.timeline-row {
    position: relative;
    margin-bottom: 40px;
    z-index: 2;
}

/* The straight horizontal line */
.timeline-row::before {
    content: '';
    position: absolute;
    top: 46px;
    /* 22px (icon center) + 24px (Bootstrap g-4 column margin-top) */
    left: 12.5%;
    right: 12.5%;
    height: 1px;
    background: #097B51;
    z-index: -1;
}

/* First row line starts from the far left */
.timeline-row:first-child::before {
    left: -20px;
}

/* Odd rows: Curve down on the RIGHT */
.timeline-row:nth-child(odd)::after {
    content: '';
    position: absolute;
    top: 45px;
    right: -5.5%;
    width: calc(12.5% + 30px);
    height: calc(100% + 19px);
    border: 1px solid #097B51;
    border-left: none;
    border-radius: 0 130px 130px 0;
    z-index: -1;
}

/* Even rows: Curve down on the LEFT */
.timeline-row:nth-child(even)::after {
    content: '';
    position: absolute;
    border: 1px solid #097B51;
    border-right: none;
    border-radius: 130px 0 0 130px;
    z-index: -1;
    top: 46px;
    left: -2.5%;
    width: calc(12.5% + 30px);
    height: calc(100% + 17px);
}

/* Hide curve for the very last row */
.timeline-row:last-child::after {
    display: none !important;
}

/* Hollow dots placed automatically between adjacent filled cards! */
.timeline-node-col+.timeline-node-col::before {
    content: '';
    position: absolute;
    top: 22px;
    /* Relative to the column's padding box, unaffected by margin-top */
    left: 0;
    width: 10px;
    height: 10px;
    background: #fff;
    border: 2px solid #097B51;
    border-radius: 50%;
    z-index: 2;
    transform: translateY(-50%) translateX(-50%);
}

/* Glowing dot for the very last card in the whole timeline */
.timeline-row:last-child .timeline-node-col:last-child .node-icon-wrap::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 14px;
    height: 14px;
    background: #097B51;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(9, 123, 81, 0.2);
    transform: translate(-50%, -50%);
    z-index: 2;
}

@media (max-width: 768px) {

    .timeline-row::before,
    .timeline-row::after,
    .timeline-node-col::before,
    .node-icon-wrap::after {
        display: none !important;
    }

    .timeline-row {
        margin-bottom: 0;
    }

    .node-card {
        height: auto;
        min-height: 150px;
        margin-bottom: 20px;
    }
}

/* ===== 8. WHAT GUIDES US SECTION REDESIGN ===== */

.about-guides {
    background-color: #FAFCFF;
}

.guides-subtitle-text {
    color: var(--primary-color);
    font-size: 13px;
    letter-spacing: 1px;
}

.guides-subtitle-line {
    width: 40px;
    height: 2px;
    background-color: var(--primary-color);
}

.guides-main-title {
    color: var(--dark-color);
}

.guides-highlight {
    color: var(--primary-color);
}

.guides-lead-text {
    font-size: 15px;
}

.guides-icon-area {
    min-width: 140px;
    padding: 20px;
}

.vision-card-title {
    color: #1a4a8d;
}

.mission-card-title {
    color: #0b6a2e;
}

.guides-card-text {
    font-size: 13.5px;
}

/* Card Base */
.guides-card {
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid #f2f2f2;
    position: relative;
    overflow: hidden;
}

.guides-divider {
    width: 1px;
    background-color: #f0f0f0;
}

/* Vision Card */
.vision-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #1a4a8d 0%, #4a90e2 100%);
}

.vision-line {
    width: 30px;
    height: 2px;
    background-color: #1a4a8d;
    border-radius: 2px;
}

/* Mission Card */
.mission-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #0b6a2e 0%, #34a853 100%);
}

.mission-line {
    width: 30px;
    height: 2px;
    background-color: #0b6a2e;
    border-radius: 2px;
}

/* Concentric Circle Icons */
.guides-icon-wrapper {
    position: relative;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.guides-icon-wrapper i {
    font-size: 22px;
    z-index: 2;
    color: var(--white);
}

/* Concentric Rings using pseudo-elements */
.guides-icon-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    z-index: -1;
}

.guides-icon-wrapper::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    z-index: -2;
}

/* Vision Icon Colors */
.vision-icon {
    background-color: #1a4a8d;
}

.vision-icon::before {
    background-color: rgba(26, 74, 141, 0.1);
}

.vision-icon::after {
    background-color: rgba(26, 74, 141, 0.05);
}

/* Mission Icon Colors */
.mission-icon {
    background-color: #0b6a2e;
}

.mission-icon::before {
    background-color: rgba(11, 106, 46, 0.1);
}

.mission-icon::after {
    background-color: rgba(11, 106, 46, 0.05);
}

/* Values Section Header */
.values-header {
    position: relative;
}

.values-title-line {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #f0f0f0;
    z-index: 0;
}

/* Small green line under the "Our Values" title text */
.values-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background-color: #0b6a2e;
    border-radius: 2px;
}

/* Values Grid */
.values-card {
    position: relative;
}

.values-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #0b6a2e 0%, #1a4a8d 100%);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid #f2f2f2;
}

.values-item {
    padding: 35px 25px;
    border-right: 1px solid #f2f2f2;
    border-bottom: 1px solid #f2f2f2;
    display: flex;
    align-items: flex-start;
}

.values-item:nth-child(3n) {
    border-right: none;
}

.values-item:nth-last-child(-n+3) {
    border-bottom: none;
}

/* Replicate image layout: Icon on left, content on right */
.values-item-icon {
    width: 45px;
    height: 45px;
    background-color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 25px;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    z-index: 2;
}

.values-item-icon::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    z-index: -1;
}

/* Alternating Colors for Values Icons */
/* Odd items (1, 3, 5, 7, 9) -> Blue */
.values-item:nth-child(odd) .values-item-icon {
    color: #1a4a8d;
}

.values-item:nth-child(odd) .values-item-icon::before {
    background-color: rgba(26, 74, 141, 0.08);
}

/* Even items (2, 4, 6, 8) -> Green */
.values-item:nth-child(even) .values-item-icon {
    color: #0b6a2e;
}

.values-item:nth-child(even) .values-item-icon::before {
    background-color: rgba(11, 106, 46, 0.08);
}

.values-item-content {
    flex: 1;
}

.values-title {
    color: var(--dark-color);
    font-size: 16px;
    letter-spacing: 1px;
}

.values-item-title {
    color: var(--dark-color);
    font-size: 15px;
}

.values-item-text {
    font-size: 12px;
    line-height: 1.6;
}

/* Responsive Grid */
@media (max-width: 992px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
    }

    .vision-card,
    .mission-card {
        flex-direction: column;
        text-align: center;
    }

    .guides-icon-wrapper {
        margin-right: 0 !important;
        margin-bottom: 30px;
    }

    .guides-title-line {
        margin: 0 auto 15px auto;
    }
}

/* ===== 11. CERTIFICATIONS SECTION ===== */
.certifications-section {
    background-color: #FAFCFF;
}

.cert-card {
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
    border: 1px solid #f2f2f2;
    border-bottom: 4px solid #0b6a2e;
    z-index: 2;
    transition: transform 0.3s ease;
}

.cert-card:hover {
    transform: translateY(-5px);
}

.cert-icon-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 1px solid #eaeaea;
    background-color: #ffffff;
}

.cert-title {
    color: var(--dark-color);
    font-size: 17px;
}

.cert-text {
    font-size: 13.5px;
    line-height: 1.6;
}

.cert-triangle {
    position: absolute;
    bottom: -4px;
    left: 50%;
    transform: translateX(-50%) translateY(100%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #0b6a2e;
}

/* Connecting Dotted Line for Desktop */
.cert-connecting-line {
    position: absolute;
    top: 130px;
    left: 10%;
    right: 10%;
    height: 1px;
    border-top: 2px dashed rgba(11, 106, 46, 0.3);
    z-index: 1;
}

/* ===== ABOUT PAGE SECTIONS PADDING ===== */
.about-intro,
.about-heritage,
.about-build,
.about-journey,
.about-approach,
.about-guides,
.about-quality {
    padding-top: 100px !important;
    padding-bottom: 100px !important;
}

/* ===== CAPABILITIES INFRASTRUCTURE CARDS ===== */
.custom-cap-card {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 40px 0;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    height: 100%;
}

.custom-cap-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.custom-cap-icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #eef5fc;
    /* light blue */
    border: 2px solid #b9d5f0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.custom-cap-icon {
    font-size: 26px;
    background: linear-gradient(90deg, rgb(0, 125, 198) 0%, rgb(0, 168, 89) 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.custom-cap-value {
    color: #00768c;
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1;
    background: linear-gradient(90deg, rgb(0, 125, 198) 0%, rgb(0, 168, 89) 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.custom-cap-value.custom-cap-value-sm {
    font-size: 20px;
}



.custom-cap-desc {
    color: #6c757d;
    font-size: 13px;
    line-height: 1.5;
    margin: 0;
}

/* ===== CAPABILITIES PROCESS SLIDER & CARDS ===== */
.cap-process-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.03);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.cap-process-card img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.cap-process-card .card-content {
    padding: 16px 16px;
    flex-grow: 1;
}

.cap-process-card h5 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1a2a40;
    line-height: 1.3;
}



.cap-process-slider,
.capabilitiesSwiper {
    padding-bottom: 50px;
}

/* Capabilities Specific Scrollbar Styling */
.capabilitiesSwiper .swiper-slide {
    height: auto;
    display: flex;
}

.capabilitiesSwiper .swiper-scrollbar {
    bottom: 0px !important;
    left: 0px !important;
    width: 100% !important;
    height: 8px !important;
    background: #e0e0e0;
    border-radius: 100px;
}

.capabilitiesSwiper .swiper-scrollbar-drag {
    background: linear-gradient(90deg, rgb(0, 125, 198) 0%, rgb(0, 168, 89) 100%);
    border-radius: 100px;
}

/* ===== SUPPORTING INFRASTRUCTURE GRID ===== */
.support-col {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px;
}

/* Remove right border from every 3rd item (last column) */
.support-col:nth-child(3n) {
    border-right: none;
}

/* Remove bottom border from items in the last row (4th and 5th items) */
.support-col:nth-child(n+4) {
    border-bottom: none;
}

.support-col h5 {
    font-size: 22px;
    /* Increased font size */
    color: #fff;
    margin-bottom: 15px;
    font-weight: 700;
}

.support-col p {
    color: #b0b1b1;
    font-size: 14.5px;
    line-height: 1.6;
}