@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300..800;1,300..800&family=Inter:wght@300;400;500;600;700;800&display=swap');

:root {
    --bg-primary: #ffffff;
    --bg-secondary: #f4f6f5;
    --bg-card: rgba(255, 255, 255, 0.95);
    --bg-glow: rgba(32, 154, 72, 0.05);

    --accent: #209A48;
    --accent-rgb: 32, 154, 72;
    --accent-secondary: #1B823D;
    --accent-gold: #209A48;
    --accent-gold-rgb: 32, 154, 72;

    --text-main: #1c2621;
    --text-muted: #5a7566;
    --text-dark: #111814;

    --border-color: rgba(32, 154, 72, 0.2);
    --border-glow: rgba(32, 154, 72, 0.35);

    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Reset & Scaffold */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

img {
    max-width: 100%;
    height: auto;
}

body {
    background-color: var(--bg-primary);
    background-image:
        radial-gradient(circle at 10% 20%, rgba(32, 154, 72, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 80% 80%, rgba(32, 154, 72, 0.03) 0%, transparent 50%),
        linear-gradient(to bottom, #ffffff, #f4f6f5);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-secondary);
    border: 2px solid var(--bg-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent);
}

/* Base Layout Utility */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.section-head {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.tagline {
    color: var(--accent);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    display: inline-block;
    margin-bottom: 12px;
    position: relative;
}

.tagline::before,
.tagline::after {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 50%;
    margin: 0 10px;
    vertical-align: middle;
    box-shadow: 0 0 10px var(--accent);
}

.section-title {
    font-size: 42px;
    text-transform: uppercase;
    color: var(--text-main);
    margin-bottom: 20px;
    font-weight: 800;
}

.section-title span {
    color: transparent;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-secondary) 100%);
    -webkit-background-clip: text;
    background-clip: text;
}

.section-desc {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    font-size: 16px;
}

/* Glassmorphism Card Style */
.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 16px;
    padding: 35px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.04);
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
    opacity: 0;
    transition: var(--transition);
}

.glass-card:hover {
    transform: translateY(-8px);
    border-color: var(--border-glow);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
}

.glass-card:hover::before {
    opacity: 1;
}

/* Grid background disabled */
.grid-bg {
    display: none !important;
}

/* Header Navigation */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(3, 8, 6, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(52, 199, 89, 0.15);
    z-index: 1000;
    transition: var(--transition);
    padding: 22px 0;
}

header.scrolled {
    padding: 16px 0;
    background: rgba(3, 8, 6, 0.96);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.nav-menu {
    display: flex;
    gap: 28px;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.header-actions {
    display: flex;
    align-items: center;
}

.nav-link {
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.5px;
    position: relative;
    padding: 8px 0;
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition);
}

/* Logo styling */
.logo {
    display: flex;
    align-items: center;
}

.logo img {
    transition: var(--transition);
    filter: drop-shadow(0 0 12px rgba(0, 0, 0, 0.7)) invert(1);
    max-height: 48px;
}

.logo:hover img {
    filter: drop-shadow(0 0 10px var(--accent));
}

.brochure-btn {
    background: var(--bg-secondary);
    color: var(--text-main);
    border: 1px solid var(--accent);
    border-radius: 50px;
    padding: 12px 24px;
    transition: var(--transition);
}

.brochure-btn:hover {
    background: var(--accent);
    color: #030806;
    box-shadow: 0 0 20px rgba(52, 199, 89, 0.4);
    transform: translateY(-2px);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    width: 28px;
    cursor: pointer;
}

.menu-toggle span {
    width: 100%;
    height: 2.5px;
    background-color: #fff;
    border-radius: 3px;
    transition: var(--transition);
}

/* Hero Section Reference Layout */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: 130px;
    padding-bottom: 70px;
    overflow: hidden;
    background: linear-gradient(180deg, rgba(3, 8, 6, 0.72) 0%, rgba(3, 14, 8, 0.52) 50%, rgba(3, 8, 6, 0.90) 100%),
        url('hero_bg.png') no-repeat center center / cover;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: linear-gradient(to top, var(--bg-primary), transparent);
    pointer-events: none;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 920px;
    margin: 0 auto;
}

.hero-pill-badge {
    background: rgba(6, 20, 13, 0.85);
    color: var(--accent);
    border: 1px solid var(--border-glow);
    border-radius: 50px;
    font-weight: 700;
    padding: 8px 24px;
    font-size: 12px;
    margin-bottom: 25px;
    box-shadow: 0 0 25px rgba(52, 199, 89, 0.25);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: blur(10px);
}

.live-dot-pulse {
    width: 8px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent);
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(52, 199, 89, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 8px rgba(52, 199, 89, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(52, 199, 89, 0);
    }
}

.hero-heading-ref {
    font-size: 58px;
    font-weight: 800;
    color: var(--text-main);
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 22px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.95);
    letter-spacing: -1.8px;
}

.hero-heading-ref span {
    color: var(--accent);
    text-shadow: 0 0 35px rgba(52, 199, 89, 0.5);
    display: block;
}

.hero-sub-ref {
    color: #e2f7ec;
    font-size: 19px;
    font-weight: 500;
    margin-bottom: 35px;
    letter-spacing: 0.5px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
    max-width: 720px;
}

.hero-btns-pill {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px;
}

.btn-pill-primary {
    background: linear-gradient(135deg, #34C759 0%, #28A745 100%);
    color: #030806;
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    padding: 16px 38px;
    box-shadow: 0 6px 25px rgba(52, 199, 89, 0.4);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-pill-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(52, 199, 89, 0.6);
}

.btn-pill-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-main);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    padding: 15px 36px;
    border: 2px solid #ffffff;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.btn-pill-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-3px);
}

.hero-metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 25px;
    margin-bottom: 25px;
    width: 100%;
    max-width: 750px;
}

.hero-metric-card {
    background: rgba(6, 20, 13, 0.7);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 16px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.hero-metric-card:hover {
    border-color: var(--accent);
    box-shadow: 0 0 20px rgba(52, 199, 89, 0.2);
    transform: translateY(-3px);
}

.hero-metric-val {
    font-size: 26px;
    font-weight: 800;
    color: var(--accent);
    font-family: var(--font-heading);
}

.hero-metric-lbl {
    font-size: 12px;
    color: #ffffff;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 6px;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.9);
}

.hero-bottom-pill {
    background: rgba(6, 20, 13, 0.88);
    color: var(--accent);
    border: 1px solid var(--border-glow);
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 2px;
    padding: 14px 0;
    margin: 25px auto 0 auto;
    width: 100%;
    max-width: 1100px;
    box-shadow: 0 0 30px rgba(52, 199, 89, 0.25);
    text-transform: uppercase;
    overflow: hidden;
    white-space: nowrap;
    backdrop-filter: blur(10px);
    display: block;
    position: relative;
}

.hero-pill-marquee-track {
    display: inline-flex;
    gap: 40px;
    animation: heroPillScroll 20s linear infinite;
    white-space: nowrap;
}

.hero-pill-marquee-track:hover {
    animation-play-state: paused;
}

.hero-pill-marquee-track span {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

@keyframes heroPillScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.hero-tag {
    color: var(--accent);
    border: 1px solid var(--border-color);
    background: rgba(52, 199, 89, 0.08);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 50px;
    margin-bottom: 25px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(52, 199, 89, 0.1);
}

.hero-heading {
    font-size: 60px;
    line-height: 1.1;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.hero-heading span {
    color: var(--accent);
    display: block;
    text-shadow: 0 0 25px rgba(52, 199, 89, 0.3);
}

.hero-desc {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 680px;
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.hero-metrics {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 35px;
    margin-top: 50px;
    padding-top: 35px;
    border-top: 1px solid rgba(52, 199, 89, 0.15);
    width: 100%;
    max-width: 700px;
}

.hero-tag {
    color: var(--accent);
    border: 1px solid var(--border-color);
    background: rgba(52, 199, 89, 0.08);
    font-size: 12px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    align-self: flex-start;
    margin-bottom: 25px;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(52, 199, 89, 0.08);
}

.hero-heading {
    font-size: 56px;
    line-height: unit;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 25px;
}

.hero-heading span {
    color: var(--accent);
    display: block;
    text-shadow: 0 0 20px rgba(0, 255, 156, 0.25);
}

.hero-desc {
    font-size: 18px;
    color: var(--text-muted);
    margin-bottom: 40px;
    max-width: 580px;
}

.hero-btns {
    display: flex;
    gap: 20px;
}

.btn {
    padding: 16px 36px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    position: relative;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-secondary) 100%);
    color: var(--bg-primary);
    border: none;
    box-shadow: 0 4px 20px rgba(0, 255, 156, 0.25);
}

.btn-primary:hover {
    box-shadow: 0 8px 30px rgba(0, 255, 156, 0.45);
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 1.5px solid var(--border-color);
}

.btn-secondary:hover {
    border-color: var(--accent);
    box-shadow: 0 0 15px rgba(0, 255, 156, 0.15);
    transform: translateY(-3px);
}

/* Hero Showcase & Floating Visuals */
.hero-graphic {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-showcase-container {
    position: relative;
    width: 100%;
    max-width: 480px;
}

.hero-main-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-glow);
    background: var(--bg-card);
    box-shadow: 0 20px 50px rgba(0, 255, 156, 0.15), 0 0 30px rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(16px);
    transition: var(--transition);
}

.hero-main-card img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    filter: brightness(0.9) contrast(1.05);
}

.hero-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(to top, rgba(3, 8, 6, 0.95) 0%, rgba(3, 8, 6, 0.4) 70%, transparent 100%);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.live-badge {
    background: rgba(0, 255, 156, 0.12);
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.live-dot {
    width: 8px;
    height: 8px;
    background-color: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent);
    animation: pulse 1.5s infinite;
}

/* Floating Overlay Badges */
.floating-badge {
    position: absolute;
    background: rgba(6, 20, 13, 0.9);
    border: 1px solid var(--border-glow);
    backdrop-filter: blur(16px);
    border-radius: 14px;
    padding: 14px 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5);
    z-index: 20;
    animation: floatBadge 4s ease-in-out infinite alternate;
}

.floating-badge.top-right {
    top: -20px;
    right: -20px;
}

.floating-badge.bottom-left {
    bottom: -25px;
    left: -20px;
    animation-delay: -2s;
}

.badge-inner {
    display: flex;
    align-items: center;
    gap: 12px;
}

.badge-icon {
    font-size: 24px;
}

.badge-val {
    color: #fff;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.2;
}

.badge-sub {
    color: var(--text-muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

@keyframes floatBadge {
    0% {
        transform: translateY(0px);
    }

    100% {
        transform: translateY(-12px);
    }
}

/* Hero Trust Metrics Bar */
.hero-metrics {
    display: flex;
    align-items: center;
    gap: 25px;
    margin-top: 45px;
    padding-top: 30px;
    border-top: 1px solid rgba(0, 255, 156, 0.12);
}

.metric-box {
    display: flex;
    flex-direction: column;
}

.m-num {
    color: var(--accent);
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 800;
    line-height: 1;
}

.m-lbl {
    color: var(--text-muted);
    font-size: 12px;
    margin-top: 4px;
}

.metric-divider {
    width: 1px;
    height: 35px;
    background: rgba(0, 255, 156, 0.15);
}


/* About Us Section */
.about {
    padding: 120px 0;
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 60px;
    align-items: center;
}

.about-visual {
    position: relative;
    height: 480px;
    width: 100%;
}

.tech-board {
    border-radius: 20px;
    border: 1px solid rgba(0, 255, 156, 0.12);
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(6, 20, 13, 0.9) 0%, rgba(3, 8, 6, 0.95) 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
}

.circuit-path {
    fill: none;
    stroke: var(--accent);
    stroke-width: 1.5;
    stroke-dasharray: 400;
    stroke-dashoffset: 400;
    animation: draw-circuit 6s infinite ease-in-out;
    opacity: 0.45;
}

.circuit-dot {
    fill: var(--accent);
    r: 4;
    animation: explode-glow 3s infinite alternate;
}

.company-badge {
    position: absolute;
    z-index: 10;
    background: rgba(3, 8, 6, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-glow);
    padding: 30px;
    border-radius: 16px;
    bottom: 30px;
    right: -20px;
    max-width: 260px;
    box-shadow: 0 10px 30px rgba(0, 255, 156, 0.15);
}

.badge-headline {
    color: var(--accent);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    margin-bottom: 5px;
}

.badge-text {
    font-size: 13px;
    color: var(--text-muted);
}

.about-details {
    display: flex;
    flex-direction: column;
}

.about-content-text {
    color: var(--text-muted);
    font-size: 15px;
    margin-bottom: 35px;
}

.about-tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 12px;
}

.about-tab-btn {
    background: transparent;
    border: none;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    position: relative;
    padding: 8px 16px;
    text-transform: uppercase;
}

.about-tab-btn.active {
    color: var(--accent);
}

.about-tab-btn::after {
    content: '';
    position: absolute;
    bottom: -13px;
    left: 0;
    width: 100%;
    height: 2.5px;
    background-color: var(--accent);
    transform: scaleX(0);
    transition: var(--transition);
}

.about-tab-btn.active::after {
    transform: scaleX(1);
}

.tab-pane {
    display: none;
    animation: fadeIn 0.4s ease-in-out forwards;
}

.tab-pane.active {
    display: block;
}

.tab-text {
    font-size: 15px;
    color: var(--text-muted);
}

.tab-text strong {
    color: #fff;
    display: block;
    font-size: 17px;
    margin-bottom: 8px;
}

/* About values cards/pills */
.about-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 35px;
}

.about-pill {
    background: rgba(0, 255, 156, 0.05);
    border: 1px solid var(--border-color);
    color: var(--accent);
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 4px;
}

/* Capabilities Vertical Section */
.capabilities {
    padding: 120px 0;
    background-color: var(--bg-secondary);
    position: relative;
}

.caps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 10;
}

.cap-card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.cap-num {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px rgba(0, 255, 156, 0.4);
    margin-bottom: 20px;
    display: inline-block;
    line-height: unit;
}

.cap-title {
    font-size: 20px;
    color: #fff;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -0.5px;
}

.cap-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cap-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 14px;
}

.cap-item::before {
    content: '⚡';
    color: var(--accent-gold);
    font-size: 10px;
}

/* Staffing Section */
.staffing {
    padding: 120px 0;
}

.staffing-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.staff-center-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 40px 20px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 8px;
    text-shadow: 0 0 10px rgba(0, 255, 156, 0.2);
}

.stat-label {
    font-size: 13px;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 1px;
}

.staff-expert {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.expert-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.expert-card {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.expert-icon {
    background: rgba(0, 255, 156, 0.08);
    border: 1.5px solid var(--border-color);
    width: 50px;
    height: 50px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.expert-details h4 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 6px;
}

.expert-details p {
    color: var(--text-muted);
    font-size: 14px;
}

/* Staffing engagement pills */
.engagement-pills-row {
    margin-top: 40px;
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
}

.engagement-label {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--accent-gold);
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.pills-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.pill-item {
    background: rgba(245, 158, 11, 0.04);
    border: 1px solid rgba(245, 158, 11, 0.2);
    color: var(--accent-gold);
    padding: 8px 18px;
    font-size: 13px;
    border-radius: 5px;
}

/* Journey Section */
.journey {
    padding: 120px 0;
    background-color: var(--bg-secondary);
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(to bottom, var(--accent) 0%, rgba(0, 255, 156, 0.1) 100%);
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(0, 255, 156, unit);
}

.timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
    margin-bottom: 40px;
    opacity: 0.8;
    transition: var(--transition);
}

.timeline-item.left {
    left: 0;
    text-align: right;
}

.timeline-item.right {
    left: 50%;
    text-align: left;
}

.timeline-item:hover {
    opacity: 1;
}

.timeline-node {
    position: absolute;
    top: 25px;
    width: 20px;
    height: 20px;
    background: var(--bg-primary);
    border: 3px solid var(--accent);
    border-radius: 50%;
    z-index: 10;
    box-shadow: 0 0 15px var(--accent);
    transition: var(--transition);
}

.timeline-item.left .timeline-node {
    right: -10px;
}

.timeline-item.right .timeline-node {
    left: -10px;
}

.timeline-item:hover .timeline-node {
    background: var(--accent);
    transform: scale(1.3);
}

.timeline-year {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 8px;
}

.timeline-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.timeline-card h4 {
    font-size: 18px;
    color: #111111;
    margin-bottom: 8px;
    font-weight: 800;
}

.timeline-card p {
    font-size: 14px;
    color: #333333;
    font-weight: 500;
    line-height: 1.6;
}

/* Contact Us Section */
.contact {
    padding: 120px 0;
    position: relative;
}

.contact-layout {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-rowList {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-card-info {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 255, 156, 0.06);
    border: 1px solid var(--border-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--accent);
}

.contact-text-details div:first-child {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-text-details div:last-child {
    font-size: 16px;
    color: #fff;
    font-weight: 600;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    background: rgba(3, 8, 6, 0.4);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 14px 18px;
    color: #fff;
    font-family: var(--font-body);
    font-size: 15px;
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 10px rgba(0, 255, 156, 0.2);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.form-submit-btn {
    width: 100%;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-secondary) 100%);
    color: var(--bg-primary);
    border: none;
    font-weight: 700;
    text-transform: uppercase;
    padding: 16px 36px;
    border-radius: 8px;
    font-size: 14px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 255, 156, 0.2);
    margin-top: 10px;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(0, 255, 156, 0.45);
}

/* Footer Section */
footer {
    background-color: #010403;
    padding: 60px 0 30px;
    border-top: 1px solid rgba(0, 255, 156, 0.06);
}

.footer-layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-nav {
    display: flex;
    gap: 30px;
}

.footer-link {
    font-size: 13px;
    color: var(--text-muted);
    text-transform: uppercase;
}

.footer-link:hover {
    color: var(--accent);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: var(--text-muted);
}

/* Animations */
@keyframes sweep {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@keyframes anti-rotate {
    from {
        transform: rotate(360deg);
    }

    to {
        transform: rotate(0deg);
    }
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.7;
        box-shadow: 0 0 10px var(--accent);
    }

    50% {
        transform: scale(1.3);
        opacity: 1;
        box-shadow: 0 0 25px var(--accent);
    }

    100% {
        transform: scale(1);
        opacity: 0.7;
        box-shadow: 0 0 10px var(--accent);
    }
}

@keyframes draw-circuit {
    0% {
        stroke-dashoffset: 400;
    }

    50% {
        stroke-dashoffset: 0;
    }

    100% {
        stroke-dashoffset: -400;
    }
}

@keyframes explode-glow {
    0% {
        opacity: 0.5;
        filter: drop-shadow(0 0 2px var(--accent));
    }

    100% {
        opacity: 1;
        filter: drop-shadow(0 0 8px var(--accent));
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Media Queries (Responsiveness) */
@media (max-width: 991px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }

    .hero-tag {
        align-self: center;
    }

    .hero-content {
        align-items: center;
    }

    .hero-btns {
        justify-content: center;
    }

    .about-grid,
    .staffing-layout,
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-item {
        width: 100%;
        padding-left: 55px;
        padding-right: 0;
        text-align: left;
    }

    .timeline-item.left {
        text-align: left;
    }

    .timeline-item.right {
        left: 0;
    }

    .timeline-item.left .timeline-node,
    .timeline-item.right .timeline-node {
        left: 10px;
    }

    .footer-layout {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    .footer-nav {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 32px;
    }

    .hero-heading {
        font-size: 40px;
    }

    /* Section titles responsive adjustments */
}

/* ===== DIGITAL ENGINEERING & AUTOMATION SECTION ===== */
.deas-section {
    padding: 100px 0;
    background: var(--bg-primary);
    border-top: 1px solid var(--border-color);
}

.deas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 50px;
}

.deas-card {
    background: #ffffff;
    border: 1px solid rgba(32, 154, 72, 0.15);
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.deas-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
    opacity: 0;
    transition: var(--transition);
}

.deas-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent);
    box-shadow: 0 15px 40px rgba(32, 154, 72, 0.15);
}

.deas-card:hover::before {
    opacity: 1;
}

.deas-card .deas-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 18px;
    background: rgba(32, 154, 72, 0.12);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    border: 1px solid rgba(32, 154, 72, 0.25);
}

.deas-card h4 {
    color: #111111;
    font-size: 15px;
    font-weight: 800;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.deas-card p {
    color: #444444;
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

.deas-benefits {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    margin-top: 40px;
    background: linear-gradient(90deg, rgba(32, 154, 72, 0.08), rgba(32, 154, 72, 0.02));
    border: 1px solid rgba(32, 154, 72, 0.3);
    border-radius: 14px;
    box-shadow: 0 8px 25px rgba(32, 154, 72, 0.1);
}

.deas-benefit {
    padding: 25px 20px;
    text-align: center;
    border-right: 1px solid rgba(32, 154, 72, 0.2);
    background: transparent;
    transition: var(--transition);
}

.deas-benefit:hover {
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transform: scale(1.03);
    border-radius: 14px;
    z-index: 10;
    position: relative;
}



.deas-benefit:last-child {
    border-right: none;
}

.deas-benefit h5 {
    color: var(--accent);
    font-size: 15px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    text-shadow: 0 1px 1px rgba(32, 154, 72, 0.3);
}

.deas-benefit p {
    color: var(--text-main);
    font-size: 13px;
    margin: 0;
    font-weight: 600;
}

/* ===== BIM & DIGITAL CONSTRUCTION SECTION ===== */
.bim-section {
    padding: 100px 0;
    background: var(--bg-primary);
}

.bim-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr 1fr;
    gap: 30px;
    margin-top: 50px;
    align-items: center;
}

.bim-left,
.bim-right {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.bim-module {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    transition: var(--transition);
}

.bim-module:hover {
    border-color: var(--accent);
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.bim-module .bim-dot {
    width: 10px;
    height: 10px;
    min-width: 10px;
    background: var(--accent);
    border-radius: 50%;
    margin-top: 5px;
    box-shadow: 0 0 10px rgba(32, 154, 72, 0.4);
}

.bim-module h4 {
    color: var(--text-main);
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.bim-module p {
    color: var(--text-muted);
    font-size: 12px;
    line-height: 1.5;
    margin: 0;
}

.bim-center-img {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--border-glow);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.bim-center-img img {
    width: 100%;
    height: 100%;
    min-height: 480px;
    object-fit: cover;
    display: block;
}

.bim-benefits {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    margin-top: 50px;
    background: rgba(32, 154, 72, 0.05);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    overflow: hidden;
}

.bim-benefits .bb-item {
    padding: 22px 15px;
    text-align: center;
    border-right: 1px solid var(--border-color);
}

.bim-benefits .bb-item:last-child {
    border-right: none;
}

.bim-benefits .bb-item h5 {
    color: var(--accent);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.bim-benefits .bb-item p {
    color: var(--text-muted);
    font-size: 11px;
    margin: 0;
}

/* ===== CLIENTS & PARTNERS SECTION ===== */
.clients-section {
    padding: 95px 0 !important;
    background: radial-gradient(circle at 50% 50%, rgba(32, 154, 72, 0.08) 0%, rgba(5, 12, 8, 0.98) 70%) #050c08 !important;
    border-top: 1px solid rgba(52, 199, 89, 0.15) !important;
    border-bottom: 1px solid rgba(52, 199, 89, 0.15) !important;
    position: relative;
    overflow: hidden;
}

.clients-grid-wrap {
    margin-top: 50px;
}

.clients-category {
    margin-bottom: 40px;
}

.clients-category-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(32, 154, 72, 0.12);
    border: 1px solid rgba(32, 154, 72, 0.3);
    color: var(--accent);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 22px;
}

.clients-logo-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    align-items: center;
}

/* Client Logo Items styled in main section block */

.industries-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 15px;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.industry-item {
    text-align: center;
    padding: 15px 10px;
}

.industry-item .ind-icon {
    font-size: 28px;
    margin-bottom: 8px;
}

.industry-item span {
    display: block;
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== WHY RENECHIP SECTION ===== */
.why-section {
    padding: 100px 0;
    background: var(--bg-secondary);
    position: relative;
    overflow: hidden;
}

.why-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(32, 154, 72, 0.08) 0%, transparent 60%);
    pointer-events: none;
}

.why-values {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 25px;
    margin-top: 50px;
    position: relative;
    z-index: 2;
}

.why-val-card {
    text-align: center;
    padding: 40px 25px;
    background: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    background: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(32, 154, 72, 0.15);
    border-radius: 18px;
    transition: var(--transition);
}

.why-val-card:hover {
    border-color: var(--accent);
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(32, 154, 72, 0.15);
}

.why-val-card .wv-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 20px;
    background: rgba(32, 154, 72, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    border: 1px solid rgba(32, 154, 72, 0.25);
}

.why-val-card h4 {
    color: var(--text-main);
    font-size: 15px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.why-val-card p {
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.6;
    margin: 0;
}

/* ===== LEADERSHIP SECTION ===== */
.leadership-section {
    padding: 80px 0;
    position: relative;
    z-index: 2;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

/* Missing CSS Restored */
.leader-card {
    background: #ffffff;
    border: 1px solid rgba(32, 154, 72, 0.15);
    border-radius: 18px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
}

.leader-card:hover {
    border-color: var(--accent);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(32, 154, 72, 0.1);
}

.leader-card .leader-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    filter: grayscale(15%);
    transition: var(--transition);
}

.leader-card:hover .leader-img {
    filter: grayscale(0%);
    transform: scale(1.03);
}

.leader-card .leader-info {
    padding: 22px;
    background: #ffffff;
    flex: 1;
    text-align: left;
}

.leader-card h4 {
    color: var(--text-main);
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.leader-card .leader-role {
    display: inline-block;
    background: rgba(32, 154, 72, 0.08);
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 12px;
}

.leader-card .leader-exp {
    color: var(--text-muted) !important;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 6px;
}

.leader-card .leader-expertise {
    color: var(--text-muted) !important;
    font-size: 12.5px;
    line-height: 1.5;
}

.client-logo-item {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 8px 24px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: auto !important;
    height: 100px !important;
    opacity: 0.92 !important;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1) !important;
    box-shadow: none !important;
    cursor: pointer;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
}

.client-logo-item:hover {
    background: transparent !important;
    border: none !important;
    transform: scale(1.12) !important;
    opacity: 1 !important;
    box-shadow: none !important;
    filter: drop-shadow(0 0 20px rgba(74, 255, 0, 0.65)) !important;
}

.client-logo-item img,
.client-logo-item svg {
    max-height: 80px !important;
    height: 75px !important;
    max-width: 260px !important;
    width: auto !important;
    object-fit: contain;
    transition: all 0.35s ease;
}

.client-logo-item:hover img,
.client-logo-item:hover svg {
    transform: scale(1.08);
}

.client-logo-card .client-sub {
    font-size: 10px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    display: block;
}

/* ===== LARGE WHITE ROUNDED PARTNER CARDS (INVENT CONFERENCE SCROLL STYLE) ===== */
.partners-marquee-section {
    padding: 70px 0;
    background: #030806;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(32, 154, 72, 0.2);
    border-bottom: 1px solid rgba(32, 154, 72, 0.2);
}

.partners-marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 15px 0;
}

.partners-marquee-container::before,
.partners-marquee-container::after {
    content: '';
    position: absolute;
    top: 0;
    width: 140px;
    height: 100%;
    z-index: 3;
    pointer-events: none;
}

.partners-marquee-container::before {
    left: 0;
    background: linear-gradient(to right, #030806 0%, transparent 100%);
}

.partners-marquee-container::after {
    right: 0;
    background: linear-gradient(to left, #030806 0%, transparent 100%);
}

.partners-marquee-track {
    display: flex;
    gap: 28px;
    width: max-content;
    animation: partnerScrollLoop 28s linear infinite;
}

.partners-marquee-track:hover {
    animation-play-state: paused;
}

@keyframes partnerScrollLoop {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.partner-card-big {
    background: #ffffff;
    border-radius: 20px;
    padding: 24px 44px;
    min-width: 320px;
    height: 140px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.4);
    transition: all 0.35s ease;
    cursor: pointer;
    flex-shrink: 0;
}

.partner-card-big:hover {
    transform: translateY(-8px) scale(1.04);
    box-shadow: 0 20px 45px rgba(32, 154, 72, 0.4);
}

.partner-card-big img,
.partner-card-big svg {
    max-height: 70px;
    max-width: 220px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* ===== INDUSTRIES WE SERVE HIGHLIGHTED GRID ===== */
.industries-section-super {
    padding: 90px 0;
    background: #030806;
    position: relative;
    border-top: 1px solid rgba(32, 154, 72, 0.2);
}

.industries-super-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 45px;
}

.industry-card-super {
    background: linear-gradient(145deg, rgba(20, 38, 26, 0.65), rgba(6, 15, 10, 0.85));
    border: 1px solid rgba(32, 154, 72, 0.25);
    border-radius: 18px;
    padding: 30px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    cursor: default;
}

.industry-card-super::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #209A48, #34D399);
    opacity: 0;
    transition: opacity 0.35s ease;
}

.industry-card-super:hover {
    transform: translateY(-8px);
    border-color: #209A48;
    background: linear-gradient(145deg, rgba(32, 154, 72, 0.15), rgba(8, 20, 13, 0.9));
    box-shadow: 0 16px 40px rgba(32, 154, 72, 0.3);
}

.industry-card-super:hover::before {
    opacity: 1;
}

.ind-icon-box {
    width: 68px;
    height: 68px;
    background: rgba(32, 154, 72, 0.15);
    border: 2px solid rgba(32, 154, 72, 0.4);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
    transition: all 0.35s ease;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.ind-icon-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.industry-card-super:hover .ind-icon-box {
    border-color: #209A48;
    transform: scale(1.08);
    box-shadow: 0 8px 24px rgba(32, 154, 72, 0.45);
}

.industry-card-super:hover .ind-icon-box img {
    transform: scale(1.18);
}

.ind-card-title {
    color: var(--text-main);
    font-size: 18px;
    font-weight: 800;
    font-family: var(--font-heading);
    margin-bottom: 6px;
}

.ind-card-sub {
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
}

/* ===== CORPORATE FOOTER DESIGN (MATCHING RENECHIP.COM SCREENSHOT) ===== */
footer.corporate-footer {
    background: #030806;
    padding: 80px 0 35px 0;
    border-top: 1px solid rgba(32, 154, 72, 0.25);
    color: #ffffff !important;
    font-family: var(--font-body);
}

.corporate-footer .footer-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 35px;
    margin-bottom: 50px;
    align-items: start;
}

.corporate-footer .footer-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.corporate-footer .f-address {
    color: #ffffff !important;
    font-size: 14.5px;
    line-height: 1.6;
    margin-top: 15px;
    margin-bottom: 20px;
}

.social-items-row {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.social-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.social-icon-btn:hover {
    background: #209A48;
    border-color: #209A48;
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 8px 20px rgba(32, 154, 72, 0.5);
}

.social-icon-btn svg {
    width: 22px !important;
    height: 22px !important;
    max-width: 22px;
    max-height: 22px;
    object-fit: contain;
}

footer .footer-col h4,
.corporate-footer .footer-col h4 {
    color: #209A48 !important;
    font-size: 17px;
    font-weight: 800;
    font-family: var(--font-heading);
    margin-top: 0 !important;
    margin-bottom: 18px !important;
    letter-spacing: 0.5px;
    text-align: left !important;
}


.corporate-footer .footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.corporate-footer .footer-links-list a {
    color: #ffffff !important;
    font-size: 14.5px;
    text-decoration: none;
    transition: all 0.25s ease;
    font-weight: 500;
}

.corporate-footer .footer-links-list a:hover {
    color: #209A48 !important;
    padding-left: 4px;
}

.corporate-footer .footer-copyright-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    color: #94a3b8 !important;
    font-size: 13.5px;
}

.corporate-footer .footer-copyright-bar a {
    color: #209A48 !important;
    text-decoration: none;
}

.corporate-footer .footer-copyright-bar a:hover {
    text-decoration: underline;
}

@media (max-width: 991px) {
    .corporate-footer .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .corporate-footer .footer-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== BUILT FOR THE MOST DEMANDING SECTORS ACCORDION ===== */
.demanding-accordion {
    display: flex;
    height: 500px;
    width: 100%;
}

.demanding-card {
    position: relative;
    flex: 1;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    cursor: pointer;
    border-right: 1px solid rgba(0, 0, 0, 0.8);
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.demanding-card:hover {
    flex: 3;
    border-color: #00FF9C;
    box-shadow: 0 0 30px rgba(0, 255, 156, 0.3);
}

.demanding-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 255, 156, 0.12) 100%);
    z-index: 1;
    transition: background 0.6s ease;
}

.demanding-card:hover .demanding-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.98) 0%, rgba(0, 0, 0, 0.5) 40%, rgba(0, 255, 156, 0.35) 100%);
}

.demanding-content {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
}

.demanding-info {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
}



.demanding-info h3 {
    color: #00FF9C;
    font-size: 14px;
    letter-spacing: 2px;
    margin-bottom: 8px;
    font-weight: 700;
    text-transform: uppercase;
}

.demanding-info h4 {
    color: var(--text-main);
    font-size: 26px;
    font-weight: 800;
    margin: 0;
    line-height: 1.1;
    text-transform: uppercase;
    transition: all 0.3s;
}

.hover-reveal-content {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transition: all 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
    margin-top: 0;
}

.demanding-card:hover .hover-reveal-content {
    opacity: 1;
    max-height: 250px;
    margin-top: 15px;
}

.demanding-desc {
    color: #a0aec0;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.demanding-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.demanding-tags span {
    color: #00FF9C;
    border: 1px solid rgba(0, 255, 156, 0.4);
    border-radius: 4px;
    padding: 6px 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: rgba(0, 255, 156, 0.05);
}

@media (max-width: 991px) {
    .demanding-accordion {
        grid-template-columns: repeat(2, 1fr);
        height: auto;
    }

    .demanding-card {
        height: 350px;
    }
}

/* Premium Feature Cards */
.premium-feature-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    background: #ffffff;
    border: 1px solid rgba(32, 154, 72, 0.15);
    border-radius: 18px;
    padding: 35px 30px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.premium-feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: -1;
}

.premium-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(32, 154, 72, 0.12);
    border-color: rgba(32, 154, 72, 0.3);
}

.premium-feature-card:hover::before {
    transform: scaleX(1);
}

.pfc-icon {
    width: 65px;
    height: 65px;
    background: rgba(32, 154, 72, 0.08);
    color: var(--accent);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: var(--transition);
    border: 1px solid rgba(32, 154, 72, 0.15);
}

.premium-feature-card:hover .pfc-icon {
    background: var(--accent);
    color: var(--text-main);
    transform: scale(1.08) rotate(-3deg);
    box-shadow: 0 10px 20px rgba(32, 154, 72, 0.25);
}

.pfc-content h3 {
    color: var(--text-main);
    font-size: 20px;
    font-family: var(--font-heading);
    font-weight: 800;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.pfc-content p {
    color: var(--text-muted);
    font-size: 14.5px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.pfc-link {
    color: var(--accent);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 13px;
    letter-spacing: 1.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.pfc-link span {
    transition: transform 0.3s ease;
}

.premium-feature-card:hover .pfc-link {
    color: var(--accent-secondary);
}

.premium-feature-card:hover .pfc-link span {
    transform: translateX(4px);
}

.leader-card .leader-exp {
    color: var(--text-muted) !important;
}

.leader-card .leader-expertise {
    color: var(--text-muted) !important;
}

.leader-card:hover .leader-img-wrapper {
    background: linear-gradient(145deg, rgba(32, 154, 72, 0.08), rgba(32, 154, 72, 0.2)) !important;
}

.leader-card:hover .leader-img-wrapper svg {
    transform: scale(1.1);
    color: var(--accent) !important;
    opacity: 1 !important;
}

/* Global Glass Card Premium Override */
.glass-card {
    background: linear-gradient(145deg, #ffffff 0%, #f9fbf9 100%) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03) !important;
    border: 1px solid rgba(32, 154, 72, 0.12) !important;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}

.glass-card:hover {
    transform: translateY(-8px) scale(1.02) !important;
    box-shadow: 0 25px 45px rgba(32, 154, 72, 0.12) !important;
    border-color: rgba(32, 154, 72, 0.4) !important;
    background: #ffffff !important;
}

.glass-card h4 {
    margin-bottom: 24px !important;
    position: relative !important;
    padding-bottom: 12px !important;
    color: var(--text-main) !important;
    font-weight: 800 !important;
}

.glass-card h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 32px;
    height: 4px;
    background: var(--accent);
    border-radius: 3px;
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.glass-card:hover h4::after {
    width: 65px;
    background: linear-gradient(90deg, var(--accent), var(--accent-secondary));
}

.glass-card p {
    color: var(--text-muted) !important;
    line-height: 1.7 !important;
    font-weight: 500 !important;
}

/* Restored && Premium Dropdown Navigation Styles */
.nav-item {
    position: relative;
}

/* Invisible padding to keep hover active while moving mouse down */
.nav-item::after {
    content: '';
    position: absolute;
    bottom: -25px;
    left: 0;
    width: 100%;
    height: 25px;
    background: transparent;
    display: none;
}

.nav-item:hover::after {
    display: block;
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%) translateY(12px);
    width: 840px !important;
    max-width: 95vw !important;
    background: #ffffff !important;
    border: 1px solid #e2e8f0 !important;
    border-radius: 16px !important;
    padding: 24px 26px !important;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.18) !important;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1100;
    pointer-events: none;
}

.nav-item:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.nav-dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    border-left: 1px solid #e2e8f0;
}

.nav-dropdown-section-title {
    font-size: 11.5px !important;
    font-weight: 800 !important;
    color: #166e33 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase !important;
    margin-bottom: 16px !important;
    padding-bottom: 8px !important;
    border-bottom: 1.5px solid rgba(32, 154, 72, 0.15) !important;
    font-family: var(--font-heading) !important;
}

.nav-dropdown-grid {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 14px !important;
}

.nav-dropdown-item {
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    padding: 14px 18px !important;
    border-radius: 12px !important;
    text-decoration: none !important;
    background: #f8fafc !important;
    border: 1px solid #f1f5f9 !important;
    transition: all 0.2s ease !important;
}

.nav-dropdown-item:hover {
    background: #f0fdf4 !important;
    border-color: rgba(32, 154, 72, 0.3) !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(32, 154, 72, 0.08) !important;
}

.dd-icon {
    font-size: 22px !important;
    width: 42px !important;
    height: 42px !important;
    background: #ffffff !important;
    border-radius: 10px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04) !important;
    flex-shrink: 0 !important;
}

.dd-text {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #0f172a !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 3px !important;
    line-height: 1.25 !important;
}

.dd-text span {
    font-size: 12px !important;
    font-weight: 500 !important;
    color: #64748b !important;
    line-height: 1.35 !important;
}

/* Stats Section Reconstruction */
.stats-section {
    padding: 20px 0 80px 0;
    position: relative;
    z-index: 10;
    background: var(--bg-primary);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.stat-card {
    background: linear-gradient(145deg, #ffffff, #fcfdfc);
    border: 1px solid rgba(32, 154, 72, 0.15);
    border-radius: 18px;
    padding: 35px 25px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(32, 154, 72, 0.15);
    border-color: rgba(32, 154, 72, 0.4);
}

.stat-icon {
    width: 60px;
    height: 60px;
    background: rgba(32, 154, 72, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    transition: var(--transition);
}

.stat-card:hover .stat-icon {
    background: var(--accent);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 20px rgba(32, 154, 72, 0.25);
}

.stat-card:hover .stat-icon svg {
    stroke: #ffffff;
}

.stat-val {
    font-size: 34px;
    font-weight: 900;
    color: var(--text-main);
    margin-bottom: 8px;
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 13.5px;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Hero Theme Consistency Fix */
.hero {
    background: linear-gradient(180deg, rgba(3, 8, 6, 0.82) 0%, rgba(3, 18, 10, 0.70) 50%, #ffffff 100%),
        url('premium_hero_bg.png') no-repeat center center / cover !important;
}

h1.hero-heading-ref {
    color: #ffffff !important;
    text-shadow: 0 6px 20px rgba(0, 0, 0, 0.8) !important;
}

.hero-sub-ref {
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.6) !important;
    font-weight: 500 !important;
}

.btn-pill-secondary {
    color: #ffffff !important;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    background: rgba(255, 255, 255, 0.1) !important;
}

.btn-pill-secondary:hover {
    background: #ffffff !important;
    color: #111111 !important;
}

.hero-pill-badge {
    color: #ffffff !important;
    border-color: rgba(32, 154, 72, 0.8) !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* Stat Card Dark Mode Override */
.stat-card {
    background: linear-gradient(145deg, #06180d 0%, #0a2414 100%) !important;
    border: 1px solid rgba(32, 154, 72, 0.25) !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1) !important;
}

.stat-card .stat-val {
    color: #ffffff !important;
}

.stat-card .stat-label {
    color: #92b8a0 !important;
}

.stat-card .stat-icon {
    background: rgba(32, 154, 72, 0.15) !important;
    border: 1px solid rgba(32, 154, 72, 0.2) !important;
}

.stat-card .stat-icon svg {
    stroke: var(--accent) !important;
}

.stat-card:hover {
    transform: translateY(-8px) scale(1.02) !important;
    background: linear-gradient(145deg, #071f11 0%, #0b2b18 100%) !important;
    border-color: rgba(32, 154, 72, 0.6) !important;
    box-shadow: 0 20px 45px rgba(32, 154, 72, 0.25) !important;
}

.stat-card:hover .stat-icon {
    background: var(--accent) !important;
}

.stat-card:hover .stat-icon svg {
    stroke: #ffffff !important;
}

/* ==================== Mobile Responsive Adjustments ==================== */
@media (max-width: 991px) {
    header {
        padding: 14px 0 !important;
        background: #030806 !important;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4) !important;
    }

    .nav-container {
        padding: 0 20px !important;
    }

    .menu-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 36px;
        height: 36px;
        cursor: pointer;
        z-index: 1001;
        background: rgba(32, 154, 72, 0.15);
        padding: 7px;
        border-radius: 8px;
        border: 1px solid rgba(32, 154, 72, 0.35);
    }

    .menu-toggle span {
        width: 100%;
        height: 2.5px;
        background-color: #ffffff;
        border-radius: 2px;
        transition: all 0.3s ease;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 66px;
        left: 0;
        right: 0;
        width: 100% !important;
        height: calc(100vh - 66px);
        background: rgba(3, 8, 6, 0.98) !important;
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        padding: 24px 20px 80px 20px !important;
        flex-direction: column !important;
        gap: 8px !important;
        overflow-y: auto !important;
        z-index: 1000;
        border-top: 1.5px solid rgba(32, 154, 72, 0.3) !important;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.9) !important;
    }

    .nav-menu.open {
        display: flex !important;
        animation: slideDownNav 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    .nav-menu li {
        width: 100% !important;
        list-style: none !important;
    }

    .nav-link {
        color: #ffffff !important;
        font-size: 15px !important;
        font-weight: 700 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.8px !important;
        padding: 14px 18px !important;
        border-radius: 12px !important;
        background: rgba(255, 255, 255, 0.04) !important;
        border: 1px solid rgba(255, 255, 255, 0.08) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        text-decoration: none !important;
        transition: all 0.25s ease !important;
        width: 100% !important;
    }

    .nav-link:hover,
    .nav-link.active {
        color: #34C759 !important;
        background: rgba(32, 154, 72, 0.18) !important;
        border-color: rgba(52, 199, 89, 0.5) !important;
        border-left: 4px solid #34C759 !important;
    }

    /* Mobile Services Dropdown Accordion */
    .nav-dropdown {
        position: static !important;
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transform: none !important;
        width: 100% !important;
        min-width: auto !important;
        box-shadow: none !important;
        background: rgba(0, 0, 0, 0.6) !important;
        border: 1px solid rgba(32, 154, 72, 0.3) !important;
        border-radius: 12px !important;
        padding: 12px !important;
        margin: 8px 0 12px 0 !important;
        flex-direction: column !important;
        gap: 8px !important;
        transition: all 0.3s ease !important;
    }

    .nav-dropdown.active {
        display: flex !important;
        opacity: 1 !important;
        visibility: visible !important;
        animation: fadeInDropdown 0.3s ease forwards;
    }

    .dropdown-arrow {
        display: inline-block !important;
        transition: transform 0.3s ease !important;
        font-size: 14px !important;
        color: #34C759 !important;
        margin-left: 6px !important;
    }

    .dropdown-arrow.open {
        transform: rotate(180deg) !important;
    }

    .nav-dropdown-section-title {
        color: #34C759 !important;
        font-size: 11px !important;
        font-weight: 800 !important;
        letter-spacing: 1.5px !important;
        margin-bottom: 8px !important;
        padding-left: 6px !important;
    }

    .nav-dropdown-item {
        padding: 12px 14px !important;
        border-radius: 10px !important;
        background: rgba(255, 255, 255, 0.03) !important;
        border: 1px solid rgba(255, 255, 255, 0.06) !important;
        display: flex !important;
        align-items: center !important;
        gap: 14px !important;
        text-decoration: none !important;
        transition: all 0.2s ease !important;
    }

    .nav-dropdown-item:hover {
        background: rgba(32, 154, 72, 0.2) !important;
        border-color: rgba(52, 199, 89, 0.4) !important;
    }

    .dd-text {
        color: #ffffff !important;
        font-weight: 700 !important;
        font-size: 13.5px !important;
    }

    .dd-text span {
        color: #a0c4ae !important;
        font-size: 11.5px !important;
        display: block !important;
        margin-top: 2px !important;
    }

    .header-actions {
        display: none !important;
    }


    /* Hero section scaling */
    .hero-heading-ref {
        font-size: 32px;
        line-height: 1.25;
        letter-spacing: -0.5px;
    }

    .hero-sub-ref {
        font-size: 15px;
    }

    .hero-btns-pill {
        flex-direction: column;
        gap: 12px;
    }

    .hero-metrics-grid {
        grid-template-columns: 1fr;
    }

    /* Grid sections adjustments */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .deas-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .caps-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .journey-section .container>div {
        flex-direction: column;
    }

    .products-solutions-section .container>div,
    .mechanical-design-section .container>div,
    .rebar-schedules-section .container>div {
        grid-template-columns: 1fr !important;
        gap: 35px !important;
    }

    .products-solutions-section .container>div>div:nth-child(1),
    .mechanical-design-section .container>div>div:nth-child(1),
    .rebar-schedules-section .container>div>div:nth-child(1) {
        order: 2 !important;
    }

    .products-solutions-section .container>div>div:nth-child(2),
    .mechanical-design-section .container>div>div:nth-child(2),
    .rebar-schedules-section .container>div>div:nth-child(2) {
        order: 1 !important;
    }

    .mechanical-design-section div[style*="grid-template-columns: repeat(3"],
    .rebar-schedules-section div[style*="grid-template-columns: repeat(3"] {
        grid-template-columns: 1fr !important;
    }
}

@keyframes slideDownNav {
    from {
        opacity: 0;
        transform: translateY(-15px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}




@media (max-width: 600px) {
    .hero-heading-ref {
        font-size: 28px;
    }

    .hero-sub-ref {
        font-size: 14px;
    }

    .nav-container {
        padding: 0 20px;
    }

    .logo img {
        height: 30px;
    }

    .btn-pill-primary,
    .btn-pill-secondary {
        padding: 12px 24px;
        font-size: 13px;
    }
}

/* ===== Floating Action Buttons (WhatsApp & Back to Top) ===== */
.floating-actions-container {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9999;
    align-items: center;
}

.floating-btn {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    border: none;
    outline: none;
    position: relative;
}

.whatsapp-float {
    background: #25D366;
    color: #ffffff;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.whatsapp-float:hover {
    transform: scale(1.12) translateY(-3px);
    background: #20ba5a;
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float svg {
    width: 28px;
    height: 28px;
    fill: #ffffff;
}

.back-to-top-btn {
    background: #030806;
    color: #209A48;
    border: 1.5px solid rgba(32, 154, 72, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

.back-to-top-btn.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top-btn:hover {
    background: #209A48;
    color: #ffffff;
    border-color: #209A48;
    transform: scale(1.12) translateY(-3px);
    box-shadow: 0 10px 25px rgba(32, 154, 72, 0.4);
}

.back-to-top-btn svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
    stroke-width: 2.5;
    fill: none;
}

/* ===== WHY RENECHIP VALUE CARDS (3 + 2 Centered Grid) ===== */
.why-values {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    margin-top: 45px;
    margin-bottom: 65px;
}

@media (min-width: 992px) {

    .why-val-card:nth-child(1),
    .why-val-card:nth-child(2),
    .why-val-card:nth-child(3) {
        grid-column: span 2;
    }

    .why-val-card:nth-child(4) {
        grid-column: 2 / span 2;
    }

    .why-val-card:nth-child(5) {
        grid-column: 4 / span 2;
    }
}

.why-val-card {
    background: #ffffff;
    border: 1px solid rgba(32, 154, 72, 0.18);
    border-radius: 16px;
    padding: 35px 25px 30px 25px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.why-val-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: #209A48;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.why-val-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(32, 154, 72, 0.18);
    border-color: #209A48;
}

.why-val-card:hover::before {
    height: 6px;
    opacity: 1;
}

.why-val-img-wrapper {
    width: 86px;
    height: 86px;
    border-radius: 50%;
    background: #e6f4ea;
    padding: 4px;
    margin-bottom: 22px;
    border: 2px solid rgba(32, 154, 72, 0.35);
    box-shadow: 0 8px 20px rgba(32, 154, 72, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: all 0.3s ease;
}

.why-val-card:hover .why-val-img-wrapper {
    transform: scale(1.08);
    border-color: #209A48;
    box-shadow: 0 10px 25px rgba(32, 154, 72, 0.3);
}

.why-val-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.why-val-card h4 {
    color: #111111;
    font-size: 17px;
    font-weight: 800;
    font-family: var(--font-heading);
    margin: 0 0 12px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.why-val-card p {
    color: #555555;
    font-size: 13.5px;
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}

@media (max-width: 991px) {
    .why-values {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }

    .why-val-card {
        grid-column: auto !important;
    }
}

@media (max-width: 600px) {
    .why-values {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }

    .why-val-card {
        grid-column: auto !important;
    }
}

/* ===== BUILT FOR THE MOST DEMANDING SECTORS (HORIZONTAL ACCORDION) ===== */
.demanding-accordion {
    display: flex;
    height: 520px;
    gap: 16px;
    width: 100%;
}

.demanding-card {
    flex: 1;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    border: 1.5px solid rgba(32, 154, 72, 0.3);
    transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1), transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
    cursor: pointer;
}

.demanding-card:hover {
    flex: 3.2;
    border-color: #34C759;
    box-shadow: 0 15px 45px rgba(32, 154, 72, 0.4);
}

.demanding-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(3, 14, 8, 0.75) 45%, rgba(0, 0, 0, 0.95) 100%);
    transition: background 0.5s ease;
}

.demanding-card:hover .demanding-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(3, 20, 10, 0.85) 40%, rgba(0, 0, 0, 0.98) 100%);
}

.demanding-content {
    position: absolute;
    inset: 0;
    padding: 35px 28px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    z-index: 2;
}

.demanding-info h3 {
    color: #34C759 !important;
    font-size: 13px !important;
    font-weight: 800 !important;
    font-family: var(--font-heading) !important;
    text-transform: uppercase !important;
    letter-spacing: 1.5px !important;
    margin: 0 0 6px 0 !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.9) !important;
}

.demanding-info h4 {
    color: #ffffff !important;
    font-size: 26px;
    font-weight: 900 !important;
    font-family: var(--font-heading) !important;
    line-height: 1.2 !important;
    margin: 0 0 12px 0 !important;
    text-transform: uppercase !important;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 1), 0 0 20px rgba(0, 0, 0, 0.8) !important;
    transition: all 0.4s ease;
}

.demanding-card:hover .demanding-info h4 {
    font-size: 34px !important;
    color: #ffffff !important;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 1), 0 0 25px rgba(52, 199, 89, 0.35) !important;
}

.hover-reveal-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.demanding-card:hover .hover-reveal-content {
    max-height: 300px;
    opacity: 1;
    margin-top: 10px;
}

.demanding-desc {
    color: #e2f7ec !important;
    font-size: 14.5px !important;
    line-height: 1.6 !important;
    font-weight: 500 !important;
    margin: 0 0 18px 0 !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.9) !important;
}

.demanding-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.demanding-tags span {
    background: rgba(32, 154, 72, 0.25) !important;
    color: #34C759 !important;
    border: 1px solid rgba(52, 199, 89, 0.4) !important;
    font-size: 11.5px !important;
    font-weight: 700 !important;
    padding: 6px 14px !important;
    border-radius: 20px !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    backdrop-filter: blur(5px);
}

@media (max-width: 991px) {
    .demanding-accordion {
        flex-direction: column !important;
        height: auto !important;
        gap: 20px !important;
    }

    .demanding-card {
        flex: none !important;
        width: 100% !important;
        min-height: 380px !important;
    }

    .hover-reveal-content {
        max-height: none !important;
        opacity: 1 !important;
        margin-top: 10px !important;
    }

    .demanding-info h4 {
        font-size: 28px !important;
    }
}

/* ===== BIM & DIGITAL CONSTRUCTION SECTION SYSTEM ===== */
section.bim-section {
    background: #f8faf9;
    padding: 90px 0;
    border-bottom: 1px solid rgba(32, 154, 72, 0.15);
}

.bim-section .section-head {
    margin-bottom: 50px;
}

.bim-section .tagline {
    background: rgba(32, 154, 72, 0.1);
    color: #209A48;
    border: 1px solid rgba(32, 154, 72, 0.25);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 14px;
}

.bim-section .section-title {
    color: #111111 !important;
    font-size: 38px;
    font-weight: 800;
    font-family: var(--font-heading);
    margin-bottom: 12px;
}

.bim-section .section-title span {
    color: #209A48 !important;
}

.bim-section .section-desc {
    color: #555555 !important;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.6;
    margin: 0 auto;
}

.bim-layout {
    display: grid;
    grid-template-columns: 1fr 400px 1fr;
    gap: 28px;
    align-items: center;
    margin-top: 40px;
}

.bim-left,
.bim-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.bim-module {
    background: #ffffff;
    border: 1.5px solid rgba(32, 154, 72, 0.2);
    border-radius: 16px;
    padding: 20px 22px;
    display: flex;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    cursor: default;
    position: relative;
    overflow: hidden;
}

.bim-module::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: #209A48;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.bim-dot {
    width: 14px;
    height: 14px;
    min-width: 14px;
    background: #209A48;
    border-radius: 50%;
    margin-top: 4px;
    box-shadow: 0 0 10px rgba(32, 154, 72, 0.6);
    position: relative;
    transition: transform 0.3s ease;
}

.bim-dot::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    border: 1.5px solid rgba(32, 154, 72, 0.4);
}

.bim-module:hover {
    transform: translateY(-4px);
    background: #ffffff;
    border-color: #209A48;
    box-shadow: 0 12px 30px rgba(32, 154, 72, 0.2);
}

.bim-module:hover::before {
    opacity: 1;
}

.bim-module:hover .bim-dot {
    transform: scale(1.25);
    background: #34C759;
}

.bim-module h4 {
    color: #111111 !important;
    font-size: 16.5px !important;
    font-weight: 800 !important;
    font-family: var(--font-heading) !important;
    margin: 0 0 6px 0 !important;
    line-height: 1.3 !important;
}

.bim-module p {
    color: #555555 !important;
    font-size: 13.5px !important;
    line-height: 1.55 !important;
    font-weight: 500 !important;
    margin: 0 !important;
}

.bim-center-img {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    border: 3px solid rgba(32, 154, 72, 0.3);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12), 0 0 25px rgba(32, 154, 72, 0.15);
    transition: all 0.4s ease;
    height: 100%;
    min-height: 520px;
}

.bim-center-img img {
    width: 100%;
    height: 100%;
    min-height: 520px;
    object-fit: cover;
    display: block;
    border-radius: 20px;
    transition: transform 0.5s ease;
}

.bim-center-img:hover {
    border-color: #209A48;
    box-shadow: 0 25px 55px rgba(32, 154, 72, 0.3);
}

.bim-center-img:hover img {
    transform: scale(1.04);
}

.bim-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.bb-item {
    background: #ffffff;
    border: 1.5px solid rgba(32, 154, 72, 0.2);
    border-radius: 16px;
    padding: 22px 20px;
    text-align: center;
    transition: all 0.35s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.bb-item:hover {
    transform: translateY(-4px);
    border-color: #209A48;
    box-shadow: 0 12px 30px rgba(32, 154, 72, 0.2);
}

.bb-item h5 {
    color: #209A48 !important;
    font-size: 16.5px !important;
    font-weight: 800 !important;
    font-family: var(--font-heading) !important;
    margin: 0 0 6px 0 !important;
}

.bb-item p {
    color: #555555 !important;
    font-size: 13.5px !important;
    line-height: 1.5 !important;
    font-weight: 500 !important;
    margin: 0 !important;
}

@media (max-width: 1100px) {
    .bim-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .bim-center-img {
        order: -1;
        min-height: 380px;
    }

    .bim-center-img img {
        min-height: 380px;
        max-height: 420px;
    }
}

/* Strict Document Width & Overflow Guard */
html,
body {
    width: 100% !important;
    max-width: 100vw !important;
    overflow-x: hidden !important;
    position: relative;
}

section,
header,
footer,
div {
    max-width: 100% !important;
}

/* ==========================================================================
   COMPREHENSIVE MOBILE & TABLET RESPONSIVE SYSTEM
   ========================================================================== */

@media (max-width: 991px) {

    /* Global Container Width & Padding */
    .container {
        padding-left: 20px !important;
        padding-right: 20px !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: hidden !important;
    }

    /* Leadership Team Grid Fix */
    .leadership-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }

    /* Why Values & Stats Grid Fix */
    .why-values,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }

    /* Force all inline HTML grids to collapse cleanly into single column on mobile/tablet */
    div[style*="grid-template-columns: repeat(4"],
    div[style*="grid-template-columns: repeat(3"],
    div[style*="grid-template-columns: 1.1fr"],
    div[style*="grid-template-columns: 1fr 1fr"],
    div[style*="grid-template-columns: repeat(auto-fit"] {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    /* Header Nav & Menu Toggle Fixes */
    header {
        padding: 14px 0 !important;
    }

    .nav-container {
        padding: 0 18px !important;
        width: 100% !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
    }

    .menu-toggle {
        display: flex !important;
        flex-direction: column;
        justify-content: center;
        gap: 5px;
        width: 38px;
        height: 38px;
        cursor: pointer;
        z-index: 1001;
        background: rgba(32, 154, 72, 0.2) !important;
        padding: 8px;
        border-radius: 8px;
        border: 1px solid rgba(52, 199, 89, 0.5) !important;
        margin-left: auto;
    }

    .menu-toggle span {
        width: 100%;
        height: 2.5px;
        background-color: #ffffff !important;
        border-radius: 2px;
    }

    .nav-menu {
        width: 100% !important;
        left: 0 !important;
        right: 0 !important;
        top: 64px !important;
        height: calc(100vh - 64px) !important;
        padding: 20px 20px 80px 20px !important;
    }

    /* Section Headings Adjustments */
    .section-title {
        font-size: 30px !important;
        line-height: 1.25 !important;
        margin-bottom: 15px !important;
    }

    .section-head {
        margin-bottom: 40px !important;
    }

    .section-desc {
        font-size: 15px !important;
    }

    /* Card Padding Optimizations */
    .glass-card {
        padding: 24px 20px !important;
        border-radius: 14px !important;
    }
}

@media (max-width: 768px) {

    /* Leadership Grid Single Column on Phones */
    .leadership-grid,
    .why-values,
    .stats-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .leader-img-wrapper {
        height: auto !important;
    }

    .leader-img-wrapper img {
        height: auto !important;
        max-width: 100% !important;
    }

    /* Our Journey Timeline Mobile Transformation */
    .journey-section {
        padding: 50px 0 !important;
        overflow-x: hidden !important;
    }

    .journey-section div[style*="padding: 60px 0"] {
        padding: 30px 15px !important;
        border-radius: 16px !important;
    }

    .journey-section div[style*="padding: 0 40px"] {
        padding: 0 10px !important;
    }

    .journey-section div[style*="position: absolute; top: 30px"] {
        display: none !important;
        /* Hide desktop horizontal line */
    }

    .journey-section div[style*="display: flex; justify-content: space-between"] {
        flex-direction: column !important;
        gap: 24px !important;
        align-items: center !important;
    }

    .journey-section div[style*="flex: 1; display: flex; flex-direction: column"] {
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Mobile Typography Scaling */
    .hero-heading-ref,
    .hero-heading,
    h1.hero-heading-ref {
        font-size: 28px !important;
        line-height: 1.22 !important;
        letter-spacing: -0.5px !important;
        margin-bottom: 16px !important;
    }

    .hero-sub-ref,
    .hero-desc {
        font-size: 14.5px !important;
        line-height: 1.6 !important;
        margin-bottom: 25px !important;
    }

    .page-banner {
        padding-top: 115px !important;
        padding-bottom: 45px !important;
    }

    /* Mobile Buttons */
    .hero-btns-pill,
    .hero-btns {
        flex-direction: column !important;
        gap: 12px !important;
        width: 100% !important;
    }

    .btn-pill-primary,
    .btn-pill-secondary,
    .brochure-btn,
    .btn {
        width: 100% !important;
        text-align: center !important;
        justify-content: center !important;
        padding: 14px 24px !important;
    }

    /* Demanding Accordion Mobile */
    .demanding-accordion {
        flex-direction: column !important;
        height: auto !important;
        gap: 16px !important;
    }

    .demanding-card {
        min-height: 300px !important;
        flex: none !important;
        width: 100% !important;
        border-radius: 14px !important;
    }

    .demanding-content {
        padding: 22px 18px !important;
    }

    .demanding-info h4 {
        font-size: 22px !important;
    }

    /* Form Layout on Mobile */
    form#contact-form div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }

    /* Footer Mobile Formatting */
    .corporate-footer {
        padding: 50px 0 25px 0 !important;
    }

    .footer-copyright-bar {
        flex-direction: column !important;
        gap: 12px !important;
        text-align: center !important;
    }
}

@media (max-width: 480px) {
    .container {
        padding-left: 14px !important;
        padding-right: 14px !important;
    }

    .hero-pill-badge {
        font-size: 10.5px !important;
        padding: 6px 16px !important;
    }

    .floating-actions-container {
        bottom: 16px !important;
        right: 16px !important;
        gap: 10px !important;
    }

    .floating-btn {
        width: 46px !important;
        height: 46px !important;
    }
}

/* ===== EXACT PDF TIMELINE REPLICA STYLES ===== */
.pdf-timeline-wrap {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
    position: relative;
}

.pdf-t-row {
    display: grid;
    grid-template-columns: 1fr 30px 1fr;
    align-items: flex-start;
    position: relative;
}

.pdf-t-col.center {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    min-height: 75px;
    padding-top: 4px;
}

.pdf-v-line {
    position: absolute;
    top: -20px;
    bottom: -20px;
    width: 2.5px;
    background: #209a48;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.pdf-v-dot {
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: #209a48;
    z-index: 2;
}

.pdf-t-col.left {
    text-align: right;
    padding-right: 12px;
}

.pdf-t-col.right {
    text-align: left;
    padding-left: 12px;
}

.pdf-t-head {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-heading);
    position: relative;
}

.pdf-t-col.left .pdf-t-head {
    justify-content: flex-end;
}

.pdf-t-col.right .pdf-t-head {
    justify-content: flex-start;
}

.pdf-t-line-connector {
    height: 2px;
    background: #209a48;
    width: 35px;
    flex-shrink: 0;
}

.pdf-t-year {
    color: #209a48;
    font-size: 17px;
    font-weight: 800;
    font-family: var(--font-heading);
}

.pdf-t-brand {
    color: #000000;
    font-size: 17px;
    font-weight: 800;
    font-family: var(--font-heading);
}

.pdf-t-title-inline {
    color: #209a48;
    font-size: 16.5px;
    font-weight: 800;
    font-family: var(--font-heading);
}

.pdf-t-title {
    color: #000000;
    font-size: 15.5px;
    font-weight: 800;
    font-family: var(--font-heading);
    margin-top: 3px;
    margin-bottom: 2px;
}

.pdf-t-desc {
    color: #333333;
    font-size: 13px;
    line-height: 1.5;
    font-weight: 500;
    margin: 4px 0 0 0;
    max-width: 360px;
}

.pdf-t-col.left .pdf-t-desc {
    margin-left: auto;
}

@media (max-width: 768px) {
    .pdf-journey-header {
        margin-bottom: 30px !important;
    }

    .pdf-journey-header div[style*="background: #209a48"] {
        padding: 8px 28px !important;
        font-size: 18px !important;
        margin: 0 !important;
    }

    .pdf-hdr-line {
        display: none !important;
    }

    .pdf-timeline-wrap {
        gap: 24px !important;
        padding: 0 4px !important;
    }

    .pdf-t-row {
        grid-template-columns: 20px 1fr !important;
        gap: 12px !important;
    }

    .pdf-t-col.empty {
        display: none !important;
    }

    .pdf-t-col.left,
    .pdf-t-col.right {
        grid-column: 2 !important;
        text-align: left !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
        width: 100% !important;
        min-width: 0 !important;
        overflow: hidden !important;
    }

    .pdf-t-head {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: flex-start !important;
        flex-wrap: wrap !important;
        gap: 6px !important;
        width: 100% !important;
    }

    .pdf-t-line-connector {
        order: 1 !important;
        width: 18px !important;
        height: 2px !important;
        background: #209a48 !important;
        flex-shrink: 0 !important;
        margin-right: 2px !important;
    }

    .pdf-t-year {
        order: 2 !important;
        font-size: 16px !important;
        font-weight: 800 !important;
    }

    .pdf-t-brand,
    .pdf-t-title-inline {
        order: 3 !important;
        font-size: 15px !important;
        font-weight: 800 !important;
        word-break: break-word !important;
    }

    .pdf-t-head img {
        order: 3 !important;
        height: 18px !important;
        vertical-align: middle !important;
    }

    .pdf-t-title {
        font-size: 14.5px !important;
        margin-top: 4px !important;
        margin-bottom: 2px !important;
    }

    .pdf-t-desc {
        margin-left: 0 !important;
        max-width: 100% !important;
        font-size: 12.5px !important;
        line-height: 1.45 !important;
        word-break: break-word !important;
    }

    .pdf-t-col.center {
        grid-column: 1 !important;
        grid-row: 1 !important;
    }

    .pdf-pillars-row {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 30px !important;
    }
}

/* ===== GLOBAL MOBILE & TABLET RESPONSIVE OVERHAUL ===== */
.page-banner {
    padding-top: 90px;
    padding-bottom: 25px;
}

@media (max-width: 900px) {

    /* Collapse ALL 2-column inline grid layouts into 1 column */
    .about .container>div[style*="grid-template-columns"],
    .who-we-are .container>div[style*="grid-template-columns"],
    .products-solutions-section .container>div[style*="grid-template-columns"],
    .mechanical-design-section .container>div[style*="grid-template-columns"],
    .rebar-schedules-section .container>div[style*="grid-template-columns"],
    .page-banner .container>div[style*="grid-template-columns"],
    div[style*="grid-template-columns: 1.15fr 0.85fr"],
    div[style*="grid-template-columns: 0.85fr 1.15fr"],
    div[style*="grid-template-columns: 1fr 1.15fr"],
    div[style*="grid-template-columns: 1.15fr 1fr"],
    div[style*="grid-template-columns: 1fr 1.1fr"],
    div[style*="grid-template-columns: 1.1fr 1fr"],
    div[style*="grid-template-columns: repeat(2, 1fr)"] {
        grid-template-columns: 1fr !important;
        gap: 24px !important;
    }
}

@media (max-width: 768px) {

    /* Page Banner & Header clearance on Mobile */
    .page-banner {
        padding-top: 125px !important;
        padding-bottom: 45px !important;
    }

    .about {
        padding: 45px 0 !important;
    }

    /* About section image height & responsiveness on Mobile */
    .about img[src*="about_cad_gear"],
    .about div[style*="border-radius: 16px"] img {
        min-height: 220px !important;
        max-height: 320px !important;
        height: 250px !important;
        object-fit: cover !important;
    }

    /* Prevent minmax grid overflow on phone screens */
    div[style*="minmax(460px"],
    div[style*="minmax(500px"],
    div[style*="minmax(400px"],
    div[style*="minmax(360px"],
    div[style*="minmax(320px"] {
        grid-template-columns: 1fr !important;
    }

    /* Vision & Mission glass cards on mobile */
    .vm-glass-card {
        padding: 24px 20px !important;
    }

    /* Who We Are & Core Strengths Mobile Section Fixes */
    .who-we-are-section .container>div[style*="grid-template-columns: 1.15fr 0.85fr"],
    .who-we-are-section .container>div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 28px !important;
    }

    .who-we-are-img-wrap {
        width: 100% !important;
        height: auto !important;
        min-height: 0 !important;
    }

    .who-we-are-img-wrap img {
        height: 260px !important;
        min-height: 220px !important;
        max-height: 320px !important;
        object-fit: cover !important;
        width: 100% !important;
    }
}

@media (max-width: 600px) {
    .who-we-are-section div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 14px !important;
    }

    .who-we-are-card {
        min-height: 0 !important;
        padding: 20px 18px !important;
    }

    /* Business Verticals (Capabilities) 5-Card Grid Mobile Overhaul */
    .business-verticals-section div[style*="grid-template-columns: repeat(2, 1fr)"],
    .business-verticals-section div[style*="grid-template-columns"],
    div[style*="grid-template-columns: repeat(2, 1fr)"],
    div[style*="grid-template-columns: repeat(3, 1fr)"] {
        grid-template-columns: 1fr !important;
        gap: 18px !important;
    }

    .bv-card {
        width: 100% !important;
        padding: 20px 18px !important;
    }

    .bv-card h4 {
        font-size: 14.5px !important;
        line-height: 1.35 !important;
    }

    /* BIM Feature Cards Mobile Spacing Fix */
    .bim-section div[style*="grid-template-columns: repeat(auto-fit, minmax(500px, 1fr))"],
    .bim-section div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }

    .bim-section div[style*="grid-template-columns: 48px 1fr 130px"] {
        grid-template-columns: 42px 1fr !important;
        gap: 12px !important;
    }

    .bim-section div[style*="grid-template-columns: 48px 1fr 130px"]>div:last-child {
        display: none !important;
    }
}

/* ===== COMPREHENSIVE GLOBAL TEXT JUSTIFICATION FOR ALL SECTIONS ===== */
p,
li,
ul li,
ol li,
.bv-tag,
.bv-card p,
.bv-card div,
.who-we-are-card p,
.who-we-are-card div,
.leader-expertise,
.leader-exp,
.leader-info p,
.vm-glass-card p,
.vm-glass-card div,
.bim-section p,
.bim-section div,
.mechanical-design-section p,
.rebar-schedules-section p,
.products-solutions-section p,
.case-study-card p,
.event-card p,
.blog-card p,
.staffing-card p,
.journey-section p,
.about p,
.about div,
.f-address,
.footer-address,
div[style*="font-size: 14"],
div[style*="font-size: 15"],
div[style*="font-size: 16"],
div[style*="font-size: 13.5"],
div[style*="font-size:14"],
div[style*="font-size:15"],
div[style*="font-size:16"],
p[style*="font-size"] {
    text-align: justify !important;
    text-justify: inter-word !important;
}

/* Retain center alignment ONLY for section heads, titles, hero badges, and stat values */
h1,
h2,
h3,
h4,
h5,
h6,
.section-title,
.tagline,
.section-head,
.section-head *,
.text-center,
.text-center *,
.page-banner[style*="text-align: center"] p,
.page-banner[style*="text-align:center"] p,
.pill-badge,
.hero-pill-badge,
.stat-val,
.brochure-btn,
.nav-link {
    text-align: center !important;
}

.text-center,
.text-center p,
.text-center div {
    text-align: center !important;
}

/* ===== INFINITE LOGO MARQUEE SCROLL (OUR CLIENTS & PARTNERS) ===== */
.logo-marquee-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    padding: 22px 0;
    mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

.logo-marquee-track {
    display: flex;
    align-items: center;
    gap: 60px;
    width: max-content;
    animation: marqueeScrollLeft 32s linear infinite;
}

.logo-marquee-track.reverse {
    animation: marqueeScrollRight 30s linear infinite;
}

.logo-marquee-wrapper:hover .logo-marquee-track {
    animation-play-state: paused;
}

@keyframes marqueeScrollLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes marqueeScrollRight {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* ===== ULTRA-COMPACT EXECUTIVE BIM CARDS ===== */
.bim-exec-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.bim-exec-card {
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    border-top: 3.5px solid #209a48;
    padding: 15px 16px;
    transition: all 0.25s ease;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.03);
}

.bim-exec-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(32, 154, 72, 0.12);
}

.bim-exec-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.bim-exec-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: rgba(32, 154, 72, 0.08);
    border: 1px solid rgba(32, 154, 72, 0.18);
    color: #209a48;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bim-exec-thumb {
    width: 54px;
    height: 36px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #cbd5e1;
    flex-shrink: 0;
}

.bim-exec-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.bim-exec-title {
    font-size: 14.5px;
    font-weight: 800;
    color: #0f172a;
    font-family: var(--font-heading);
    margin: 0 0 6px 0;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    line-height: 1.3;
}

.bim-exec-desc {
    font-size: 13px;
    color: #334155;
    margin: 0;
    line-height: 1.45;
    font-weight: 500;
}

@media (min-width: 992px) {
    .bim-exec-card:last-child:nth-child(3n+1) {
        grid-column: 2;
    }
}

@media (max-width: 991px) {
    .bim-exec-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 640px) {
    .bim-exec-grid {
        grid-template-columns: 1fr !important;
    }
}

/* Railway Business Flagship Section Styles */
.rail-clean-hero {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1.5px solid rgba(32, 154, 72, 0.25);
    box-shadow: 0 16px 45px rgba(32, 154, 72, 0.12);
    margin-bottom: 45px;
    background: #0f172a;
}

.rail-clean-hero img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
    transition: transform 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.rail-clean-hero:hover img {
    transform: scale(1.025);
}

.rail-hero-stat-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(32, 154, 72, 0.3);
    border-radius: 14px;
    padding: 16px 26px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.rail-clean-box {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 30px 26px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.35s ease;
}

.rail-clean-box:hover {
    border-color: #209a48;
    box-shadow: 0 18px 40px rgba(32, 154, 72, 0.14);
}

.rail-clean-header {
    background: linear-gradient(135deg, #209a48 0%, #166e33 100%);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 17.5px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 14px 22px;
    border-radius: 12px;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 6px 18px rgba(32, 154, 72, 0.25);
}

.rail-item-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-left: 3.5px solid #209a48;
    transition: all 0.3s ease;
}

.rail-item-card:hover {
    background: #ffffff;
    border-color: #209a48;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(32, 154, 72, 0.12);
}

.rail-item-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: rgba(32, 154, 72, 0.1);
    color: #209a48;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.rail-item-title {
    color: #0f172a;
    font-size: 15px;
    font-weight: 800;
    font-family: var(--font-heading);
    margin-bottom: 3px;
}

.rail-item-desc {
    color: #475569;
    font-size: 13px;
    line-height: 1.45;
    margin: 0;
    font-weight: 500;
}

.rail-grid-2 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.rail-thumb-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.rail-thumb-card {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    transition: all 0.35s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.rail-thumb-card:hover {
    transform: translateY(-6px);
    border-color: #209a48;
    box-shadow: 0 16px 35px rgba(32, 154, 72, 0.2);
}

.rail-thumb-img-wrap {
    height: 165px;
    width: 100%;
    overflow: hidden;
    position: relative;
    background: #0f172a;
}

.rail-thumb-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.rail-thumb-card:hover .rail-thumb-img-wrap img {
    transform: scale(1.08);
}

.rail-thumb-label {
    background: #209a48;
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 11px 12px;
    text-align: center;
}

@media (max-width: 1200px) {
    .rail-grid-2 {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 992px) {
    .rail-thumb-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

@media (max-width: 640px) {

    .rail-grid-2,
    .rail-thumb-grid {
        grid-template-columns: 1fr !important;
    }
}