/* ==========================================================================
   GLOBAL & CORE STYLES (Shared across all pages)
   ========================================================================== */

/* Section: Reset & Normalization */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

/* Section: Global CSS Variables */
:root {
    --bg: #0b1120;
    --bg-2: #111827;
    --bg-3: #0f172a;
    --surface: #1a2235;
    --line: rgba(255, 255, 255, 0.08);
    --line-dark: #e5e7eb;
    --orange: #e4572e;
    --orange-2: #f26a3f;
    --white: #ffffff;
    --gray: #cbd5e1;
    --muted: #94a3b8;
    --ink: #0b1120;
    --ink-2: #1f2937;
    --paper: #ffffff;
    --paper-2: #f7f8fa;
    --paper-3: #eef0f4;
    --shadow: 0 30px 60px -20px rgba(11, 17, 32, 0.25);
}

/* Section: Base HTML & Body Styles */
html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    font-size: 100%;
    /* Base 16px */
}







body {
    font-family: "Inter", system-ui, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--ink-2);
    background: var(--paper);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

/* Section: Layout Utilities */
.container {
    max-width: 1900px;
    /* margin: 0 5%; */
    padding: 0 70px;
}

.section {
    padding: 60px 0;
}

.section--narrow {
    padding: 60px 0;
}

.section--alt {
    background: var(--paper-2);
}

.section--dark {
    background: var(--bg);
    color: #fff;
}

.section--dark h2,
.section--dark h3,
.section--dark h4,
.section--dark h5 {
    color: #fff;
}

.section--dark p {
    color: var(--gray);
}

.section__head {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.section__head--center {
    justify-content: center;
    text-align: center;
}

/* Split Component */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 44px;
    padding: 0px 100px;
    align-items: start;
}


.split__media img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.split__badge {
    position: absolute;
    left: -24px;
    bottom: 32px;
    background: var(--orange);
    color: #fff;
    padding: 22px 28px;
    box-shadow: var(--shadow);
}

.split__badge strong {
    display: block;
    font-family: "Montserrat";
    font-size: 1.4rem;
    letter-spacing: 0.05em;
}

.split__badge span {
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.9;
}



/* .split__body { */
/* Let content flow naturally */
/* } */

/* Section: Typography */
h1,
h2,
h3,
h4 {
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.15;
    letter-spacing: -0.01em;
}


h1 {
    font-size: clamp(1.8rem, 3.2vw, 2.4rem);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.015em;
}

h2 {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    text-transform: uppercase;
    letter-spacing: 0.005em;
}

h3 {
    font-size: clamp(1.15rem, 1.8vw, 1.35rem);
    text-transform: uppercase;
    letter-spacing: 0.01em;
}

h4 {
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

h5 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--paper);
}

p {
    font-size: clamp(0.9rem, 1vw, 1.0rem);
    color: #475569;
}

.lead {
    font-size: 1.05rem;
    color: #475569;
    margin: 1rem 0 1.5rem;
}

.accent {
    color: var(--orange);
}

/* Section: Eyebrow Element */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: "Montserrat", sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    color: var(--orange);
    margin-bottom: 18px;
    /* max-width: %; */
}

.eyebrow__bar {
    width: 32px;
    height: 2px;
    background: var(--orange);
    display: inline-block;
}

.eyebrow--light {
    color: #fbbf99;
}

/* Section: Buttons & CTAs */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.25s ease;
    border-radius: 2px;
}

.btn i {
    font-size: 0.75rem;
    transition: transform 0.25s ease;
}

.btn:hover i {
    transform: translateX(4px);
}

.btn--primary {
    background: var(--orange);
    color: #fff;
}

.btn--primary:hover {
    background: #cf4824;
}

.btn--outline {
    border-color: rgba(255, 255, 255, 0.6);
    color: #fff;
    background: transparent;
}

.btn--outline:hover {
    background: #fff;
    color: var(--ink);
}

.btn--dark {
    background: var(--ink);
    color: #fff;
    border-radius: 20px;
}

.btn--dark:hover {
    background: #1f2937;
}

.btn--ghost {
    border-color: rgba(255, 255, 255, 0.25);
    color: #fff;
    border-radius: 20px;
    background: transparent;
}

.btn--ghost:hover {
    border-color: var(--orange);
    color: var(--orange);
}

.btn--block {
    width: 100%;
    justify-content: center;
}

/* Hero Button Variants */
.btn--hero-primary,
.btn--hero-outline {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
    box-sizing: border-box;
}

.btn--hero-primary i,
.btn--hero-outline i {
    font-size: 0.75rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn--hero-primary:hover i,
.btn--hero-outline:hover i {
    transform: translateX(5px);
}

.btn--hero-primary {
    background: linear-gradient(135deg, rgb(119, 119, 119) 0%, rgb(168, 168, 168) 100%);
    color: #ffffff;
    border: 1px solid transparent;
    box-shadow: 0 4px 14px rgba(232, 232, 232, 0.374);
}

.btn--hero-primary::after {
    content: "";
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.3) 50%,
            rgba(255, 255, 255, 0) 100%);
    transform: skewX(-25deg);
    z-index: -1;
    transition: none;
}

.btn--hero-primary:hover::after {
    left: 150%;
    transition: left 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn--hero-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.428);
    border-color: rgba(255, 255, 255, 0.1);
}

.btn--hero-primary:active {
    transform: translateY(0);
}

.btn--hero-outline {
    background: transparent;
    color: #ffffff;
    border: 1.5px solid rgba(255, 255, 255, 0.35);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.btn--hero-outline::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.08);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.btn--hero-outline:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.btn--hero-outline:hover {
    border-color: rgba(255, 255, 255, 0.9);
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(255, 254, 254, 0.15);
    transform: translateY(-2px);
}

.btn--hero-outline:active {
    transform: translateY(0);
}

/* Section: Common Header Layout Styles */
.topbar {
    background: #070d1a;
    color: #94a3b8;
    font-size: 0.78rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.topbar__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 24px;
}

.topbar__left,
.topbar__right {
    display: flex;
    gap: 24px;
    align-items: center;
}

.topbar i {
    color: var(--orange);
    margin-right: 6px;
}

.topbar__link {
    color: #cbd5e1;
    transition: color 0.2s;
}

.topbar__link:hover {
    color: var(--orange);
}

/* Section: Navigation Bar Component */
.nav {
    background: transparent;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    padding: 0px 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: box-shadow 0.3s, background 0.3s;
}

.nav.is-scrolled {
    background: var(--bg);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 24px;
    padding: 1% 0px;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    flex-shrink: 0;
}

.brand img {
    max-height: 38px;
    width: 16vw;
    object-fit: contain;
    display: block;
}

.brand__mark {
    width: 42px;
    height: 42px;
    background: var(--orange);
    display: grid;
    place-items: center;
    font-family: "Montserrat";
    font-weight: 800;
    font-size: 1.2rem;
    color: #fff;
    border-radius: 2px;
}

.brand__text strong {
    display: block;
    font-family: "Montserrat";
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.06em;
    color: #fff;
}

.brand__text small {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #94a3b8;
    margin-top: 2px;
}

.brand--light {
    color: #fff;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 2px;
}

.nav__link {
    position: relative;
    padding: 14px 14px;
    font-family: "Montserrat";
    font-weight: 600;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #cbd5e1;
    transition: color 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    text-align: center;
}


.nav__link i {
    font-size: 0.65rem;
}

.nav__link:hover,
.nav__link.active {
    color: #fff;
}

.nav__link::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 0px;
    height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s;
}

.nav__link:hover::after,
.nav__link.active::after {
    transform: scaleX(1);
}

.nav__item {
    position: relative;
}

.nav__item:hover .mega {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

.nav__actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.nav__cta {
    padding: 8px 16px;
    font-size: 0.75rem;
    border-radius: 20px;
    white-space: nowrap;
}

/* Nav Dropdown Drop Container Styles */
.drop-container {
    position: relative;
}

.nav__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    min-width: 200px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 100;
    display: flex;
    flex-direction: column;
}

.nav__dropdown a {
    position: relative;
    font-size: 16px;
    color: var(--white);
    padding: 12px 24px;
}

.nav__dropdown a::after {
    content: "";
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 6px;
    height: 2px;
    background: var(--orange);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s;
}

.nav__dropdown a:hover::after,
.nav__dropdown a.active::after {
    transform: scaleX(1);
}

.nav__dropdown a:hover,
.nav__dropdown a.active {
    color: #fff;
}

.drop-container:hover .nav__dropdown {
    opacity: 1;
    visibility: visible;
}

/* Section: Mega Menu Component */
.mega {
    position: absolute;
    top: 100%;
    left: 130%;
    transform: translate(-50%, 15px);
    width: min(1200px, 87vw);
    /* height: min(800px, 80vh); */
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.3s cubic-bezier(0.4, 0, 0.2, 1),
        visibility 0.3s;
    z-index: 200;
    overflow: hidden;
}

.mega__columns {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 22px;
    padding: 18px 40px 10px 40px;
}

.mega__column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mega__category {
    display: flex;
    flex-direction: column;
}

.mega__category-title {
    display: inline-block;
    align-self: flex-start;
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.10em;
    color: var(--white);
    padding-bottom: 8px;
    margin-bottom: 5px;
    position: relative;
    transition: color 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.mega__category-title::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: rgba(228, 87, 46, 0.25);
    transition: background 0.8s ease, box-shadow 0.3s ease;
}

.mega__category:hover .mega__category-title {
    color: var(--orange-2);
}

.mega__category:hover .mega__category-title::after {
    background: var(--orange);
    box-shadow: 0 0 8px rgba(228, 87, 46, 0.8);
}

.mega__subproducts {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    height: auto;
    padding-bottom: 0;
}

.mega__category:hover .mega__subproducts,
.mega__category.is-expanded .mega__subproducts {
    grid-template-rows: 1fr;
}

.mega__subproducts-inner {
    min-height: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
    padding-top: 2px;
    padding-bottom: 0px;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1),
        transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.mega__category:hover .mega__subproducts-inner,
.mega__category.is-expanded .mega__subproducts-inner {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.35s cubic-bezier(0.4, 0, 0.2, 1) 0.05s,
        transform 0.35s cubic-bezier(0.4, 0, 0.2, 1) 0.05s;
}

.mega__subproducts-inner a {
    display: grid;
    grid-template-columns: 25px 1fr;
    grid-template-rows: 22px;
    align-items: center;
    padding: 6px 0px 3px 0px;
    font-size: 11px;
    color: var(--gray);
    transition: color 0.2s ease, padding-left 0.2s ease;
}

.mega__subproducts-inner a::before {
    content: "›";
    font-size: 0.75rem;
    color: var(--orange);
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.mega__subproducts-inner a:hover {
    color: var(--orange-2);
    padding-left: 4px;
}

.mega__subproducts-inner a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.mega__cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 40px;
    background: rgba(7, 13, 26, 0.85);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.mega__cta small {
    font-size: 0.58rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--orange-2);
}

.mega__cta h5 {
    color: #fff;
    margin-top: 3px;
    letter-spacing: 0.01em;
    text-transform: none;
    font-size: 0.82rem;
    opacity: 0.9;
}

.btn--mega-download {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #ffffff;
    background: var(--orange);
    border: 1px solid var(--orange);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(228, 87, 46, 0.2);
}

.btn--mega-download:hover {
    background: #cf4824;
    border-color: #cf4824;
    box-shadow: 0 4px 16px rgba(228, 87, 46, 0.45);
    transform: translateY(-1px);
}

.btn--mega-download i {
    font-size: 0.65rem;
    transition: transform 0.25s ease;
}

.btn--mega-download:hover i {
    transform: translateX(3px);
}

.nav__burger {
    display: none;
    background: transparent;
    border: 0;
    cursor: pointer;
    width: 36px;
    height: 36px;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
}

.nav__burger span {
    display: block;
    width: 24px;
    height: 2px;
    background: #fff;
    margin: 0 auto;
    transition: 0.3s;
}

.nav.is-open {
    background: var(--bg) !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3) !important;
}

.nav.is-open .nav__burger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav.is-open .nav__burger span:nth-child(2) {
    opacity: 0;
}

.nav.is-open .nav__burger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Section: WhatsApp Floating Widget */
.chat-toggler {
    position: fixed;
    left: 0;
    bottom: 0px;
    font-size: 16px;
    padding: 0;
    border: none;
    cursor: pointer;
    background: transparent;
}

.chat-icon {
    position: fixed;
    right: 70px;
    bottom: 70px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 1000;
}

/* Section: Common Footer Component */
.footer {
    position: relative;
    background-image: linear-gradient(to bottom, rgba(7, 13, 26, 0.82) 0%, rgba(7, 13, 26, 0.87) 100%), url('../images/resources/footer_bg.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #94a3b8;
    padding-top: 80px;
    padding-bottom: 40px;
    border-top: 3px solid var(--orange);
}

.footer__logo-container {
    width: 30%;
    margin: 0 auto;
    margin-bottom: 2rem;
}

.footer__title {
    text-align: center;
    color: var(--paper);
    /* font-size: 2.5rem; */
    font-weight: 700;
    margin-bottom: 50px;
    font-family: 'Montserrat', sans-serif;
    text-transform: capitalize;
}

.footer__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    padding-bottom: 45px;
}

.footer__col {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer__col-title {
    color: var(--orange);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Montserrat', sans-serif;
}

.footer__col-title i {
    font-size: 1.25rem;
    width: 20px;
    text-align: center;
}

.footer__col p {
    font-size: 0.92rem;
    line-height: 1.6;
    color: #cbd5e1;
    margin: 0;
    text-align: center;
}

.footer__col p a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s;
    display: inline;
    padding: 0;
}

.footer__col p a:hover {
    color: var(--orange);
}

.socials-clean {
    display: flex;
    gap: 20px;
    margin-top: 5px;
}

.socials-clean a {
    color: #fff;
    font-size: 1.3rem;
    transition: color 0.2s, transform 0.2s;
    display: inline-flex;
    padding: 0;
}

.socials-clean a:hover {
    color: var(--orange);
    transform: translateY(-2px);
}

.footer__divider {
    border: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 30px 0;
}

.footer__quicklinks-bar {
    text-align: center;
    color: rgba(255, 255, 255, 0.15);
    font-size: 0.95rem;
    margin-bottom: 30px;
    font-weight: 500;
}

.footer__quicklinks-bar a {
    display: inline-block;
    color: #cbd5e1;
    margin: 0 10px;
    text-decoration: none;
    transition: color 0.2s;
    padding: 4px 0;
}

.footer__quicklinks-bar a:hover {
    color: var(--orange);
}

.footer__bottom-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
    color: #94a3b8;
    border-top: none;
    padding: 0;
}

.footer__bottom-links {
    color: rgba(255, 255, 255, 0.15);
}

.footer__bottom-links a {
    display: inline-block;
    color: #94a3b8;
    margin: 0 8px;
    text-decoration: none;
    transition: color 0.2s;
    padding: 0;
}

.footer__bottom-links a:hover {
    color: var(--orange);
}

.footer__copyright {
    color: #94a3b8;
    text-align: center;
}

/* Section: Reveal On Scroll Component */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-in {
    opacity: 1;
    transform: none;
}


/* ==========================================================================
   PAGE: INDEX (HOME) Specific Styles
   ========================================================================== */

/* Section: Hero Slider Block */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    overflow: hidden;
    background: #000;
}

.hero__slides {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

.hero__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.05) translateZ(0);
    backface-visibility: hidden;
    transition: opacity 1.4s ease, transform 8s ease;
}

.hero__slide.is-active {
    opacity: 1;
    transform: scale(1) translateZ(0);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,
            rgba(11, 17, 32, 0.92) 0%,
            rgba(11, 17, 32, 0.7) 50%,
            rgba(11, 17, 32, 0.55) 100%);
    z-index: 2;
}

.hero__content {
    position: relative;
    z-index: 3;
    /* padding: 100px 24px 80px; */
    /* max-width: 1280px; */
    margin: 0 auto;
    width: 100%;
}

.hero__content .eyebrow {
    color: #fbbf99;
}

.hero h1,
.hero h2 {
    color: #fff;
    max-width: 900px;
}

.hero p {
    color: #cbd5e1;
    max-width: 570px;
    margin-top: 24px;
    font-size: 1.08rem;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 36px;
}

.hero__meta {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(7, 13, 26, 0.55);
    backdrop-filter: blur(6px);
}

.hero__meta-inner {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 24px;
}

.hero__meta-inner div {
    display: flex;
    flex-direction: column;
}

.hero__meta-inner strong {
    font-family: "Montserrat";
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: 0.02em;
}

.hero__meta-inner span {
    font-size: 0.72rem;
    color: #94a3b8;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-top: 4px;
}

.hero__progress {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 3;
}

.hero__progress span {
    display: block;
    height: 100%;
    width: 0;
    background: var(--orange);
    transition: width 0.2s linear;
}

/* Section: Why Choose Us (Why Component) */
.why-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.why {
    padding: 36px 28px;
    background: #fff;
    border-top: 3px solid var(--orange);
    position: relative;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.04);
}

.why__num {
    font-family: "Montserrat";
    font-size: 2.4rem;
    font-weight: 800;
    color: #e2e8f0;
    display: block;
    margin-bottom: 10px;
    line-height: 1;
}

/* Section: Industries Infinite Scroll Track */
.industries-section {
    width: 100%;
    padding: 90px 0;
    background: #07111f;
    overflow: hidden;
}

.industries-heading {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.industries-heading span {
    color: #ff7b00;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 14px;
    display: block;
    margin-bottom: 15px;
}

.industries-heading h2 {
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    color: #fff;
    margin-bottom: 18px;
    font-weight: 700;
}

.industries-heading p {
    max-width: 750px;
    margin: auto;
    color: #b9c2d0;
    line-height: 1.8;
    font-size: 16px;
}

.industries-slider {
    width: 100%;
    z-index: 4;
    overflow: visible;
    position: relative;
    padding: 15px 0;
}

.industries-slider::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 180px;
    mask-image: linear-gradient(90deg, black 0%, rgba(0, 0, 0, 0.8) 30%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, black 0%, rgba(0, 0, 0, 0.8) 30%, transparent 100%);
    z-index: 5;
    pointer-events: none;
}

.industries-slider::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 180px;
    mask-image: linear-gradient(270deg, black 0%, rgba(0, 0, 0, 0.8) 30%, transparent 100%);
    -webkit-mask-image: linear-gradient(270deg, black 0%, rgba(0, 0, 0, 0.8) 30%, transparent 100%);
    z-index: 5;
    pointer-events: none;
}

.industries-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: industryScroll 25s linear infinite;
}

.industries-track:hover {
    animation-play-state: paused;
}

.industry-card {
    width: 250px;
    height: 350px;
    border-radius: 28px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(12px);
    transition: 0.5s ease;
}

.industry-card:hover {
    transform: translateY(-10px);
}

.industry-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.7s ease;
}

.industry-card:hover img {
    transform: scale(1.12);
}

.industry-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(0, 0, 0, 0.95),
            rgba(0, 0, 0, 0.2),
            transparent);
}

.industry-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 35px 28px;
    z-index: 2;
}

.industry-content h3 {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.3;
}

@keyframes industryScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-370px * 5));
    }
}

/* Section: Home Page Industries Grid (No Slider) */
.home-industries-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    /* margin-top: 40px; */
    margin: 40px auto 0px auto;
    width: 100%;
    box-sizing: border-box;
}

.home-industry-card {
    position: relative;
    height: 380px;
    width: 100%;
    max-width: 340px;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    /* Fix for Webkit/Safari border-radius rendering bug on scale/transition */
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease;
}

.home-industry-card-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    border-radius: inherit;
    /* Inherit border-radius to prevent leakage */
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.home-industry-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 13, 26, 0) 40%, rgba(7, 13, 26, 0.9) 100%);
    border-radius: inherit;
    /* Inherit border-radius to prevent leakage */
    z-index: 2;
    transition: opacity 0.4s ease;
}

.home-industry-card-content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 3;
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
    width: 100%;
    box-sizing: border-box;
}

.home-industry-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.35rem;
    color: #ffffff;
    font-weight: 700;
    line-height: 1.3;
    margin: 0;
    transition: color 0.3s ease;
}

.home-industry-card-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.home-industry-card-btn i {
    color: #ffffff;
    font-size: 1.15rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    margin: 0;
    vertical-align: 0;
    transform: rotate(-45deg);
    /* Point standard arrow up-right */
    transition: transform 0.3s ease;
}

/* Hover effects */
.home-industry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(255, 255, 255, 0.15);
}

.home-industry-card:hover .home-industry-card-bg {
    transform: scale(1.08);
}

.home-industry-card:hover .home-industry-card-title {
    color: var(--orange);
}

.home-industry-card:hover .home-industry-card-btn {
    background-color: var(--orange);
    border-color: var(--orange);
}

.home-industry-card:hover .home-industry-card-btn i {
    transform: rotate(-45deg) translate(3px, 0);
}




/* Section: Projects Layout (Index Page Only) */
.proj-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px;
    gap: 18px;
}

.proj {
    position: relative;
    background-size: cover;
    background-position: center;
    overflow: hidden;
    color: #fff;
    display: flex;
    align-items: flex-end;
    transition: transform 0.4s;
}

.proj::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(7, 13, 26, 0.92));
    transition: opacity 0.3s;
}

.proj:hover {
    transform: scale(1.01);
}

.proj--lg {
    grid-column: span 2;
    grid-row: span 2;
}

.proj__cap {
    position: relative;
    padding: 24px;
    width: 100%;
}

.proj__cap small {
    font-size: 0.7rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--orange);
    display: block;
    margin-bottom: 6px;
}

.proj__cap h4 {
    color: #fff;
    font-size: 1rem;
}

/* Section: Certifications & Core Values (Shared Component) */
.cert-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.cert {
    padding: 36px 24px;
    background: #fff;
    border: 1px solid var(--paper-3);
    text-align: center;
    transition: all 0.3s;
}

.cert:hover {
    border-color: var(--orange);
    box-shadow: var(--shadow);
    transform: translateY(-4px);
}

.cert i {
    font-size: 2.2rem;
    color: var(--orange);
    margin-bottom: 14px;
}

.cert p {
    font-size: 0.85rem;
}

/* Section: Clients Logo Scroll */
.clients__title {
    text-align: center;
    font-family: "Montserrat";
    font-size: 0.75rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: #64748b;
    margin-bottom: 30px;
}

.clients {
    overflow: hidden;
    mask: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}

.clients__track {
    display: flex;
    gap: 10px;
    animation: scroll 40s linear infinite;
    white-space: nowrap;
}

.clients__track div {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 180px;
    min-height: 220px;
    font-family: "Montserrat";
    color: #94a3b8;
    opacity: 0.7;
}

@keyframes scroll {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}

/* Section: CTA Forms Section & Inputs */
.cta {
    position: relative;
    color: #fff;
    padding: 110px 0;
    overflow: hidden;
}

.cta__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: grayscale(0.6) brightness(0.35);
}

.cta__bg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,
            rgba(11, 17, 32, 0.95),
            rgba(11, 17, 32, 0.75));
}

.cta__grid {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.cta__intro h3 {
    color: #fff;
}

.cta__intro p {
    color: var(--gray);
    margin: 16px 0 28px;
}

.cta__info {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 14px;
    color: #cbd5e1;
    font-size: 0.95rem;
}

.cta__info i {
    color: var(--orange);
    width: 22px;
}

.cta__form {
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: #fff;
    padding: 40px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    border-radius: 12px;
}

.cta__form h3 {
    color: #fff;
    margin-bottom: 24px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.cta__form .row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.cta__form input,
.cta__form select,
.cta__form textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    font-family: inherit;
    font-size: 0.95rem;
    color: #ffffff;
    transition: border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 16px;
    box-sizing: border-box;
}

.inputsections {
    border-radius: 8px;
    /* Sleek modern rounded design */
}

.cta__form input::placeholder,
.cta__form textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.cta__form select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='rgba(255,255,255,0.6)' stroke-width='2.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19.5 8.25l-7.5 7.5-7.5-7.5'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    background-size: 16px;
    padding-right: 48px;
    cursor: pointer;
}

.cta__form select option {
    background: #111827;
    color: #ffffff;
    padding: 12px;
    font-size: 0.95rem;
}

.cta__form select option[value=""] {
    color: rgba(255, 255, 255, 0.4);
}

.cta__form .row input {
    margin-bottom: 0;
}

.cta__form input:focus,
.cta__form select:focus,
.cta__form textarea:focus {
    outline: 0;
    border-color: var(--orange);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 14px rgba(228, 87, 46, 0.3);
}


/* section globle network section  */

.btn-network {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    border: 1px solid black;
    color: black;
    cursor: pointer;
    transition: all 0.25s ease;
    border-radius: 2px;
}


/* ==========================================================================
   PAGE: ABOUT US Specific Styles
   ========================================================================== */

/* Section: Checklist Utility */
.check {
    list-style: none;
    margin: 8px 0 28px;
}

.check li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    /* padding: 4px 0; */
    color: #334155;
}

.check i {
    color: var(--orange);
    margin-top: 5px;
}

/* Stats Element */
.stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 24px;
}

.stats strong {
    font-family: "Montserrat";
    font-size: 2rem;
    color: var(--ink);
    display: block;
}

.stats span {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #64748b;
}


/* ==========================================================================
   PAGE: TECHNICAL SERVICES Specific Styles
   ========================================================================== */

/* Section: Common Services Base Grid */
.serv-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.serv {
    background: #111827;
    overflow: hidden;
    transition: transform 0.35s;
}

.serv:hover {
    transform: translateY(-6px);
}

.serv__img {
    height: 200px;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s;
}

.serv:hover .serv__img {
    transform: scale(1.06);
}

.serv__body {
    padding: 26px;
}

.serv__body h4 {
    color: var(--white);
}

.serv__body p {
    font-size: 0.9rem;
    margin-top: 8px;
    color: var(--gray);
}

.btn-cnt {
    display: flex;
    justify-content: center;
    padding-top: 30px;
}

/* Section: Alternate Services Page Stack Layout */
.service-alternate-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 60px;
}

.service-alternate-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.service-alternate-row:nth-child(even) .service-alternate-img {
    order: 2;
}

.service-alternate-row:nth-child(even) .service-alternate-body {
    order: 1;
}

.service-alternate-img {
    height: 250px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    box-shadow: var(--shadow);
    transition: transform 0.5s ease;
}

.service-alternate-row:hover .service-alternate-img {
    transform: scale(1.02);
}

.service-alternate-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-alternate-body h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--ink);
    letter-spacing: -0.01em;
}

.service-alternate-body p {
    color: #475569;
    font-size: 1.05rem;
    line-height: 1.75;
    margin-bottom: 24px;
}


/* ==========================================================================
   PAGE: INDUSTRIES WE SERVE Specific Styles
   ========================================================================== */

/* Section: Common Industries Static Grid */
.ind-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.ind {
    padding: 36px 24px;
    border: 1px solid var(--paper-3);
    text-align: center;
    background: #fff;
    transition: all 0.3s;
}

.ind:hover {
    border-color: var(--orange);
    transform: translateY(-4px);
    box-shadow: var(--shadow);
}

.ind i {
    font-size: 2rem;
    color: var(--orange);
    margin-bottom: 16px;
}

.ind h4 {
    font-size: 0.95rem;
    margin-bottom: 6px;
}

.ind p {
    font-size: 0.82rem;
    color: #64748b;
}

/* Section: New Industry Page 2-3 Column Horizontal Stack Grid */
.industry-stack-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.industry-stack-card {
    display: flex;
    background: #fff;
    border: 1px solid var(--paper-3);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    height: 120px;
}

.industry-stack-card:hover {
    transform: translateY(-5px);
    border-color: var(--orange);
    box-shadow: var(--shadow);
}

.industry-stack-img {
    width: 140px;
    height: 100%;
    background-size: cover;
    background-position: center;
    flex-shrink: 0;
}

.industry-stack-content {
    padding: 20px;
    display: flex;
    align-items: center;
    flex: 1;
}

.industry-stack-title {
    font-family: "Montserrat", sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--ink);
    line-height: 1.3;
    text-transform: uppercase;
}





/* ==========================================================================
   PAGE: PRODUCTS & PRODUCT DETAILS Specific Styles
   ========================================================================== */

/* Section: Products Grid Component */
.prod-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}





/* ==========================================================================
   Category Card (Home Page specific)
   ========================================================================== */
.category-card {
    position: relative;
    height: 300px;
    background: #111827;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        border-color 0.4s ease,
        box-shadow 0.4s ease;
    text-decoration: none;
}

.category-card::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--orange-2));
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 4;
}

.category-card:hover {
    transform: translateY(-8px);
    border-color: rgba(228, 87, 46, 0.35);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(228, 87, 46, 0.08);
}

.category-card:hover::before {
    width: 100%;
}

.category-card__img {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.category-card:hover .category-card__img {
    transform: scale(1.1);
}

.category-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(11, 17, 32, 0.7) 0%, rgba(11, 17, 32, 0.4) 45%, rgba(11, 17, 32, 0.2) 100%);
    transition: background 0.4s ease;
    z-index: 2;
}

.category-card:hover .category-card__overlay {
    background: linear-gradient(to top, rgba(11, 17, 32, 0.9) 0%, rgba(11, 17, 32, 0.7) 60%, rgba(11, 17, 32, 0.5) 100%);
}

.category-card__content {
    position: relative;
    z-index: 3;
    padding: 24px;
}

.category-card__title {
    font-size: 1.15rem;
    color: #fff;
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    transition: color 0.3s ease;
}

.category-card:hover .category-card__title {
    color: var(--orange-2);
}

.category-card__hover-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease, margin-top 0.4s ease;
    margin-top: 0;
}

.category-card:hover .category-card__hover-content {
    max-height: 200px;
    opacity: 1;
    margin-top: 12px;
}

.category-card__hover-content p {
    color: #cbd5e1;
    font-size: 0.85rem;
    margin: 0 0 16px 0;
    line-height: 1.5;
}

.category-card__link {
    font-family: "Montserrat";
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--orange);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.category-card:hover .category-card__link {
    gap: 12px;
}

.category-card__link i {
    font-size: 0.65rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover .category-card__link i {
    transform: translateX(3px);
}





/* ==========================================================================
   Prod Card (Original styles for Products Page)
   ========================================================================== */
.prod {
    background: #111827;
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
        border-color 0.4s ease,
        box-shadow 0.4s ease;
}

.prod::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--orange-2));
    transition: width 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.prod:hover {
    transform: translateY(-8px);
    border-color: rgba(228, 87, 46, 0.35);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4), 0 0 20px rgba(228, 87, 46, 0.08);
}

.prod:hover::before {
    width: 100%;
}

.prod__img {
    height: 190px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}





.prod__img::before {
    content: "";
    position: absolute;
    inset: 0;
    background: inherit;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

.prod:hover .prod__img::before {
    transform: scale(1.08);
}

.prod__img::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(11, 17, 32, 0.7));
    transition: opacity 0.4s ease;
    z-index: 1;
}

.prod:hover .prod__img::after {
    opacity: 0.6;
}

.prod__body {
    padding: 22px 24px;
}

.prod__body h4 {
    font-size: 0.95rem;
    color: rgba(217, 232, 255, 0.822);
    transition: color 0.3s ease;
}

.prod:hover h4 {
    color: var(--orange-2);
}

.prod__body p {
    color: #94a3b8;
    font-size: 0.85rem;
    margin: 8px 0 16px;
    line-height: 1.55;
}

.prod__link {
    font-family: "Montserrat";
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--orange);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}

.prod:hover .prod__link {
    gap: 12px;
}

.prod__link i {
    font-size: 0.65rem;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.prod:hover .prod__link i {
    transform: translateX(5px);
}


/* ==========================================================================
   PAGE: GLOBAL NETWORK Specific Styles
   ========================================================================== */

.network-section {
    position: relative;
    padding: 90px 0;
    background: #ffffff;
    overflow: hidden;
}

.network-heading {
    margin-bottom: 30px;
}

.section-subtitle {
    display: inline-block;
    color: rgb(209, 126, 27);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section-title {
    color: #000000;
    font-size: clamp(1.3rem, 2.2vw, 1.6rem);
    line-height: 1.2;
    font-weight: 800;
    margin-bottom: 25px;
}

.network-heading p {
    color: #353535;
    font-size: 17px;
    line-height: 1.9;
}

.network-wrapper {
    display: grid;
    grid-template-columns: 1.5fr 0.8fr;
    gap: 60px;
    align-items: center;
}

.network-wrapper-national {
    display: grid;
    grid-template-columns: 0.8fr 1.5fr;
    gap: 60px;
    align-items: center;
    margin-top: 100px;
}

.network-wrapper-center {
    display: block !important;
    max-width: 1000px;
    margin: 0 auto;
}

.map-box {
    position: relative;
    width: 100%;
    /* max-width: 750px;
    margin: 0 auto; */
}

.map-box img {
    width: 100%;
    height: 100%;
    opacity: 0.9;
    filter: brightness(0.8);
}

.map-img {
    display: flex;
    justify-content: center;
    align-items: center;
}

.map-box-national {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    /* max-width: 550px;
    margin: 0 auto; */
    overflow: hidden;
    height: 50vh;
}

.map-box-national img {
    opacity: 0.9;
    filter: brightness(0.8);
}

.image_india {
    width: 100%;
    height: 100%;
}

.map-point,
.map-point-national {
    position: absolute;
    width: 6px;
    height: 6px;
    background: #e4572e;
    border-radius: 50%;
    cursor: pointer;
    z-index: 2;
    transform: translate(-50%, -50%);
}

.map-point::before,
.map-point-national::before {
    content: '';
    position: absolute;
    width: 26px;
    height: 26px;
    border: 2px solid #e4572e;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s infinite;
}

.map-point::after,
.map-point-national::after {
    content: '';
    position: absolute;
    width: 40px;
    height: 40px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: transparent;
}

.network-card h4 {
    color: black;
}

.map {
    width: 100%;
    height: 500px;
}

/* Map Points Positions */
.india {
    top: 55%;
    left: 64%;
}

.uae {
    top: 56%;
    left: 59%;
}

.usa {
    top: 50%;
    left: 27%;
}

.southafrica {
    top: 78%;
    left: 53%;
}

.southamerica {
    top: 73%;
    left: 34%;
}

.europe {
    top: 40%;
    left: 50%;
}

.russia {
    top: 38%;
    left: 67%;
}

.southeastasia {
    top: 61%;
    left: 71%;
}

.australia {
    top: 80%;
    left: 80%;
}

/* national map locations  */

.ahmedabad {
    top: 48%;
    left: 34%;
}

.mumbai {
    top: 60%;
    left: 35%;
}

.delhi {
    top: 25%;
    left: 43%;
}

.chennai {
    top: 82%;
    left: 48%;
}

.kolkata {
    top: 50%;
    left: 62%;
}

/* Tooltip on Map Points */
.map-tooltip {
    position: absolute;
    min-width: 140px;
    max-width: 220px;
    background: #0b1120;
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 14px;
    border-radius: 6px;
    pointer-events: none;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 10;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.map-tooltip.active {
    opacity: 1;
    visibility: visible;
}

.map-tooltip h4 {
    color: #fff;
    font-size: 13px;
    margin-bottom: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.map-tooltip p {
    color: #cbd5e1;
    font-size: 11px;
    line-height: 1.4;
}

.network-content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.network_heading {
    padding: 20px 10px;
    text-align: center;
}

.network-card {
    display: flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    border: none;
    padding: 3px 0;
    border-radius: 0;
}

.network-card h4 {
    color: #000000;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0;
}

.network-card div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.network-card p {
    display: none !important;
}

.network-card::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: var(--orange);
    font-size: 1.15rem;
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.8);
        opacity: 0;
    }
}


/* ==========================================================================
   EXTRACTED INLINE CLASSES (Refactored styles from all HTML pages)
   ========================================================================== */

/* Section: Navbar Overrides */
.nav__chevron {
    font-size: 0.8rem;
    margin-left: 4px;
}

/* Section: Standard Inner Page Banner */
.page-banner-section {
    padding-top: 160px;
    padding-bottom: 100px;
    position: relative;
    overflow: hidden;
}

.page-banner-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: 0;
}

.page-banner-container {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-top: 20px;
}

.page-banner-title {
    color: #fff;
    margin-bottom: 20px;
}

.page-banner-lead {
    color: #cbd5e1;
    max-width: 700px;
    margin: 0 auto;
}

/* Section: Standard Section Intro Text */
.section-intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    color: #475569;
    font-size: 1.1rem;
}

/* Section: About Us Page Extracted Inline Classes */
.overview-check-list {
    margin-top: 1.5rem;
    list-style: none;
    padding: 0;
}

.overview-check-item {
    margin-bottom: 8px;
    color: #475569;
}

.overview-check-icon {
    color: var(--orange);
    margin-right: 8px;
}

.leadership-quote {
    font-style: italic;
    border-left: 3px solid var(--orange);
    padding-left: 20px;
    margin: 2rem 0;
}

.leadership-name-block {
    margin-top: 2rem;
}

.leadership-name {
    margin-bottom: 4px;
}

.leadership-role {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--orange);
}

.leadership-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.leadership-image {
    max-width: 400px;
    border-radius: 4px;
    filter: grayscale(100%);
    transition: filter 0.4s ease;
}

.leadership-image:hover {
    filter: grayscale(0%);
}

.mission-vision-grid {
    margin-bottom: 60px;
}

.mission-vision-card {
    background: var(--surface);
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    transition: border-color 0.3s ease;
}

.mission-vision-icon {
    font-size: 2rem;
    color: var(--orange);
    margin-bottom: 20px;
}

.mission-vision-title {
    color: #fff;
}

.mission-vision-desc {
    color: #94a3b8;
}

.values-head-margin {
    margin-top: 80px;
}

.value-card-dark {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.plant-locations-btn {
    margin-top: 20px;
}

.manufacturing-image-container {
    overflow: hidden;
}

.manufacturing-image {
    transition: transform 10s linear;
}

.manufacturing-image:hover {
    transform: scale(1.1);
}

.rd-image-container {
    position: relative;
}

.rd-image {
    filter: brightness(0.8);
}

.certifications-intro-text {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    color: #475569;
}

.certification-card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.certification-card-hover:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

/* Section: Services Page Extracted Inline Classes */
.serv-grid--services-page {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}


.tech-support-banner {
    margin-top: 40px;
    background: var(--ink);
    color: #fff;
    padding: 40px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.tech-support-content {
    flex: 1;
    min-width: 300px;
}

.tech-support-title {
    color: var(--orange);
    margin-bottom: 10px;
}

.tech-support-desc {
    color: #cbd5e1;
    font-size: 0.95rem;
}

/* Staggered Reveal Animation Delays */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

.delay-500 {
    transition-delay: 0.5s;
}

.delay-600 {
    transition-delay: 0.6s;
}

/* Section: Careers Page Extracted Inline Classes */
.careers-image {
    border-radius: 4px;
}

.careers-benefit-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.careers-benefit-card {
    text-align: center;
}

.careers-benefit-icon {
    font-size: 2rem;
    color: var(--orange);
    margin-bottom: 15px;
}

.careers-benefit-title {
    margin-bottom: 8px;
}

.careers-benefit-desc {
    font-size: 0.9rem;
}

.careers-timeline {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 40px auto 0;
}

.careers-timeline-item {
    display: flex;
    background: var(--paper-2);
    border: 1px solid var(--line-dark);
    border-radius: 4px;
    overflow: hidden;
}

.careers-timeline-item:hover {
    box-shadow: 0px 0px 6px var(--orange);
    transition: all 0.3s ease;
    transform: translateY(-5px);
}

.careers-timeline-body {
    padding: 25px;
}

.careers-timeline-title {
    margin-bottom: 5px;
}

.careers-timeline-desc {
    font-size: 0.95rem;
}

.careers-positions-section {
    padding-bottom: 0;
}

.careers-positions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.careers-position-card {
    background: var(--paper-2);
    border: 1px solid var(--line-dark);
    padding: 30px;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.careers-position-type {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--orange);
    font-weight: 700;
    margin-bottom: 8px;
    display: block;
}

.careers-position-title {
    margin-bottom: 12px;
}

.careers-position-meta {
    display: flex;
    gap: 15px;
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 20px;
}

.careers-position-meta i {
    color: var(--orange);
    margin-right: 6px;
}

/* Section: Contact Page Extracted Inline Classes */
.contact-info-list {
    margin-top: 30px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-info-icon {
    color: var(--orange);
    font-size: 1.5rem;
    margin-right: 20px;
    margin-top: 5px;
}

.contact-info-title {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-info-text {
    color: #475569;
    margin: 0;
}

.contact-email-link {
    color: var(--ink);
}

.contact-textarea-spacing {
    margin-bottom: 25px;
}

.contact-map-section {
    padding-top: 0;
}

.contact-map-container {
    width: 100%;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.contact-map-iframe {
    border: 0;
}

.contact-hubs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.contact-hub-card {
    background: var(--surface);
    border: 1px solid var(--line-dark);
    padding: 30px;
    border-radius: 4px;
}

.contact-hub-title {
    color: var(--orange);
    margin-bottom: 10px;
}

.contact-hub-text {
    color: #475569;
    font-size: 0.95rem;
    margin-bottom: 15px;
}

.contact-hub-text--no-margin {
    color: #475569;
    font-size: 0.95rem;
    margin: 0;
}

/* Section: Products Page Extracted Inline Classes */
.prod__body--hoverable {
    border-bottom: 3px solid transparent;
    transition: border-color 0.3s;
}

.prod:hover .prod__body--hoverable {
    border-color: var(--orange);
}

.category-filter {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    width: 100%;
    flex-wrap: wrap;
    align-items: center;
    justify-content: end;
    padding: 20px 20px;
}

.category-filter button {
    padding: 10px 20px;
    border: 1px solid var(--line-dark);
    border-radius: 30px;
    background: var(--surface);
    color: rgba(231, 233, 255, 0.924);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.category-filter button:hover,
.category-filter button.active-cat {
    border-color: var(--orange);
    color: var(--orange);
}

.products-featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.products-featured-card {
    border: 1px solid var(--line-dark);
    padding: 30px;
    border-radius: 4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.products-featured-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
}

.products-featured-card h4 {
    margin-bottom: 15px;
    color: var(--orange);
}

.products-featured-card p {
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.products-featured-card a {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--ink);
}

.cert-grid--products-page {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.cert--center {
    text-align: center;
}

.cert-icon--large {
    font-size: 2rem;
    color: var(--orange);
    margin-bottom: 15px;
}

.cert-desc {
    font-size: 0.9rem;
}

.products-utility-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 20px;
}

.products-utility-icon {
    color: var(--orange);
    font-size: 0.8rem;
    margin-right: 8px;
}

.products-explore-btn {
    margin-top: 30px;
}

.section--ink-bg {
    background: var(--ink);
}

.download-catalogue-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    background: var(--surface);
    padding: 40px 60px;
    gap: 20px;
    margin: 0px 18px;
    border-radius: 8px;
    border-left: 4px solid var(--orange);
}

.download-catalogue-content {
    flex: 1;
    min-width: 300px;
}

.download-catalogue-title {
    color: #fff;
    margin-bottom: 10px;
}

.download-catalogue-desc {
    color: #94a3b8;
    margin: 0;
}

.download-catalogue-action {
    margin-top: 20px;
}

.btn--download-padding {
    padding: 12px 24px;
}

/* Section: Extracted Classes for Remaining Pages */

/* Product Details Page */
.prod-details-banner {
    padding-top: 150px;
    padding-bottom: 80px;
    text-align: center;
}

.prod-details-content-container {
    min-height: 40vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.prod-details-placeholder-text {
    text-align: center;
    font-size: 1.25rem;
}

/* Global Presence */
.global-page-banner {
    padding-top: 160px;
    padding-bottom: 80px;
    text-align: center;
    position: relative;
    background-image: linear-gradient(rgba(11, 17, 32, 0.82), rgba(11, 17, 32, 0.82)), url("../images/resources/world_map.webp");
    background-size: cover;
    background-position: center;
}

.global-page-banner h1 {
    color: #fff;
}

/* Careers Page Form Group */
.careers-form-group {
    margin-bottom: 20px;
}

.careers-file-label {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: #475569;
    font-weight: 600;
}

.careers-file-input {
    padding-top: 15px;
}

/* Contact Page Details */
.contact-details-list {
    margin-top: 30px;
}

.contact-details-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.contact-details-icon {
    color: var(--orange);
    font-size: 1.5rem;
    margin-right: 20px;
    margin-top: 5px;
}

.contact-details-label {
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-details-text {
    color: #475569;
    margin: 0;
}

.contact-details-link {
    color: var(--ink);
}

.contact-textarea-margin {
    margin-bottom: 25px;
}

.contact-map-section {
    padding-top: 0;
}

.contact-map-container {
    width: 100%;
    height: 450px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.contact-map-iframe {
    border: 0;
}


/* ==========================================================================
   RESPONSIVE MEDIA QUERIES (Preserves exact precedence overrides)
   ========================================================================== */















@keyframes industryScrollMobile {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-310px * 5));
    }
}

/* Ultra-Wide Scale-Up Breakpoints */




.custom-select {
    position: relative;
    width: 100%;
    z-index: 10;
    max-width: 500px;
    margin: 0;
    font-family: inherit;
}

.custom-select-trigger {
    display: flex;
    align-items: center;
    z-index: 1;
    justify-content: space-between;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: black;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.custom-select-trigger:hover,
.custom-select.open .custom-select-trigger {
    border-color: var(--orange);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: 0 0 15px rgba(255, 87, 34, 0.2);
}

.custom-select-trigger i {
    font-size: 14px;
    color: var(--orange);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-select.open .custom-select-trigger i {
    transform: rotate(180deg);
}

.custom-select-options {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    background: #111827;
    /* deep rich color */
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05);
    max-height: 250px;
    overflow-y: auto;
    z-index: 11;
}

/* Custom Scrollbar for options */
.custom-select-options::-webkit-scrollbar {
    width: 6px;
}

.custom-select-options::-webkit-scrollbar-track {
    background: #111827;
}

.custom-select-options::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
}

.custom-select-options::-webkit-scrollbar-thumb:hover {
    background: var(--orange);
}

.custom-select.open .custom-select-options {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.custom-select-option {
    padding: 10px 18px;
    color: #cbd5e1;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
}

.custom-select-option:last-child {
    border-bottom: none;
}

.custom-select-option:hover {
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    padding-left: 30px;
}

.custom-select-option.selected {
    background: rgba(255, 87, 34, 0.1);
    color: var(--orange);
    font-weight: 600;
}

/* Unified Product Card Styling */
.prod--unified {
    display: block;
    height: 100%;
}

.prod__img--unified {
    height: 100%;
    min-height: 180px;
    /* Made the card 70px smaller than previous 250px */
}

/* Add overlay to unified product images */
.prod__img--unified:not(.prod__img--view-more)::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.35);
    /* Subtle premium dark overlay */
    transition: background 0.3s ease;
    z-index: 1;
}

.prod:hover .prod__img--unified:not(.prod__img--view-more)::before {
    background: rgba(15, 23, 42, 0.15);
    /* Slightly lighter on hover */
}

.prod__img--view-more {
    background: #1e293b;
    /* Solid dark background instead of image */
}

.prod__overlay {
    position: absolute;
    left: 0;
    right: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    bottom: 0;
    padding: 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95), transparent);
}

.prod__overlay h4 {
    margin: 0;
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
}

.prod__overlay--view-more {
    top: 0;
    bottom: 0;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: none;
}

.prod__overlay--view-more h4 {
    font-size: 1.3rem;
    color: var(--orange);
}

.prod__link--view-more {
    margin-top: 15px;
}

/* =========================================
   DOWNLOAD MODAL STYLES
========================================= */
.download-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 17, 32, 0.85);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.download-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.download-modal {
    background: #111827;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 40px;
    width: 90%;
    max-width: 500px;
    position: relative;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.download-modal-overlay.active .download-modal {
    transform: translateY(0);
}

.download-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.05);
    border: none;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.download-modal-close:hover {
    background: var(--orange);
    color: #fff;
}

.download-modal h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #fff;
}

.download-modal p {
    color: #94a3b8;
    margin-bottom: 25px;
    font-size: 0.95rem;
}

.download-form .form-group {
    margin-bottom: 16px;
    width: 100%;
}

.download-form .form-group-row {
    display: flex;
    gap: 16px;
}

.download-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #cbd5e1;
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.download-form input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 6px;
    color: #fff;
    font-family: inherit;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.download-form input:focus {
    outline: none;
    border-color: var(--orange);
    background: rgba(255, 255, 255, 0.06);
}

.download-success {
    display: none;
    text-align: center;
    padding: 30px 0;
}

.download-success i {
    font-size: 3rem;
    color: var(--orange);
    margin-bottom: 20px;
}

.download-success h4 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 10px;
}

.download-success p {
    color: #94a3b8;
    margin-bottom: 0;
}

/* ==========================================================================
   Product Category Carousel Styles
   ========================================================================== */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    background: rgba(0, 0, 0, 0.314);
    border: 1px solid rgba(0, 0, 0, 0.552);
    color: rgb(255, 255, 255);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
    transition: 0.3s ease;
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 0px;
}

.next-btn {
    right: 0px;
}

@media (min-width: 1024px) {
    .prev-btn {
        left: 20px;
    }

    .next-btn {
        right: 20px;
    }
}

.carousel-item {
    position: absolute;
    left: 50%;
    top: 0;
    width: 250px;
    height: 350px;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s ease, z-index 0.6s;
    transform-origin: center center;
    display: block;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.carousel-item .industry-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(0deg, rgba(16, 21, 34, 0.7) 0%, rgba(16, 21, 34, 0.3) 50%, rgba(16, 21, 34, 0.1) 100%); */
    z-index: 2;
}

.carousel-item .industry-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px;
    z-index: 3;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.carousel-item h3 {
    color: white;
    font-size: 18px;
    margin: 0;
    font-weight: 600;
}

/* Video Cards */
.video-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}


.video-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid #e2e8f0;
}

.video-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 280px;
    background-color: var(--dark-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.video-card:hover .video-thumbnail img {
    opacity: 0.8;
    transform: scale(1.05);
}

.play-btn {
    width: 70px;
    height: 70px;
    background: var(--orange);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    position: relative;
    z-index: 2;
    transition: transform 0.3s ease, background 0.3s ease;
    box-shadow: 0 5px 15px rgba(228, 87, 46, 0.4);
}

.video-card:hover .play-btn {
    transform: scale(1.1);
    background: #fff;
    color: var(--orange);
}

.video-content {
    padding: 30px;
    text-align: center;
}

.video-title {
    font-size: 1.3rem;
    color: var(--dark-blue);
    margin-bottom: 15px;
    font-weight: 700;
}

.video-desc {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* 2-Column Video Layout */
.video-card-grid--2col {
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
}



.video-thumbnail-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.video-play-overlay {
    position: relative;
    z-index: 2;
}

/* Testimonials Marquee */
.testimonials-marquee-wrapper {
    overflow: hidden;
    width: 100%;
    padding: 20px 0;
    position: relative;
}

.testimonials-marquee-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: scroll-marquee 25s linear infinite;
}

.testimonials-marquee-track:hover {
    animation-play-state: paused;
}

.testimonial-item {
    width: 450px;
    flex-shrink: 0;
    background: #ffffff;
    border-radius: 12px;
    padding: 28px 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #e2e8f0;
    position: relative;
}

.testimonial-icon {
    font-size: 1.5rem;
    color: var(--orange);
    opacity: 0.2;
    position: absolute;
    top: 20px;
    right: 20px;
}

.testimonial-text {
    font-size: 0.92rem;
    line-height: 1.6;
    color: #475569;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-author {
    font-weight: 700;
    color: var(--dark-blue);
    font-size: 0.9rem;
}



@keyframes scroll-marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 10px));
    }
}



/* Image Card Component (Group Companies) */
.image-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.image-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    display: block;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-color: var(--dark-blue);
    text-decoration: none;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.image-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(13, 20, 36, 0.1) 0%, rgba(13, 20, 36, 0.9) 100%);
    transition: opacity 0.4s ease;
}

.image-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--orange);
    opacity: 0;
    mix-blend-mode: multiply;
    transition: opacity 0.4s ease;
}

.image-card__content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px;
    z-index: 2;
    transform: translateY(0);
    transition: transform 0.4s ease;
}

.image-card__icon {
    width: 50px;
    height: 50px;
    background: var(--orange);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-bottom: 20px;
    transform: scale(0.9);
    transition: transform 0.4s ease, background 0.4s ease;
}

.image-card__title {
    color: #ffffff;
    font-size: 1.5rem;
    margin-bottom: 0;
    font-weight: 600;
    transition: margin-bottom 0.4s ease;
}

.image-card__desc {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.5;
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, opacity 0.4s ease, margin-top 0.4s ease;
    margin-top: 0;
}

/* Hover Effects */
.image-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.image-card:hover::before {
    opacity: 0.9;
}

.image-card:hover::after {
    opacity: 0.4;
}

.image-card:hover .image-card__content {
    transform: translateY(0);
}

.image-card:hover .image-card__icon {
    transform: scale(1);
    background: #fff;
    color: var(--orange);
}

.image-card:hover .image-card__desc {
    opacity: 1;
    max-height: 150px;
    margin-top: 10px;
}

/* Benefit Cards */
.benefit-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    border: 1px solid #e2e8f0;
    height: 100%;
}

.benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--orange);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: rgba(228, 62, 43, 0.1);
    color: var(--orange);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
    transition: background 0.4s ease, color 0.4s ease;
}

.benefit-card:hover .benefit-icon {
    background: var(--orange);
    color: #fff;
}

.benefit-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-blue);
    margin: 0;
}

/* Premium Why Cards (News Page) */
.premium-why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
}

.premium-why-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 22px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border-bottom: 4px solid transparent;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.premium-why-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(228, 87, 46, 0.03) 0%, rgba(255, 255, 255, 0) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.premium-why-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    border-bottom-color: var(--orange);
}

.premium-why-card:hover::before {
    opacity: 1;
}

.premium-why-icon,
.p-why-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(228, 87, 46, 0.1);
    color: var(--orange);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    z-index: 1;
}

.premium-why-card:hover .premium-why-icon,
.premium-why-card:hover .p-why-icon {
    background-color: var(--orange);
    color: #ffffff;
    transform: rotateY(180deg);
}

.p-why-content {
    z-index: 1;
}

.premium-why-title,
.p-why-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 8px;
    line-height: 1.4;
    transition: color 0.3s ease;
    z-index: 1;
}

.premium-why-card:hover .premium-why-title,
.premium-why-card:hover .p-why-content h4 {
    color: var(--orange);
}

.premium-why-desc,
.p-why-content p {
    color: #64748b;
    font-size: 0.86rem;
    line-height: 1.6;
    margin-bottom: 0;
    z-index: 1;
}

/* News Cards (Image-based) */
.news-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 40px;
}



.news-card {
    background: var(--paper);
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease, border-color 0.4s ease;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--orange);
}

.news-card__img-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.news-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.news-card:hover .news-card__img {
    transform: scale(1.08);
}

.news-card__content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-card__category {
    display: inline-block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--orange);
    margin-bottom: 12px;
    font-weight: 700;
}

.news-card__title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 15px;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.news-card:hover .news-card__title {
    color: var(--orange);
}

.news-card__desc {
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Key Benefits List Component (Services Page) */
.benefit-list-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 40px;
    margin-top: 35px;
}


.benefit-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 4px 0;
    transition: transform 0.25s ease;
}

.benefit-list-item:hover {
    transform: translateX(5px);
}

.benefit-tick {
    color: var(--orange);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.benefit-text {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--ink-2);
    margin: 0;
    line-height: 1.4;
}

/* =========================================
   JOURNEY CAROUSEL (History Timeline)
========================================= */
.journey-wrapper {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 40px auto;
}

.journey-carousel {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
    padding: 15px 0;
}

.journey-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease-in-out;
    height: 100%;
}

.journey-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.journey-nav-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 2px solid var(--orange);
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    color: var(--orange);
}

.journey-nav-btn.next-btn {
    background: var(--orange);
    color: #fff;
}

.journey-nav-btn.prev-btn:hover {
    background: var(--orange);
    color: #fff;
}

.journey-nav-btn.next-btn:hover {
    background: transparent;
    color: var(--orange);
}

.journey-slide {
    height: 100%;
    border-radius: 16px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.journey-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.journey-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.8) 40%, rgba(15, 23, 42, 0.2) 100%);
}

.journey-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 30px 25px;
    text-align: left;
}

.journey-header {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.journey-year {
    color: var(--orange);
    font-size: 2.2rem;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.1;
}

.journey-title {
    font-size: 1.1rem;
    line-height: 1.3;
    color: #fff;
    margin-bottom: 0;
    min-height: 2.86rem;
}

.journey-desc {
    color: #cbd5e1;
    font-size: 1.2rem;
    line-height: 1.5;
    margin: 0;

}

/* Journey Card Hover Text Effect */
.journey-desc-wrapper {
    max-height: 0;
    opacity: 0;
    overflow-y: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    margin-top: 0;
}

.journey-slide:hover .journey-desc-wrapper,
.journey-slide.is-expanded .journey-desc-wrapper {
    max-height: 220px;
    opacity: 1;
    margin-top: 10px;
    overflow-y: auto;
}

/* Custom Scrollbar for Journey Desc Wrapper */
.journey-desc-wrapper::-webkit-scrollbar {
    width: 4px;
}

.journey-desc-wrapper::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 2px;
}

.journey-desc-wrapper::-webkit-scrollbar-thumb {
    background: rgba(228, 87, 46, 0.4);
    border-radius: 2px;
}

.journey-desc-wrapper::-webkit-scrollbar-thumb:hover {
    background: var(--orange);
}

.journey-desc-wrapper {
    scrollbar-width: thin;
    scrollbar-color: rgba(228, 87, 46, 0.4) rgba(255, 255, 255, 0.03);
}

/* CORE VALUES GRID */
.core-values-grid,
.core-values-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.core-value-card {
    padding: 25px 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    backdrop-filter: blur(10px);
}

.core-value-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    border-color: var(--orange);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.core-value-icon {
    font-size: 2rem;
    color: var(--orange);
    margin-bottom: 15px;
    background: rgba(228, 87, 46, 0.1);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.core-value-card:hover .core-value-icon {
    transform: scale(1.1);
}

.core-value-title {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.core-value-desc {
    color: #94a3b8;
    font-size: 0.85rem;
    line-height: 1.6;
    margin: 0;
}



/* ==========================================================================
   PRELOADER OVERLAY STYLES
   ========================================================================== */
body:has(#preloader:not(.fade-out)) {
    overflow: hidden;
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0d1424;
    /* Premium dark blue matching theme */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 999999;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
}

.preloader-logo {
    max-width: 220px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(228, 87, 46, 0.2));
    animation: preloader-pulse 2s infinite ease-in-out;
}

.preloader-spinner {
    width: 45px;
    height: 45px;
    border: 3px solid rgba(228, 87, 46, 0.15);
    border-top-color: #e4572e;
    /* brand orange */
    border-radius: 50%;
    animation: preloader-spin 1s infinite linear;
}

@keyframes preloader-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes preloader-pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.9;
    }

    50% {
        transform: scale(1.05);
        opacity: 1;
    }
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

/* ==========================================================================
   PAGE: SPECIALIZED EQUIPMENT Specific Styles
   ========================================================================== */
.specialized-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

@media (max-width: 991px) {
    .specialized-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .specialized-grid {
        grid-template-columns: 1fr;
    }
}

/* Specific details page styling */
.spec-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
    font-size: 0.95rem;
    /* color: #cbd5e1; */
}

.spec-table th,
.spec-table td {
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
}

.spec-table th {
    background-color: rgba(228, 87, 46, 0.1);
    color: var(--orange);
    font-weight: 700;
}

.spec-table tr:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.02);
}


/* Section: Markets We Serve Bullet List */
.markets-bullet-list {
    margin-top: 25px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px 15px;
    font-family: 'Montserrat', sans-serif;
    font-size: 1.05rem;
    color: #cbd5e1;
    font-weight: 500;
}

.bullet-dot {
    color: var(--orange);
    font-weight: 900;
}

/* Section: Mission & Vision */
.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    width: 100%;
}

.mission-vision-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    border: 1px solid var(--paper-3);
    display: flex;
    gap: 24px;
    align-items: start;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mission-vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
    border-color: var(--orange);
}

.mv-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(228, 87, 46, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mv-icon i {
    font-size: 1.8rem;
    color: var(--orange);
}

.mv-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.mv-content h3 {
    font-size: 1.8rem;
    margin: 8px 0 16px 0;
    color: var(--ink);
}

.mv-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: #475569;
    margin: 0;
}

/* Mobile Network List (Tick list) */
.mobile-network-list {
    display: none;
    /* Hidden on desktop by default */
    flex-direction: column;
    gap: 8px;
    margin-top: 30px;
    padding: 0px 80px;
    width: 100%;
}

.network-list-item {
    display: flex;
    align-items: start;
    gap: 12px;
    background: transparent;
    border: none;
    padding: 8px 0;
    border-radius: 0;
}

.network-list-item i {
    color: var(--orange);
    font-size: 1.15rem;
    margin-top: 4px;
}

.network-list-item div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.network-list-item strong {
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-weight: 600;
}

.network-list-item span {
    display: none !important;
}

.network-list-item .city-list-span {
    display: none !important;
    font-size: 0.85rem;
    color: #475569;
    margin-top: 4px;
}


/* ==========================================================================
   NEWS DETAIL PAGE STYLES
   ========================================================================== */

/* Anchor wrapper defaults */
a.news-card {
    text-decoration: none;
    color: inherit;
}

/* Detail layout container: narrow width for readability */
.news-detail-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Main column content */
.news-detail-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding-top: 20px;
    padding-bottom: 40px;
}

.news-detail-img-wrapper {
    width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.news-detail-img {
    width: 100%;
    height: auto;
    max-height: 480px;
    object-fit: cover;
}

/* Article body copy styling */
.news-detail-body {
    color: var(--ink-2);
    font-size: 1.05rem;
    line-height: 1.8;
}

.news-detail-body p {
    margin-bottom: 24px;
}

.news-detail-body h4 {
    font-size: 1.4rem;
    color: var(--ink);
    margin-top: 35px;
    margin-bottom: 15px;
    font-weight: 700;
}

.news-detail-quote {
    position: relative;
    padding: 24px 30px;
    margin: 35px 0;
    background: var(--paper-2);
    border-left: 4px solid var(--orange);
    border-radius: 0 8px 8px 0;
}

.news-detail-quote p {
    font-style: italic;
    font-size: 1.15rem;
    color: var(--ink);
    line-height: 1.6;
    margin-bottom: 10px;
}

.news-detail-quote cite {
    display: block;
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-detail-bullets {
    margin-bottom: 24px;
    padding-left: 20px;
    list-style: none;
}

.news-detail-bullets li {
    position: relative;
    margin-bottom: 12px;
    padding-left: 24px;
}

.news-detail-bullets li::before {
    content: "\f00c";
    /* FontAwesome check mark */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--orange);
    font-size: 0.95rem;
}

.news-detail-back-wrapper {
    margin-top: 20px;
    border-top: 1px solid #e2e8f0;
    padding-top: 30px;
    margin-bottom: 20px;
}

.news-detail-back-wrapper .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* More news at bottom section */
.news-detail-more {
    margin-top: 50px;
    border-top: 1px solid #e2e8f0;
    padding-top: 50px;
    padding-bottom: 60px;
}

.news-detail-more-title {
    font-size: 1.6rem;
    color: var(--ink);
    margin-bottom: 30px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-align: center;
}

.news-detail-more-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* ==========================================================================
   RESPONSIVE STYLES
   ========================================================================== */

@media (min-width: 2300px) {
    body {
        font-size: 20px;
    }

    .container {
        max-width: 100%;
        margin: 0% 10%;
        padding: 10px 0px;

    }

    .section {
        padding: 105px 0;
    }

    h1 {
        font-size: clamp(3.2rem, 6vw, 5.5rem);
    }

    h2 {
        font-size: clamp(2.4rem, 5vw, 4.0rem);
    }

    h3,
    .cta__form h3 {
        font-size: 2.0rem !important;
    }

    h4,
    .category-card__title,
    .category-card__title,
    .core-value-title,
    .premium-why-title,
    .p-why-content h4 {
        font-size: 1.8rem !important;
    }

    .cert i {
        font-size: 4rem;
    }


    .lead,
    .hero p,
    .check li,
    .network-heading p,
    .network-card p,
    .cert p,
    .core-value-desc,
    .premium-why-desc,
    .p-why-content p,
    .serv__body p,
    .category-card__hover-content p,
    .news-card__desc,
    .testimonial-text,
    .journey-desc,
    .careers-timeline-desc,
    .service-alternate-body p,
    .tech-support-desc,
    .benefit-text,
    .footer__col p a,
    .socials-clean,
    .section-intro-text,
    .section--dark p,
    .cta__form input,
    .cta__form select,
    .cta__form textarea,
    .footer__copyright,
    p {
        font-size: 26px !important;
        line-height: 1.6;
    }

    .section-title {
        font-size: clamp(2.4rem, 5vw, 4.0rem);
    }

    /* Breadcrumbs Scaling */
    .breadcrumb-nav {
        padding: 20px 10%;
    }

    .breadcrumb {
        gap: 12px;
        font-size: 1.5rem !important;
    }

    .breadcrumb li {
        font-size: 18px;
        gap: 12px;
    }

    .breadcrumb li+li::before {
        font-size: 16px;
    }

    .breadcrumb li a {
        font-size: 18px;
    }

    .breadcrumb li.active {
        /* font-size: 18px; */
    }

    /* Strength Cards Scaling */
    .premium-why-grid {
        grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
        gap: 40px;
    }

    .industry-stack-grid {
        grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
        gap: 5rem;
        margin-top: 4rem !important;
    }

    .premium-why-card {
        padding: 40px 35px;
        border-radius: 20px;
    }

    .p-why-icon,
    .premium-why-icon {
        width: 90px;
        height: 90px;
        font-size: 36px;
        border-radius: 16px;
        margin-bottom: 25px;
    }

    .premium-why-title,
    .p-why-content h4 {
        font-size: 28px;
        margin-bottom: 15px;
    }

    .premium-why-desc,
    .p-why-content p {
        font-size: 22px;
        line-height: 1.6;
    }

    /* Journey Cards Scaling */
    .journey-wrapper {
        max-width: 2100px;
        margin: 60px auto;
    }

    .journey-carousel {
        height: 650px;
        padding: 25px 0;
    }

    .journey-track {
        gap: 40px;
    }

    .journey-nav {
        gap: 30px;
        margin-top: 40px;
    }

    .journey-nav-btn {
        width: 70px;
        height: 70px;
        font-size: 1.8rem;
    }

    .journey-slide {
        border-radius: 24px;
        width: auto;
    }

    .journey-content {
        padding: 45px 35px;
    }

    .journey-header {
        gap: 20px;
        margin-bottom: 15px;
    }

    .journey-year {
        font-size: 3.5rem;
    }

    .journey-title {
        font-size: 1.8rem;
        min-height: 4rem;
    }

    .journey-desc {
        font-size: 22px;
        line-height: 1.6;
    }

    .journey-desc-wrapper {
        max-height: 0;
    }

    .journey-slide:hover .journey-desc-wrapper,
    .journey-slide.is-expanded .journey-desc-wrapper {
        max-height: 300px;
        margin-top: 15px;
    }

    /* Principles & Core Values Cards Scaling */
    .core-values-grid,
    .core-values-wrapper {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 30px;
        margin-top: 60px;
    }

    .core-value-card {
        padding: 40px 30px;
        border-radius: 20px;
    }

    .core-value-icon {
        width: 90px;
        height: 90px;
        font-size: 3rem;
        margin-bottom: 25px;
    }

    .core-value-title {
        font-size: 1.6rem;
        margin-bottom: 15px;
    }

    .core-value-desc {
        font-size: 22px;
        line-height: 1.6;
    }




    .footer a,
    .footer p {
        font-size: 1.6rem;
    }

    .footer__bottom {
        font-size: 1.8rem;
    }

    .brand {
        height: 125px;
    }

    .chat-icon {
        height: 150px;
        width: 150px;
        font-size: 90px;
    }

    .socials a {
        height: 75px;
        width: 75px;
    }

    .footer h5 {
        font-size: 28px;
    }

    .btn {
        padding: 16px 28px;
        font-size: 24px;
    }

    .btn--hero-primary,
    .btn--hero-outline {
        padding: 22px 42px;
        font-size: 26px;
    }

    .nav {
        height: 150px;
        padding: 0px 8%;
    }

    .container {
        padding: 0 !important;
    }

    .page-banner-container {
        padding: 5% 0% !important;
    }

    .breadcrumb-nav {
        padding: 2% 5% !important;
    }

    .breadcrumb li {
        font-size: 1.5rem !important;
    }

    .nav__inner {
        height: 100%;
    }

    .nav__link {
        font-size: 1.3rem !important;
    }

    .hero p {
        max-width: 1000px;
    }

    .eyebrow {
        font-size: 28px;
    }

    .hero__meta-inner strong {
        font-size: 2.6rem;
    }

    .hero__meta-inner span {
        font-size: 0.95rem;
    }

    .split__media img {
        height: 100%;
    }

    .prod__img {
        height: 300px;
    }

    .prod__body h4 {
        font-size: 1.3rem;
    }

    .prod__body p {
        font-size: 1.05rem;
    }

    .industry-card {
        height: 600px;
        width: 400px;
    }

    .industry-content h3 {
        font-size: 2rem;
    }

    .serv__img {
        height: 300px;
    }

    .why__num {
        font-size: 100px;
    }

    .btn-network {
        padding: 20px 46px;
        font-size: 26px;
        ;
    }

    .network-content {
        gap: 40px;
    }

    .serv__body p {
        font-size: 1.1rem;
    }

    .proj-grid {
        grid-auto-rows: 340px;
        gap: 24px;
    }

    .proj__cap h4 {
        font-size: 1.3rem;
    }

    .service-alternate-img {
        height: 350px;
    }

    .service-alternate-body p {
        font-size: 26px;
    }

    .service-alternate-body h3 {
        font-size: 35px;
    }

    .tech-support-banner {
        padding: 55px;

    }

    .tech-support-title {
        font-size: 28px;
    }

    .tech-support-desc {
        font-size: 24px;
    }

    .nav__link::after {
        bottom: 6px;
    }

}

@media (min-width: 1400px) {

    /* Typography scaling */
    body {
        font-size: 1.1rem;
    }

    h1,
    .page-banner-title {
        font-size: clamp(2.2rem, 3.5vw, 3.2rem);
    }

    h2 {
        font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    }

    h3 {
        font-size: clamp(1.3rem, 2vw, 1.6rem);
    }

    h4 {
        font-size: clamp(1.05rem, 1.4vw, 1.25rem);
    }

    p,
    .check li {
        font-size: 1.05rem;
        line-height: 1.6;
    }

    .lead {
        font-size: 1.15rem;
        line-height: 1.6;
    }

    /* Layout & Spacings */
    .section {
        padding: 80px 0;
    }

    .container {
        padding: 0 100px;
        max-width: 100%;
    }

    .nav__link {
        font-size: 0.88rem;
    }

    /* Split layout adjustment */
    .split {
        gap: 60px;
        padding: 0 100px;
    }

    .split__media img {
        max-height: 550px;
        object-fit: cover;
        width: 100%;
        border-radius: 8px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    }

    /* Cards scaling */
    .image-card {
        height: 420px;
    }

    .image-card__title {
        font-size: 1.6rem;
    }

    .image-card__desc {
        font-size: 1rem;
    }

    .testimonial-item {
        width: 500px;
        padding: 35px 30px;
    }

    .testimonial-text {
        font-size: 1rem;
    }

    .testimonial-author {
        font-size: 0.95rem;
    }
}

@media (min-width: 1600px) {
    body {
        font-size: 1.2rem;
    }

    .hero__content {
        max-width: 90%;
    }

    .section {
        padding: 100px 0;
    }

    h1 {
        font-size: clamp(2.2rem, 4vw, 3.8rem);
    }

    h2 {
        font-size: clamp(1.7rem, 3vw, 2.8rem);
    }

    h3 {
        font-size: 1.4rem;
    }

    h4,
    .category-card__title {
        font-size: 1.15rem;
    }

    .why__num {
        font-size: 70px;
    }


    .btn,
    .btn-network {
        padding: 12px 24px;
        font-size: 18px;
    }

    .btn--hero-primary,
    .btn--hero-outline {
        padding: 16px 36px;
        font-size: 16px;
    }

    .hero p {
        max-width: 900px;
        font-size: 1.5rem;
    }

    .hero__meta-inner strong {
        font-size: 2.2rem;
    }

    .hero__meta-inner span {
        font-size: 0.85rem;
    }

    .split__media img {
        height: 100%;
    }

    .prod__img {
        height: 240px;
    }

    .prod__body h4 {
        font-size: 1.15rem;
    }

    .nav__link {
        font-size: 0.85rem;
    }

    .prod__body p,

    .lead,
    .network-heading p,
    .network-card p,
    p {
        font-size: clamp(1.0rem, 1.1vw, 1.25rem);
    }

    .serv__img {
        height: 250px;
    }

    .serv__body p {
        font-size: 1rem;
    }

    .proj-grid {
        grid-auto-rows: 280px;
    }

    .proj__cap h4 {
        font-size: 1.15rem;
    }

    .chat-icon {
        height: 115px;
        width: 115px;
        font-size: 75px;
    }

}

@media (max-width: 1920px) {
    /* .container {
        margin: 0 8%;
    } */


    .network-content {
        gap: 0.4rem;
    }
}

@media (min-width:1901px) {
    .container {
        max-width: 100%;
        margin: 0% 10%;
        padding: 10px 0px;

    }

    .section {
        padding: 100px 0;
    }

    h1 {
        font-size: clamp(2.2rem, 4vw, 3.8rem);
    }

    h2 {
        font-size: clamp(1.7rem, 3vw, 2.8rem);
    }

    h3 {
        font-size: 1.4rem;
    }

    h4,
    .mega__category-title,
    .category-card__title {
        font-size: 1.15rem;
    }

    .why__num {
        font-size: 70px;
    }

    .mega {
        width: 80vw;
        height: auto;
    }

    .mega__subproducts-inner {
        padding: 15px 0px;
        gap: 35px;
    }

    .footer__logo-container {
        margin-top: 30px;
    }

    .btn,
    .btn-network {
        padding: 12px 24px;
        font-size: 18px;
    }

    .btn--hero-primary,
    .btn--hero-outline {
        padding: 16px 36px;
        font-size: 16px;
    }

    .hero p {
        max-width: 900px;
        font-size: 1.5rem;
    }

    .hero__meta-inner strong {
        font-size: 2.2rem;
    }

    .hero__meta-inner span {
        font-size: 0.85rem;
    }

    .split__media img {
        height: 100%;
    }

    .prod__img {
        height: 240px;
    }

    .prod__body h4 {
        font-size: 1.15rem;
    }

    .nav__link {
        font-size: 0.85rem;
    }

    .nav {
        height: 8%;
    }

    .prod__body p,

    .lead,
    .network-heading p,
    .network-card p,
    .section--dark p,
    .breadcrumb li,
    .breadcrumb li .active,
    .nav__dropdown a,
    .mega__subproducts a,
    p {
        font-size: clamp(1.0rem, 1.1vw, 1.35rem) !important;
    }



    .nav__dropdown {
        min-width: 300px;
    }

    .page-banner-container {
        padding: 6% 0%;
    }

    .serv__img {
        height: 250px;
    }

    .serv__body p {
        font-size: 1rem;
    }

    .proj-grid {
        grid-auto-rows: 280px;
    }

    .proj__cap h4 {
        font-size: 1.15rem;
    }

    .chat-icon {
        height: 115px;
        width: 115px;
        font-size: 75px;
    }

    .nav__link {
        font-size: 1.2rem !important;
    }
}

@media (max-width: 1420px) {

    .nav__link {
        padding: 4px 8px;
    }

    .nav__inner {
        gap: 10px;
    }

    .ind-grid {
        grid-template-columns: repeat(3, 1fr);
    }

}

@media (max-width: 1250px) {
    .nav__link {
        padding: 6px 8px;
        font-size: 1.20rem;
        letter-spacing: 0.05em;
        display: flex;
        padding: 10px 8px;
        justify-content: space-between;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .brand img {
        max-height: 38px;
    }

    .cert-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .nav {
        background: var(--bg);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        padding: 0px 20px;
    }

    .brand img {
        max-height: 48px;
        max-width: 45vw;
        width: auto;
    }

    .image_india,
    .map-box-national {
        height: auto;
    }

    .footer__logo-container {
        width: 50%;
    }

    .footer__grid {
        padding: 0 2rem 2.5rem 2rem;
    }

    .footer__col p {
        text-align: center;
    }

    .footer__col-title {
        text-align: center;
    }

    .footer__col {
        align-items: center;
    }

    .footer__title {
        margin-bottom: 5%;
    }

    .nav__menu {
        position: fixed;
        inset: 78px 0 auto 0;
        background: var(--bg);
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        transform: translateX(100%);
        transition: transform 0.3s ease;
        height: calc(100vh - 78px);
        overflow-y: auto;
        gap: 0;
    }

    .nav.is-open .nav__menu {
        transform: translateX(0);
    }

    .nav__link::after {
        display: none;
    }

    .nav__burger {
        display: flex;
    }

    .nav__cta {
        display: none;
    }

    .mega,
    .nav__dropdown {
        display: block !important;
        position: static !important;
        transform: none !important;
        opacity: 1;
        visibility: visible;
        width: 100%;
        box-shadow: none;
        border: 0;
        background: transparent;
        color: #fff;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out;
    }

    .mega__category-title::after {
        content: none;
    }

    .nav__dropdown {
        padding-left: 15px;
    }

    .nav__item:hover .mega,
    .drop-container:hover .nav__dropdown {
        transform: none !important;
    }

    .nav__item.is-open .mega {
        max-height: 2500px;
    }

    .nav__item.is-open .nav__dropdown {
        max-height: 400px;
    }

    .mega__columns {
        grid-template-columns: 1fr;
        padding: 0 0 0 15px;
        gap: 0;
    }

    .mega__column {
        gap: 0;
    }

    .mega__category {
        border-bottom: 1px solid rgba(255, 255, 255, 0.06) !important;
        padding-bottom: 0;
    }

    .nav__item.has-mega .mega__subproducts {
        display: none !important;
    }

    .nav__dropdown a,
    .mega__category-title {
        display: block !important;
        padding: 10px 4px !important;
        font-family: "Montserrat", sans-serif !important;
        font-weight: 600 !important;
        font-size: 1rem !important;
        letter-spacing: 0.05em !important;
        text-transform: uppercase !important;
        color: #cbd5e1 !important;
        cursor: pointer;
        margin: 0 !important;
        white-space: normal !important;
        line-height: 1.4 !important;
    }

    .nav__dropdown a::after {
        display: none !important;
    }

    .nav__dropdown a:hover,
    .mega__category-title:hover {
        color: #fff !important;
    }

    .mega__subproducts-inner {
        padding-bottom: 4px;
    }

    .mega__subproducts-inner a {
        color: #cbd5e1;
        font-size: 14px;
    }

    .mega__cta {
        display: none;
    }


    .topbar__right span:first-child,
    .topbar__left span:last-child {
        display: none;
    }

    .category-filter {
        justify-content: space-around;
    }

    .breadcrumb-nav {
        padding: 2% 6% !important;
    }

    .breadcrumb li {
        font-size: 1rem !important;
    }

}




@media (min-width: 1001px) {
    .split {
        align-items: stretch;
    }

    .split__media {
        position: relative;
        height: 100%;
        min-height: 100%;
    }

    .split__media img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}

/* Helper for viewport range 993px to 1150px to prevent title overflow */
@media (min-width: 993px) and (max-width: 1150px) {
    .home-industry-card {
        max-width: 295px;
    }

    .home-industry-card-title {
        font-size: 1.15rem;
    }

    .home-industry-card-content {
        padding: 18px;
    }

    .home-industry-card-btn {
        width: 44px;
        height: 44px;
    }
}

/* Responsive Grid */
@media (max-width: 992px) {
    .home-industries-grid {
        gap: 20px;
    }

    .home-industry-card {
        height: 380px;
    }

    .home-industry-card-title {
        font-size: 1.2rem;
    }

    .home-industry-card-content {
        padding: 20px;
    }

    .home-industry-card-btn {
        width: 44px;
        height: 44px;
    }

    .video-card-grid--2col {
        grid-template-columns: 1fr;
    }

    .video-thumbnail {
        height: 220px;
    }

    .footer__logo-container {
        width: 65%;
    }


}

@media (max-width: 1024px) {

    html {
        font-size: 92.5%;
        /* 14.8px */
    }

    .prod-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .split__media {
        order: 1;
    }

    .split__body {
        order: 2;
    }

    .split__media img {
        width: 100%;
        height: 380px;
        object-fit: cover;
    }

    .split__badge {
        left: 10px;
        bottom: -20px;
        padding: 16px 20px;
    }

    .category-card {
        height: 260px;
    }

    .prod__img {
        height: 160px;
    }

    .container {
        padding: 20px 20px;
    }

    .prod {
        height: 160px;
        display: block;
        width: 100%;
        border-radius: 6px;
    }

    .custom-select-trigger span {
        text-wrap: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 13px;
    }

    .download-catalogue-box {
        padding: 15px 10px;
    }

    .custom-select-option {
        font-size: 10px;
        text-wrap: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .prod__img {
        position: absolute;
        inset: 0;
        height: 100%;
        z-index: 0;
    }

    .prod__body,
    .prod__overlay {
        position: relative;
        z-index: 2;
        padding: 35px 20px;
        background: transparent !important;
        display: flex;
        align-items: center;
        justify-content: flex-end;
        width: 100%;
        height: 100%;
        transform: none !important;
        opacity: 1 !important;
    }

    .prod__body p,
    .prod__link {
        display: none !important;
    }

    .prod__body h4,
    .prod__overlay h5 {
        color: #fff !important;
        margin: 0 !important;
        font-size: 1.1rem !important;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
        transform: none !important;
    }

    .network-wrapper,
    .network-wrapper-national {
        grid-template-columns: 1fr;
        margin-top: 10px;
    }

    .network-wrapper>*,
    .network-wrapper-national>* {
        order: 2;
    }

    .network-wrapper .map-box,
    .network-wrapper-national .map-box-national {
        order: 1;
    }

    .serv-grid {
        grid-template-columns: repeat(2, 1fr);

    }

    .network-content {
        display: none !important;
        /* Hide cards on mobile/tablet */
    }

    .mobile-network-list {
        display: grid !important;
        grid-template-columns: 1fr 1fr;
        gap: 12px 20px;
        padding: 0px 20px;
        margin-top: 0px;
        /* Show tick list on mobile/tablet */
    }

}

@media (max-width: 980px) {


    .split {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .split__media img {
        width: 100%;
        height: 380px;
        object-fit: cover;
    }

    .hero h1,
    .hero h2,
    .eyebrow {
        max-width: 100%;
    }

    .cta__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .hero__meta-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .section {
        padding: 40px 0;
    }

    .hero__actions {
        flex-direction: column;
        gap: 20px;
        max-width: 75%;
    }


}

@media (max-width: 768px) {
    html {
        font-size: 87.5%;
    }

    .serv__body p {
        display: none;
    }

    .industry-stack-grid {
        grid-template-columns: 1fr;
    }





    .industry-card {
        width: 200px;
        height: 300px;
    }

    .industry-content h3 {
        font-size: 14px;
    }

    .industries-track {
        animation: industryScrollMobile 25s linear infinite;
    }

    .network-section {
        padding: 50px 0;
    }



    .network-content {
        grid-template-columns: 1fr;
    }

    .news-detail-container {
        padding: 0 20px;
    }

    .news-detail-more-grid {
        grid-template-columns: 1fr;
    }

    .video-card-grid {
        grid-template-columns: 1fr;
    }

    .news-card-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-item {
        width: 280px;
        padding: 20px 18px;
    }

    .benefit-list-container {
        grid-template-columns: 1fr;
        gap: 12px 0;
    }

    .core-value-desc,
    .premium-why-desc,
    .p-why-content p,
    .prod__body p,
    .serv__body p,
    .category-card__hover-content p {
        font-size: 0.95rem !important;
        line-height: 1.6 !important;
    }

    .news-card__desc,
    .testimonial-text,
    .journey-desc,
    .network-card p {
        font-size: 1rem !important;
        line-height: 1.6 !important;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .mission-vision-card {
        padding: 30px 24px;
        flex-direction: column;
        gap: 16px;
    }

    .home-industries-grid {
        gap: 20px;
    }

    .home-industry-card {
        height: 300px;
        border-radius: 20px;
    }

    .home-industry-card-content {
        padding: 16px;
    }
}

@media (max-width: 640px) {

    .prod-grid,
    .serv-grid,
    .why-grid,
    .cert-grid,
    .ind-grid,
    .footer__grid,
    .proj-grid {
        grid-template-columns: 1fr;
    }

    .proj-grid {
        grid-auto-rows: 220px;
    }

    .footer__col {
        align-items: center;
        text-align: center;
    }

    .footer__col-title {
        justify-content: center;
    }

    .footer__quicklinks-bar {
        font-size: 0.85rem;
        line-height: 1.8;
    }

    .footer__quicklinks-bar a {
        margin: 0 5px;
    }

    .cta__form {
        padding: 28px;
    }

    .cta__form .row {
        grid-template-columns: 1fr;
    }

    .topbar {
        display: none;
    }

    .hero__content {
        padding-top: 80px;
    }

    .stats {
        grid-template-columns: 1fr 1fr;
    }

    .brand__text small {
        display: none;
    }

    .split__badge {
        position: static;
        margin-top: 16px;
        padding: 16px 20px;
        left: auto;
        bottom: auto;
        box-shadow: none;
        display: inline-block;
    }

    .service-alternate-row {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-alternate-img {
        height: 250px;
    }

    .service-alternate-row:nth-child(even) .service-alternate-img {
        order: 1;
    }

    .service-alternate-row:nth-child(even) .service-alternate-body {
        order: 2;
    }

    .chat-icon {
        right: 6%;
        bottom: 6%;
    }

    .prod-grid {
        grid-template-columns: 1fr;

    }
}



@media (max-width: 576px) {

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    h3,
    .network-card h3 {
        font-size: 1.3rem;
    }

    .lead,
    .hero p,
    .check li,
    .network-heading p,
    .network-card p,
    .cert p,
    .cta__intro p,
    p {
        font-size: 14px;
    }

    h4,
    .category-card__title {
        font-size: 1.05rem;
    }

    .category-card {
        height: 170px;
    }

    .industry-card {
        height: 305px;
        width: 220px;
    }

    .btn-network {
        padding: 10px 20px;
        font-size: 14px;
        margin-top: 20px;
    }

    .network-card {
        padding: 15px;
    }

    .network-content {
        gap: 15px;
    }

    .brand img {
        max-height: 32px;
    }

    .nav__inner,
    .nav {
        height: 50px;
    }

    .chat-icon {
        height: 50px;
        width: 50px;
        font-size: 2rem;
    }

    .nav__menu {
        inset: 50px 0 auto 0;
        height: calc(100vh - 50px);
    }

    .eyebrow,
    .service-row__header {
        gap: 10px;
        font-size: 16px !important;
        letter-spacing: 0.0em;
    }

    .hero p {
        display: none;
    }

    .btn,
    .btn--hero-primary,
    .btn--hero-outline {
        padding: 10px 14px;
        font-size: small;
    }

    .split__badge {
        display: none;
    }

    .split__media {
        height: 30vh;
        overflow: hidden;
        align-items: center;
        object-fit: cover;
        object-position: center;
    }

    .news-detail-body {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .news-detail-body h4 {
        font-size: 1.25rem;
    }

    .news-detail-quote {
        padding: 16px 20px;
    }

    .news-detail-quote p {
        font-size: 1rem;
    }

    .video-card-grid {
        gap: 20px;
    }

    .video-thumbnail {
        height: 200px;
    }

    .video-content {
        padding: 20px;
    }

    .network-wrapper,
    .network-wrapper-national {
        gap: 20px;
    }

    .mobile-network-list {
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 0px 10px;
    }

}

@media (max-width: 480px) {
    html {
        font-size: 81.25%;
        /* 13px */
    }

    .industry-stack-card {
        height: auto;
        flex-direction: column;
    }

    .industry-stack-img {
        width: 100%;
        height: 140px;
    }

    .industry-stack-content {
        padding: 16px;
        text-align: center;
        justify-content: center;
    }

    .page-banner-lead {
        display: none;
    }
}


/* =========================================
   BREADCRUMB NAVIGATION
   ========================================= */
.breadcrumb-nav {
    background: var(--bg);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 70px;
    position: relative;
    z-index: 99;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}

.breadcrumb li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: "Montserrat", sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #94a3b8;
}

.breadcrumb li+li::before {
    content: ">";
    color: rgba(255, 255, 255, 0.25);
    font-size: 0.65rem;
}

.breadcrumb li a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb li a:hover {
    color: var(--orange);
}

.breadcrumb li.active {
    color: #ffffff;
    font-weight: 600;
}