.section-dark::before,
.services::before,
.info::before,
.hero::before,
.hero::after,
.services-hero::before,
.services-hero::after, .open-positions::before {
    pointer-events: none;
}

/* Nav links */
.nav-link {
    color: #171793 !important;
    font-weight: 500;
    font-size: 14px;

    /* MATCH FOOTER STYLE */
    text-transform: uppercase;
    letter-spacing: 1px;

    position: relative;


}

/* Hover effect */
.nav-link:hover,
.nav-link:focus,
.nav-link.active {
    color: #C4AD11 !important;
    /* Gold */
    background: transparent !important;
}

/* Underline animation */
.nav-link::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: #C4AD11;
    left: 0;
    bottom: 0;
    transition: 0.3s;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.active {
    background: transparent !important;
}

.btn-primary-custom.active {
    background-color: #171793;
    color: #fff;
}

.btn-custom {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 5px;

    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;

    text-decoration: none;
    border: none;

    transition: 0.3s ease;
    cursor: pointer;

    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary-custom {
    background-color: #C4AD11;
    color: #000;
}

.btn-primary-custom:hover {
    background-color: #a8920e;
    color: white;
}

.btn-secondary-custom {
    background-color: transparent;
    color: #C4AD11;
    border: 1px solid #C4AD11;
}

.btn-secondary-custom:hover {
    background-color: #C4AD11;
    color: #000;
}

.btn-group {
    display: flex;
    gap: 10px;
}

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
}

.client-contact-strip {
    color: #fff;
    background: #050505;
    border-bottom: 3px solid #C4AD11;
    font-size: 13px;
}

.client-contact-strip .container {
    min-height: 38px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.client-contact-details,
.client-hours {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 18px;
}

.client-contact-details a,
.client-hours span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #fff;
    text-decoration: none;
    white-space: nowrap;
}

.client-contact-details a:hover {
    color: #C4AD11;
}

.open-status {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    min-height: 24px;
    padding: 4px 10px;
    border-radius: 999px;
    color: #063b1d;
    background: #54d17a;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.open-status.is-closed {
    color: #fff;
    background: #c0392b;
}

body {
    padding-top: 108px;
}

/* Navbar subtle separation */
.navbar {
    border-bottom: 1px solid #eee;
}

.hero {
    position: relative;
    padding-top: 10vh;
    min-height: calc(100vh - 108px);

    /* Background image */
    background: url('../images/mechanic-controls-robotic-arm-futuristic-production-line-generated-by-ai.jpg') center/cover no-repeat;

    display: flex;
    align-items: center;
}

/* Dark overlay (improves text readability) */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
}

/* Grid overlay */
.hero::after {
    content: "";
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);

    background-size: 40px 40px;

    z-index: 2;
}

/* Ensure content sits above overlays */
.hero .container {
    position: relative;
    z-index: 3;
    color: white;
}

.logo-prop {
    border: 1px solid black;
    width: 100px;
    height: 50px;
    border-radius: 5px;
    margin-left: 50px;
}

.logo-img {
    width: 120px;
    height: 60px;
    object-fit: contain;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: 0.3s;
}

.logo-img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.trust {
    position: relative;
    overflow: hidden;
    /* prevents overflow issues */
}

.trust::before {
    content: "";
    position: absolute;
    inset: 0;

    /* Dot pattern */
    background-image: radial-gradient(rgba(0, 0, 0, 0.08) 1px, transparent 1px);
    background-size: 20px 20px;

    z-index: 1;
}
.open-positions {
    position: relative;
    overflow: hidden;
    /* prevents overflow issues */
}

.open-positions::before {
    content: "";
    position: absolute;
    inset: 0;

    /* Dot pattern */
    background-image: radial-gradient(rgba(0, 0, 0, 0.08) 1px, transparent 1px);
    background-size: 20px 20px;

    z-index: 1;
}

.trust>* {
    position: relative;
    z-index: 2;
}

.info {
    background: #0f0f0f;
    /* dark industrial base */
    color: #fff;
    position: relative;
    overflow: hidden;
}

/* subtle grid overlay (engineering feel) */
.info::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);

    background-size: 40px 40px;

    z-index: 1;
}

/* keep content above overlay */
.info .container {
    position: relative;
    z-index: 2;
}

/* card styling */
.info-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px;
    border-radius: 10px;
    height: 100%;
    transition: 0.3s;
}

/* hover = subtle lift */
.info-card:hover {
    transform: translateY(-5px);
    border-color: #C4AD11;
}

/* titles */
.info-title {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* highlight year */
.info-title span {
    color: #C4AD11;
}

/* body text */
.info-card-2 p {
    color: #cfcfcf;
    line-height: 1.6;
}

/* region list */
.regions {
    margin-top: 10px;
    font-weight: 500;
    color: #aaa;
}

.vertical-block {
    height: 100%;
    width: 20px;
    background-color: white;
}

.info-text {
    display: flex;
    gap: 15px;
}

.info-text p,
.region {
    margin: 0;
    padding-left: 15px;
    border-left: 4px solid #C4AD11;
}

.services {
    background: #0f0f0f;
    color: #fff;
    position: relative;
}

/* subtle grid (keep consistency with info section) */
.services::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);

    background-size: 40px 40px;
}

/* keep content above overlay */
.services .container {
    position: relative;
    z-index: 2;
}

/* headings */
.section-title {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 2px;
}

.section-subtitle {
    color: #aaa;
    max-width: 600px;
}

/* card */
.service-card {
    position: relative;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 40px 25px 30px;
    border-radius: 10px;
    height: 100%;
    transition: 0.3s;
}

/* hover effect */
.service-card:hover {
    transform: translateY(-6px);
    border-color: #C4AD11;
}

/* big number */
.service-number {
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 48px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.08);
}

/* title */
.service-title {
    margin-top: 40px;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
}

/* description */
.service-desc {
    margin: 15px 0;
    color: #cfcfcf;
    line-height: 1.6;
}

/* CTA link */
.service-link {
    color: #C4AD11;
    text-decoration: none;
    font-weight: 500;
    position: relative;
}

/* underline animation */
.service-link::after {
    content: "";
    position: absolute;
    width: 0%;
    height: 2px;
    background: #C4AD11;
    left: 0;
    bottom: -3px;
    transition: 0.3s;
}

.service-link:hover::after {
    width: 100%;
}

.home-training {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(23, 23, 147, 0.04), rgba(196, 173, 17, 0.08)),
        #f7f8fb;
}

.home-training .container {
    position: relative;
    z-index: 2;
}

.home-training-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 36px;
}

.home-training-eyebrow {
    color: #C4AD11;
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.home-training-header p {
    color: #555;
    line-height: 1.65;
    margin: 0;
    max-width: 650px;
}

.home-training-layout {
    display: grid;
    grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.55fr);
    gap: 24px;
    align-items: stretch;
}

.home-training-panel {
    background: #111;
    border-radius: 8px;
    color: #fff;
    min-height: 100%;
    padding: 30px;
    position: relative;
}

.home-training-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    border-top: 4px solid #C4AD11;
    border-radius: 8px;
    pointer-events: none;
}

.home-training-panel-icon {
    align-items: center;
    background: #C4AD11;
    border-radius: 8px;
    color: #111;
    display: flex;
    font-size: 26px;
    height: 54px;
    justify-content: center;
    margin-bottom: 24px;
    width: 54px;
}

.home-training-panel h3 {
    color: #fff;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.4;
    margin-bottom: 16px;
}

.home-training-panel p {
    color: #cfcfcf;
    line-height: 1.7;
    margin-bottom: 24px;
}

.home-training-points {
    display: grid;
    gap: 12px;
}

.home-training-points span {
    align-items: center;
    color: #fff;
    display: flex;
    gap: 10px;
    font-size: 14px;
}

.home-training-points i {
    color: #C4AD11;
}

.home-training-grid {
    display: grid;
    gap: 16px;
}

.home-training-card,
.home-training-empty {
    background: #fff;
    border: 1px solid #e7e7e7;
    border-radius: 8px;
    box-shadow: 0 16px 36px rgba(17, 17, 17, 0.06);
    padding: 22px;
}

.home-training-card {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(230px, 0.8fr) auto;
    gap: 20px;
    align-items: center;
    min-height: 100%;
    transition: 0.3s;
}

.home-training-card:hover {
    box-shadow: 0 22px 45px rgba(17, 17, 17, 0.1);
    border-color: #C4AD11;
    transform: translateY(-4px);
}

.home-training-label {
    color: #C4AD11;
    display: block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.home-training-card h3,
.home-training-empty h3 {
    color: #111;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    line-height: 1.35;
    margin-bottom: 10px;
}

.home-training-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

.home-training-meta div {
    background: #f6f6f6;
    border: 1px solid #ececec;
    border-radius: 8px;
    padding: 12px;
}

.home-training-meta span {
    color: #666;
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.8px;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.home-training-meta strong {
    color: #111;
    display: block;
    font-size: 14px;
    font-weight: 600;
}

.home-training-card p,
.home-training-empty p {
    color: #666;
    line-height: 1.55;
    margin: 0;
}

.home-training-link {
    align-items: center;
    background: #171793;
    border-radius: 8px;
    color: #fff;
    display: inline-flex;
    font-size: 14px;
    font-weight: 500;
    gap: 8px;
    justify-content: center;
    padding: 12px 16px;
    text-decoration: none;
    white-space: nowrap;
}

.home-training-link:hover {
    background: #C4AD11;
    color: #111;
}

.home-training-empty {
    grid-column: 1 / -1;
    max-width: 720px;
}

/* section */
.updates {
    background: #f9f9f9;
    position: relative;
}

/* subtle dotted overlay (light version of your system) */
.updates::before {
    content: "";
    position: absolute;
    inset: 0;

    background-image: radial-gradient(rgba(0, 0, 0, 0.04) 1px, transparent 1px);
    background-size: 22px 22px;
}

/* content above overlay */
.updates .container {
    position: relative;
    z-index: 2;
}

/* headings */
.section-title-dark {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #111;
}

.section-subtitle-dark {
    color: #666;
    max-width: 600px;
}

/* layout */
.updates-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* card */
.update-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.update-card:hover {
    transform: translateY(-6px);
    border-color: #C4AD11;
}

/* image */
.update-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

/* content */
.update-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

/* meta */
.update-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    margin-bottom: 10px;
}

.category {
    color: #C4AD11;
    font-weight: 600;
}

.date {
    color: #888;
}

/* title */
.update-title {
    font-size: 18px;
    font-weight: 600;
}

/* desc */
.update-desc {
    font-size: 14px;
    color: #555;
    margin: 10px 0;
}

/* extra info */
.update-extra {
    list-style: none;
    padding: 0;
    margin: 10px 0;
    font-size: 13px;
    color: #666;
}

.update-extra li {
    margin-bottom: 3px;
}

/* section base */
.subscribe {
    background: #0b0b0b;
    position: relative;
    overflow: hidden;
}

/* diagonal line pattern (different from grid/dots) */
.subscribe::before {
    content: "";
    position: absolute;
    inset: 0;


    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);

    background-size: 40px 40px;

    z-index: 1;
}

/* container above pattern */
.subscribe .container {
    position: relative;
    z-index: 2;
}

/* main box */
.subscribe-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;

    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 50px;
    border-radius: 12px;
}

/* text */
.subscribe-title {
    color: #fff;
    font-size: 28px;
    letter-spacing: 2px;
    font-weight: 700;
}

.subscribe-text {
    color: #bbb;
    max-width: 500px;
    margin: 15px 0 25px;
}

/* form */
.subscribe-form {
    display: flex;
    gap: 10px;
    max-width: 450px;
}

.subscribe-form input {
    flex: 1;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: transparent;
    color: #fff;
    border-radius: 5px;
    outline: none;
}

.subscribe-form input::placeholder {
    color: #777;
}

.subscribe-form button {
    padding: 12px 20px;
    background: #C4AD11;
    border: none;
    color: #000;
    font-weight: 600;
    border-radius: 5px;
    transition: 0.3s;
}

.subscribe-form button:hover {
    background: #a8920e;
}

/* right side visual */
.subscribe-visual {
    flex: 1;
    position: relative;
    height: 120px;
}

/* footer base */
.footer {
    background: #ffffff;
    color: #444;
    position: relative;
}

/* subtle top border */
.footer::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #e5e5e5;
}

/* titles */
.footer-title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #111;
    margin-bottom: 15px;
}

.navbar-nav li a {
    font-weight: 700;
    letter-spacing: 2px;
}

/* text */
.footer-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* links */
.footer-links,
.footer-contact {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.footer-links a,
.footer-contact a {
    text-decoration: none;
    color: inherit;
    font-size: 14px;
    transition: 0.3s;
}

/* unify sizing */
.footer-links a,
.footer-contact li,
.footer-text {
    font-size: 14px;
}

.footer-links a:hover {
    color: #C4AD11;
}

/* contact */
.footer-contact li {
    margin-bottom: 8px;
    color: #666;
}

/* bottom bar */
.footer-bottom {
    border-top: 1px solid #eee;
    font-size: 13px;
    color: #777;
}

/* keep gold accent */
.footer-credit {
    color: #C4AD11;
    font-weight: 500;
}

.footer-logo {
    width: 25%;
}


@keyframes moveSignal {
    0% {
        transform: translateX(-100%);
    }

    100% {
        transform: translateX(100%);
    }
}

/* sections */
.section-dark {
    background: #0f0f0f;
    color: #fff;
    position: relative;
}

.section-dark::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
}

.section-light {
    background: #f9f9f9;
}

/* titles */
.section-title {
    font-size: 28px;
    letter-spacing: 2px;
}

.section-title-dark {
    font-size: 28px;
    color: #111;
}

/* accordion */
.service-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    cursor: pointer;
}

.service-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.service-number {
    font-size: 24px;
    color: #C4AD11;
    margin-right: 15px;
    display: none;
}

.service-body {
    display: none;
    margin-top: 15px;
    color: #ccc;
}

.service-item.active .service-body {
    display: block;
}

/* placeholder */
.image-placeholder {
    height: 300px;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* accordion container */
.service-accordion {
    position: relative;
}

/* item */
.service-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px 0;
    transition: 0.3s;
}

/* hover micro-interaction */
.service-item:hover {
    background: rgba(255, 255, 255, 0.02);
}

/* header */
.service-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

/* left grouping */
.service-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

/* number */
.service-number {
    font-size: 24px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.2);
    transition: 0.3s;
}

/* title */
.service-header h3 {
    font-size: 18px;
    letter-spacing: 1px;
    margin: 0;
}

/* toggle icon */
.service-toggle {
    font-size: 22px;
    color: #C4AD11;
    transition: 0.3s;
}

/* hover effects */
.service-item:hover .service-number {
    color: #C4AD11;
}

.service-item:hover .service-toggle {
    transform: rotate(90deg);
}

/* BODY (SMOOTH ANIMATION) */
.service-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.3s ease;
    opacity: 0;
}

/* ACTIVE STATE */
.service-item.active .service-body {
    max-height: 300px;
    /* enough for content */
    opacity: 1;
    margin-top: 15px;
}

/* rotate toggle when open */
.service-item.active .service-toggle {
    transform: rotate(45deg);
}

/* content */
.service-body p {
    color: #ccc;
}

.service-body ul {
    padding-left: 20px;
    color: #aaa;
}



/* BASE HERO (shared across all pages) */
.page-hero {
    position: relative;
    margin-top: 0;
    height: 65vh;
    min-height: 500px;

    display: flex;
    align-items: center;
}

.page-hero {
    animation: zoomBg 4s ease-in-out infinite alternate;
}

/* animation */
@keyframes zoomBg {
    from {
        background-size: 100%;
    }

    to {
        background-size: 110%;
    }
}

/* dark overlay */
.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    z-index: 1;
    pointer-events: none;
    /* border: 20px solid red; */
}

/* grid overlay */
.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);

    background-size: 40px 40px;

    z-index: 2;
    pointer-events: none;
}

/* content above overlays */
.page-hero .container {
    position: relative;
    z-index: 3;
}

.services-hero {
    background: url('../images/electrical-panel-with-fuses-contactors-closeup.jpg') center/cover no-repeat;
}


.about-hero {
    background: url('../images/engineering-team-working-together-conduct-routine-inspections-industry-4-0-plant-producing.jpg') center/cover no-repeat;
}


.training-hero {
    background: url('../images/2150881003.jpg') center/cover no-repeat;
}


.products-hero {
    background: url('../images/img1.png') center/cover no-repeat;
}


/* TEXT BLOCK */
.hero-content {
    max-width: 750px;
}

/* TITLE */
.hero-title {
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

/* SUBTITLE */
.hero-subtitle {
    margin-top: 15px;
    font-size: 18px;
    color: #ccc;
    line-height: 1.6;
}

.hero-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: #C4AD11;
    margin-top: 10px;
}


/* intro */
.about-intro {
    max-width: 800px;
}

/* cards */
.info-card-2 {
    background: #fff;
    border: 1px solid #eee;
    padding: 30px;
    border-radius: 10px;
    height: 100%;
    transition: 0.3s;
}

/* hover micro-interaction */
.hover-lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

/* headings */
.info-heading {
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 10px;
    color: #111;
}

.mission-vision-section {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(135deg, #f7f8fb 0%, #fff 48%, #f2f3f7 100%);
}

.mission-vision-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: linear-gradient(90deg, #171793, #C4AD11);
}

.mission-vision-header {
    max-width: 860px;
    margin-bottom: 32px;
}

.section-eyebrow {
    display: inline-block;
    margin-bottom: 10px;
    color: #C4AD11;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.mission-vision-header p {
    margin: 0;
    color: #5a5a5a;
    font-size: 17px;
    line-height: 1.7;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.mission-vision-card {
    position: relative;
    min-height: 330px;
    padding: 34px;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 18px 45px rgba(18, 18, 18, 0.06);
}

.mission-vision-card::after {
    content: "";
    position: absolute;
    right: -40px;
    bottom: -40px;
    width: 150px;
    height: 150px;
    border: 24px solid rgba(196, 173, 17, 0.12);
    border-radius: 50%;
}

.mission-card {
    background: #111;
    border-color: #232323;
    color: #fff;
}

.mission-vision-icon {
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    border-radius: 8px;
    color: #fff;
    background: #171793;
    font-size: 24px;
}

.mission-card .mission-vision-icon {
    color: #111;
    background: #C4AD11;
}

.mission-vision-card span {
    display: block;
    margin-bottom: 10px;
    color: #C4AD11;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.mission-vision-card h3 {
    position: relative;
    z-index: 1;
    margin-bottom: 18px;
    color: #111;
    font-size: 25px;
    line-height: 1.35;
}

.mission-card h3 {
    color: #fff;
}

.mission-vision-card p {
    position: relative;
    z-index: 1;
    margin: 0;
    color: #555;
    line-height: 1.75;
}

.mission-card p {
    color: #cfcfcf;
}

.mission-proof-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 24px;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}

.mission-proof-item {
    min-height: 170px;
    padding: 26px;
    border-right: 1px solid #e2e2e2;
}

.mission-proof-item:last-child {
    border-right: 0;
}

.mission-proof-item i {
    display: block;
    margin-bottom: 16px;
    color: #171793;
    font-size: 28px;
}

.mission-proof-item strong {
    display: block;
    margin-bottom: 8px;
    color: #111;
    font-size: 16px;
}

.mission-proof-item p {
    margin: 0;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* values grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* value item */
.value-item {
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #ccc;
    font-weight: 500;
    letter-spacing: 1px;
    transition: 0.3s;
}

/* hover effect */
.value-item:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #C4AD11;
    transform: scale(1.03);
}


/* grid */
/* .product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    } */
.product-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.product-card {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    overflow: hidden;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.product-content {
    padding: 20px;
}

/* card */

/* hover micro-interaction */
.product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(196, 173, 17, 0.5);
}

/* image */
.product-image {
    height: 230px;
    padding: 22px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(245, 246, 248, 0.96));
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    max-width: 280px;
    object-fit: contain;
    object-position: center;
    display: block;
    filter: drop-shadow(0 12px 18px rgba(0, 0, 0, 0.16));
}

/* placeholder */
.image-placeholder {
    height: 100%;
    background: #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* content */
/* slight scale on active touch/hover */




/* logo */
.brand-logo {
    height: 44px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.brand-logo img {
    max-width: 180px;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* list */
.product-content ul {
    padding-left: 20px;
    color: #aaa;
    font-size: 14px;
}


.inquiry-form {
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.inquiry-form input,
.inquiry-form textarea {
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    outline: none;
}

.inquiry-form textarea {
    min-height: 120px;
}

/* TRAINING CARD BASE */
.service-item {
    background: rgba(255, 255, 255, 0.02);
    /* border-left: 4px solid #C4AD11; */
    padding: 20px 25px;
    border-radius: 8px;
    margin-bottom: 15px;
    transition: 0.3s;
}

/* HOVER EFFECT */
.service-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

/* HEADER */
.service-header h3 {
    color: #fff;
}

/* META GRID */
.training-meta {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 20px;
    font-size: 14px;
    color: #bbb;
}

/* STRONG LABELS */
.training-meta strong {
    color: #C4AD11;
}

/* TOPICS TITLE */
.service-body h6 {
    color: #C4AD11;
    font-weight: 600;
}

/* LIST */
.service-body ul {
    color: #ccc;
}

/* ACTIVE STATE */
.service-item.active {
    /* border-left: 4px solid #fff; */
    background: rgba(255, 255, 255, 0.06);
}

.training-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.training-card {
    position: relative;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px;
    border-radius: 8px;
    transition: 0.3s;
    height: 100%;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.training-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #C4AD11, rgba(196, 173, 17, 0));
}

.training-card-topline {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    color: #bbb;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.training-card:hover {
    transform: translateY(-6px);
    border-color: #C4AD11;
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.28);
}

.training-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 18px;
}

.training-card-tag {
    color: #C4AD11;
    display: block;
    margin: 14px 0 0;
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 600;
}

.training-card-header h4 {
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
}

.training-card-meta {
    margin: 22px 0;
}

.training-card-meta div {
    background: rgba(196, 173, 17, 0.12);
    border: 1px solid rgba(196, 173, 17, 0.45);
    border-left: 4px solid #C4AD11;
    border-radius: 8px;
    padding: 16px;
}

.training-card-meta span {
    color: #C4AD11;
    display: block;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.4px;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.training-card-meta strong {
    color: #fff;
    display: block;
    font-size: 16px;
    line-height: 1.35;
    margin-top: 4px;
}

.training-session-list {
    display: grid;
    gap: 12px;
    list-style: none;
    margin: 12px 0 0;
    padding: 0;
}

.training-session-list li {
    background: rgba(0, 0, 0, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 12px;
}

.training-session-list li span {
    color: #C4AD11;
    font-size: 11px;
    margin-bottom: 5px;
}

.training-session-list li strong {
    font-size: 15px;
}

.training-session-list li small {
    color: #fff;
    display: block;
    font-size: 14px;
    font-weight: 700;
    margin-top: 4px;
}

.training-session-list li em {
    color: #bbb;
    display: block;
    font-size: 13px;
    font-style: normal;
    margin-top: 6px;
}

.training-card-desc {
    margin: 10px 0;
    color: #cfcfcf;
    font-size: 14px;
    line-height: 1.6;
}

.training-card-list {
    margin-top: 10px;
    padding-left: 0;
    color: #c7c7c7;
    list-style: none;
    font-size: 13px;
}

.training-card-list li {
    position: relative;
    margin-bottom: 8px;
    padding-left: 18px;
}

.training-card-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #C4AD11;
}

.training-card:hover .training-card-header h4 {
    color: #C4AD11;
}

.training-card-section {
    margin-top: 18px;
}

.training-card-section h6 {
    font-size: 13px;
    letter-spacing: 1px;
    color: #C4AD11;
    margin-bottom: 5px;
}

.training-card-footer {
    margin-top: auto;
    padding-top: 18px;
}

/* spacing improvement */
.training-card {
    display: flex;
    flex-direction: column;
}

.training-card-footer .btn-custom {
    width: 100%;
}

.training-booking-modal .modal-content {
    border: 0;
    border-radius: 8px;
    overflow: hidden;
}

.training-booking-modal .modal-header {
    background: #0f0f0f;
    color: #fff;
    border-bottom: 3px solid #C4AD11;
}

.modal-eyebrow {
    color: #C4AD11;
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.booking-layout {
    display: grid;
    grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.4fr);
    gap: 24px;
}

.booking-summary {
    background: #0f0f0f;
    color: #fff;
    border-radius: 8px;
    padding: 24px;
}

.booking-label {
    color: #C4AD11;
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.4px;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.booking-summary h4 {
    font-size: 22px;
    line-height: 1.3;
    margin-bottom: 24px;
}

.booking-facts {
    display: grid;
    gap: 12px;
}

.booking-facts div {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding-top: 12px;
}

.booking-facts span,
.booking-field label {
    display: block;
    color: #777;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.booking-facts strong {
    color: #fff;
    font-size: 14px;
}

.booking-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.booking-field.full,
.booking-submit {
    grid-column: 1 / -1;
}

.booking-field input,
.booking-field textarea {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 6px;
    color: #111;
    font-size: 14px;
    outline: none;
    padding: 12px 14px;
    transition: 0.3s;
}

.booking-field input:focus,
.booking-field textarea:focus {
    border-color: #C4AD11;
    box-shadow: 0 0 0 2px rgba(196, 173, 17, 0.15);
}

.booking-field input[readonly] {
    background: #f6f6f6;
    color: #555;
}

.booking-field textarea {
    min-height: 110px;
    resize: vertical;
}

/* Container */
.fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

/* Base FAB */
.fab {
    width: 54px;
    height: 54px;
    border: 0;
    border-radius: 50%;
    /* PERFECT circle */
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;

    font-size: 18px;
    font-weight: bold;
    text-decoration: none;

    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* MAIN BUTTON */
.fab-main {
    background: #C4AD11;
    color: #000;
    z-index: 2;
}

.fab-main i {
    transition: transform 0.3s ease;
}

/* Hover micro-interaction */
.fab-main:hover {
    transform: scale(1.04);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.22);
}

.fab-container.active .fab-main i {
    transform: rotate(45deg);
}

/* OPTION BUTTONS */
.fab-option {
    position: absolute;
    bottom: 0;
    right: 0;

    opacity: 0;
    pointer-events: none;
    transform: scale(0.5);
}

/* COLORS */
.fab-whatsapp {
    background: #25D366;
    color: white;
}

.fab-email {
    background: #007bff;
    color: white;
}

.fab-call {
    background: #444;
    color: white;
}

/* ACTIVE STATE */
.fab-container.active .fab-option {
    opacity: 1;
    pointer-events: auto;
}

/* ORBIT POSITIONS (NO OVERLAP) */
.fab-container.active .fab-whatsapp {
    transform: translate(-80px, -10px) scale(1);
}

.fab-container.active .fab-email {
    transform: translate(-10px, -80px) scale(1);
}

.fab-container.active .fab-call {
    transform: translate(-70px, -70px) scale(1);
}

/* MICRO-INTERACTIONS ON OPTIONS */
.fab-container.active .fab-whatsapp:hover {
    transform: translate(-80px, -10px) scale(1.04);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}

.fab-container.active .fab-email:hover {
    transform: translate(-10px, -80px) scale(1.04);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}

.fab-container.active .fab-call:hover {
    transform: translate(-70px, -70px) scale(1.04);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}

@media (max-width: 480px) {
    .fab-container {
        right: 18px;
        bottom: 18px;
    }

    .fab {
        width: 50px;
        height: 50px;
        font-size: 16px;
    }

    .fab-container.active .fab-whatsapp {
        transform: translate(-70px, -8px) scale(1);
    }

    .fab-container.active .fab-email {
        transform: translate(-8px, -70px) scale(1);
    }

    .fab-container.active .fab-call {
        transform: translate(-62px, -62px) scale(1);
    }
}

.contact-hero {
    background: url('../images/126745.jpg') center/cover no-repeat;
}

/* FORM */
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 14px 15px;
    border: 1px solid #ddd;
    border-radius: 6px;
    outline: none;
    font-size: 14px;
    transition: 0.3s;
}

.contact-form textarea {
    min-height: 140px;
    resize: none;
}

/* focus interaction */
.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #C4AD11;
    box-shadow: 0 0 0 2px rgba(196, 173, 17, 0.15);
}

/* spacing consistency */
.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #888;
}

/* error state */
.contact-form input.error,
.contact-form textarea.error {
    border-color: #dc3545;
}

/* success state */
.contact-form input.success,
.contact-form textarea.success {
    border-color: #28a745;
}

/* error message */
.error-message {
    font-size: 12px;
    color: #dc3545;
    margin-top: 5px;
}

/* map */
.map-container {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #eee;
}


.social-icon {
    font-size: 25px;
    margin-right: 10px;
}

.social-icon::hover {
    color: blue;
    scale: 1.5;
    z-index: 100000;
}

/* TEAM GRID */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD */
.team-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.team-card:hover {
    transform: translateY(-6px);
    border-color: #C4AD11;
}

/* IMAGE */
.team-image {
    height: 220px;
    overflow: hidden;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* CONTENT */
.team-content {
    padding: 20px;
}

.team-content h4 {
    margin-bottom: 5px;
}

.team-role {
    display: block;
    font-size: 13px;
    color: #C4AD11;
    margin-bottom: 10px;
}

/* meta */
.team-meta {
    font-size: 13px;
    color: #bbb;
    margin-bottom: 10px;
}

/* list */
.team-content ul {
    padding-left: 18px;
    font-size: 13px;
    color: #aaa;
}

/* contact */
.team-content a {
    display: inline-block;
    margin-top: 10px;
    color: #C4AD11;
    text-decoration: none;
    font-size: 13px;
}

/* intro text */
.team-intro {
    margin: 0 auto;
    color: #ccc;
}

.deadline {
    color: #dc3545;
    font-weight: 600;
}

.fee-highlight {
    font-weight: 700;
    color: #000;
    background: #C4AD11;
    padding: 3px 8px;
    border-radius: 4px;
}

.social-profiles {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.social-card {
    flex: 1;
    min-width: 220px;

    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);

    padding: 25px;
    border-radius: 10px;

    text-align: center;
    transition: 0.3s;
}

.social-card i {
    font-size: 30px;
    margin-bottom: 10px;
}

.social-card h5 {
    margin-bottom: 10px;
}

.social-card p {
    font-size: 14px;
    color: #bbb;
    margin-bottom: 15px;
}


.linkedin-card i {
    color: #0077b5;
}

.facebook-card i {
    color: #1877f2;
}

/* HOVER */
.social-card:hover {
    transform: translateY(-5px);
    border-color: #C4AD11;
}


@media (max-width: 768px) {
    .product-card:active {
        transform: scale(0.97);
    }

    .updates-wrapper {
        display: flex;
        overflow-x: auto;
        gap: 15px;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10px;
    }

    .update-card {
        max-width: 100%;
        flex: 0 0 auto;
        scroll-snap-align: start;
    }

    /* hide scrollbar (optional) */
    .updates-wrapper::-webkit-scrollbar {
        display: none;
    }

    .content-block {
        flex-direction: column;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .services-hero {
        height: 60vh;
    }

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

    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-wrapper {
        display: flex !important;
        overflow-x: auto;
        gap: 15px;

        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        padding-bottom: 10px;
    }

    .product-card {
        min-width: 280px;
        max-width: 280px;
        flex: 0 0 auto;

        scroll-snap-align: start;
    }

    .product-wrapper::-webkit-scrollbar {
        display: none;
    }

    .training-meta {
        grid-template-columns: 1fr;
    }

    .training-wrapper {
        grid-template-columns: 1fr;
    }

    .training-card {
        padding: 20px;
    }

    .training-card-header,
    .training-card-topline {
        flex-direction: column;
    }

    .training-card-meta,
    .booking-layout,
    .booking-form {
        grid-template-columns: 1fr;
    }

    .training-card:hover {
        transform: translateY(-6px);
        border-color: #C4AD11;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    }

    .home-training-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .home-training-header h2 {
        font-size: 30px;
    }

    .home-training-layout {
        grid-template-columns: 1fr;
    }

    .home-training-grid {
        grid-template-columns: 1fr;
    }

    .home-training-card {
        grid-template-columns: 1fr;
        align-items: stretch;
    }

    .home-training-card,
    .home-training-empty,
    .home-training-panel {
        padding: 22px;
    }

    .home-training-meta {
        grid-template-columns: 1fr;
    }

    .home-training-link {
        width: 100%;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    /* TEAM GRID */


    @keyframes zoomBg {
        from {
            background-size: 200%;
        }

        to {
            background-size: 190%;
        }
    }
    .subscribe-box {
        flex-direction: column;
    }

    .social-profiles {
        flex-direction: column;
    }


}

/* SERVICES PAGE */
.services-hero-eyebrow,
.services-kicker {
    display: inline-block;
    color: #C4AD11;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.services-hero-eyebrow {
    margin-bottom: 12px;
}

.services-hero .btn-custom,
.services-cta .btn-custom {
    gap: 10px;
}

.services-assurance {
    background: #fff;
    border-bottom: 1px solid #e8e8e8;
}

.services-assurance-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.assurance-item {
    min-height: 94px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 20px;
    color: #222;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-align: center;
    text-transform: uppercase;
    border-right: 1px solid #e8e8e8;
}

.assurance-item:last-child {
    border-right: 0;
}

.assurance-item i {
    color: #C4AD11;
    font-size: 22px;
}

.services-catalog {
    position: relative;
    overflow: hidden;
    background: #0f0f0f;
}

.services-catalog::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
}

.services-catalog .container {
    position: relative;
    z-index: 1;
}

.services-section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 34px;
}

.services-section-heading .services-kicker {
    margin-bottom: 10px;
}

.services-section-heading > p {
    max-width: 520px;
    margin: 0;
    color: #aaa;
    line-height: 1.7;
}

.services-section-heading-dark > p {
    color: #666;
}

.services-catalog .service-accordion {
    display: grid;
    gap: 12px;
}

.services-catalog .service-item {
    position: relative;
    margin: 0;
    padding: 0;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.025);
    transform: none;
}

.services-catalog .service-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(196, 173, 17, 0.5);
    transform: none;
}

.services-catalog .service-item.active {
    background: rgba(255, 255, 255, 0.055);
    border-color: rgba(196, 173, 17, 0.55);
}

.services-catalog .service-header {
    width: 100%;
    min-height: 92px;
    padding: 20px 24px;
    color: #fff;
    background: transparent;
    border: 0;
    text-align: left;
}

.services-catalog .service-header:focus-visible {
    outline: 2px solid #C4AD11;
    outline-offset: -3px;
}

.services-catalog .service-left {
    min-width: 0;
    gap: 18px;
}

.services-catalog .service-number {
    position: static;
    flex: 0 0 auto;
    display: inline-block;
    margin: 0;
    color: rgba(255, 255, 255, 0.3);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
}

.services-catalog .service-icon {
    width: 46px;
    height: 46px;
    flex: 0 0 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #C4AD11;
    font-size: 20px;
    border: 1px solid rgba(196, 173, 17, 0.4);
    border-radius: 6px;
    background: rgba(196, 173, 17, 0.06);
}

.service-heading-copy {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.services-catalog .service-category {
    color: #9d9d9d;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.services-catalog .service-name {
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
}

.services-catalog .service-toggle {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 50%;
}

.services-catalog .service-item.active .service-number {
    color: #C4AD11;
}

.services-catalog .service-body {
    display: block;
    max-height: 0;
    margin: 0;
    opacity: 0;
}

.services-catalog .service-item.active .service-body {
    max-height: 520px;
    margin: 0;
    opacity: 1;
}

.service-body-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr);
    gap: 34px;
    align-items: stretch;
    padding: 0 24px 24px 104px;
}

.service-body-copy {
    align-self: center;
    padding: 8px 0;
}

.services-catalog .service-body p {
    max-width: 680px;
    margin-bottom: 18px;
    color: #d0d0d0;
    line-height: 1.7;
}

.services-catalog .service-body ul {
    display: grid;
    gap: 8px;
    margin: 0 0 20px;
    padding: 0;
    color: #c8c8c8;
    list-style: none;
}

.services-catalog .service-body li {
    position: relative;
    padding-left: 20px;
}

.services-catalog .service-body li::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 0;
    width: 7px;
    height: 2px;
    background: #C4AD11;
}

.service-body-grid img {
    width: 100%;
    height: 210px;
    display: block;
    object-fit: cover;
    border-radius: 6px;
}

.service-capabilities {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.service-capabilities span {
    padding: 7px 10px;
    color: #d5d5d5;
    font-size: 12px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    border-radius: 4px;
}

.service-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #C4AD11;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-decoration: none;
    text-transform: uppercase;
}

.service-contact-link i {
    transition: transform 0.2s ease;
}

.service-contact-link:hover {
    color: #fff;
}

.service-contact-link:hover i {
    transform: translateX(4px);
}

.services-process {
    background: #fff;
}

.services-process-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    border-top: 1px solid #dedede;
    border-bottom: 1px solid #dedede;
}

.process-step {
    position: relative;
    min-height: 170px;
    padding: 28px 22px;
    border-right: 1px solid #dedede;
}

.process-step:last-child {
    border-right: 0;
}

.process-step > span {
    position: absolute;
    top: 18px;
    right: 18px;
    color: #b9b9b9;
    font-size: 12px;
    font-weight: 600;
}

.process-step i {
    display: block;
    margin: 20px 0 24px;
    color: #171793;
    font-size: 26px;
}

.process-step h3 {
    margin: 0;
    color: #191919;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.process-step::after {
    content: "";
    position: absolute;
    right: -5px;
    top: 50%;
    z-index: 1;
    width: 9px;
    height: 9px;
    background: #C4AD11;
    transform: translateY(-50%) rotate(45deg);
}

.process-step:last-child::after {
    display: none;
}

.sentinel-showcase {
    background: #f4f5f7;
}

.sentinel-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 60px;
    align-items: center;
}

.sentinel-visual {
    position: relative;
    min-height: 520px;
}

.sentinel-visual > img {
    width: 100%;
    height: 520px;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.sentinel-visual::before {
    content: "";
    position: absolute;
    top: -14px;
    left: -14px;
    width: 90px;
    height: 90px;
    border-top: 3px solid #C4AD11;
    border-left: 3px solid #C4AD11;
    pointer-events: none;
}

.sentinel-visual-label {
    position: absolute;
    right: 18px;
    bottom: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 16px;
    color: #fff;
    background: rgba(15, 15, 15, 0.92);
    border-left: 3px solid #C4AD11;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.sentinel-visual-label i {
    color: #C4AD11;
    font-size: 18px;
}

.sentinel-content .services-kicker {
    margin-bottom: 10px;
}

.sentinel-content .section-title-dark {
    margin-bottom: 18px;
}

.sentinel-intro {
    margin-bottom: 26px;
    color: #5f5f5f;
    line-height: 1.7;
}

.sentinel-feature-list {
    display: grid;
    gap: 10px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.sentinel-feature-list li {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 14px;
    align-items: start;
    padding: 13px 0;
    border-bottom: 1px solid #dedede;
    color: #555;
    line-height: 1.55;
}

.sentinel-feature-list i {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #171793;
    background: #fff;
    border: 1px solid #e1e1e1;
    border-radius: 5px;
    font-size: 17px;
}

.sentinel-feature-list strong {
    color: #1a1a1a;
}

.services-cta {
    position: relative;
    overflow: hidden;
    padding: 58px 0;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(10, 10, 10, 0.96), rgba(10, 10, 10, 0.76)),
        url("../images/electrical-panel-with-fuses-contactors-closeup.jpg") center/cover no-repeat;
}

.services-cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.services-cta h2 {
    margin: 8px 0 10px;
    font-size: 30px;
    font-weight: 600;
}

.services-cta p {
    margin: 0;
    color: #c5c5c5;
}

.services-cta .btn-custom {
    flex: 0 0 auto;
}

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

    .assurance-item:nth-child(2) {
        border-right: 0;
    }

    .assurance-item:nth-child(-n + 2) {
        border-bottom: 1px solid #e8e8e8;
    }

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

    .process-step:nth-child(3) {
        border-right: 0;
    }

    .process-step:nth-child(3)::after {
        display: none;
    }

    .process-step:nth-child(-n + 3) {
        border-bottom: 1px solid #dedede;
    }

    .sentinel-layout {
        gap: 36px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 144px;
    }

    .client-contact-strip .container {
        align-items: flex-start;
        flex-direction: column;
        gap: 8px;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .client-contact-details,
    .client-hours {
        gap: 8px 14px;
    }

    .client-contact-details a,
    .client-hours span {
        white-space: normal;
    }

    .hero {
        min-height: calc(100vh - 144px);
    }

    .mission-vision-grid,
    .mission-proof-grid {
        grid-template-columns: 1fr;
    }

    .mission-vision-card {
        min-height: auto;
        padding: 26px;
    }

    .mission-vision-card h3 {
        font-size: 21px;
    }

    .mission-proof-grid {
        border-radius: 8px;
    }

    .mission-proof-item {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid #e2e2e2;
    }

    .mission-proof-item:last-child {
        border-bottom: 0;
    }

    .services-section-heading,
    .services-cta-content {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px;
    }

    .services-catalog .service-header {
        min-height: 82px;
        padding: 16px;
    }

    .services-catalog .service-left {
        gap: 12px;
    }

    .services-catalog .service-number {
        display: none;
    }

    .services-catalog .service-icon {
        width: 40px;
        height: 40px;
        flex-basis: 40px;
    }

    .services-catalog .service-name {
        font-size: 15px;
    }

    .service-body-grid {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 0 16px 16px 68px;
    }

    .service-body-grid img {
        height: 180px;
    }

    .services-catalog .service-item.active .service-body {
        max-height: 700px;
    }

    .services-process-grid {
        grid-template-columns: 1fr;
        border: 1px solid #dedede;
    }

    .process-step {
        min-height: auto;
        display: grid;
        grid-template-columns: 44px 1fr auto;
        align-items: center;
        gap: 14px;
        padding: 20px;
        border-right: 0;
        border-bottom: 1px solid #dedede;
    }

    .process-step:nth-child(3) {
        border-right: 0;
    }

    .process-step:last-child {
        border-bottom: 0;
    }

    .process-step i {
        margin: 0;
    }

    .process-step > span {
        position: static;
        grid-column: 3;
        grid-row: 1;
    }

    .process-step h3 {
        grid-column: 2;
        grid-row: 1;
    }

    .process-step::after {
        display: none;
    }

    .sentinel-layout {
        grid-template-columns: 1fr;
    }

    .sentinel-visual,
    .sentinel-visual > img {
        min-height: 360px;
        height: 360px;
    }

    .services-cta .btn-custom {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .services-assurance-grid {
        grid-template-columns: 1fr;
    }

    .assurance-item,
    .assurance-item:nth-child(2) {
        min-height: 74px;
        justify-content: flex-start;
        border-right: 0;
        border-bottom: 1px solid #e8e8e8;
        text-align: left;
    }

    .assurance-item:last-child {
        border-bottom: 0;
    }

    .services-catalog .service-category {
        display: none;
    }

    .services-catalog .service-toggle {
        width: 32px;
        height: 32px;
        flex-basis: 32px;
    }

    .service-body-grid {
        padding-left: 16px;
    }

    .sentinel-visual-label {
        right: 12px;
        bottom: 12px;
        left: 12px;
    }
}
