@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;
}

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);
}

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: 11px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 4px;
}

.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: 13px;
    letter-spacing: 2px;
    padding: 12px 40px;
    margin-top: 20px;
    box-shadow: 0 0 30px rgba(52, 199, 89, 0.25);
    text-transform: uppercase;
    display: inline-block;
    backdrop-filter: blur(10px);
}

.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;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--bg-primary);
        border-bottom: 1.5px solid var(--border-glow);
        padding: 30px;
        flex-direction: column;
        gap: 20px;
        animation: fadeIn 0.3s ease forwards;
    }

    .nav-menu.open {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .header-actions {
        display: none;
    }
}

/* ===== 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: 100px 0;
    background: #030806;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.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-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 14px 22px;
    font-size: 14px;
    font-weight: 700;
    color: #c8e0d1;
    letter-spacing: 0.5px;
    transition: var(--transition);
    white-space: nowrap;
}

.client-logo-item:hover {
    background: rgba(32, 154, 72, 0.1);
    border-color: var(--accent);
    color: var(--text-main);
    transform: translateY(-3px);
}

.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(4, 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: #ffffff;
    border: 1px solid rgba(32, 154, 72, 0.2);
    border-radius: 12px;
    padding: 14px 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 130px;
    height: 60px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.client-logo-item:hover {
    background: rgba(32, 154, 72, 0.12);
    border-color: #209A48;
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(32, 154, 72, 0.25);
}

.client-logo-item img,
.client-logo-item svg {
    max-height: 32px;
    max-width: 110px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: all 0.3s 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: var(--text-main);
    font-family: var(--font-body);
}

.corporate-footer .footer-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1fr;
    gap: 45px;
    margin-bottom: 50px;
}

.corporate-footer .f-logo img {
    height: 48px;
    width: auto;
    object-fit: contain;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(32, 154, 72, 0.3));
}

.corporate-footer .f-address {
    color: #a0aec0;
    font-size: 14.5px;
    line-height: 1.7;
    max-width: 380px;
    margin-bottom: 25px;
}

.corporate-footer .social-items-row {
    display: flex;
    gap: 12px;
    align-items: center;
}

.corporate-footer .social-icon-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    text-decoration: none;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.03);
}

.corporate-footer .social-icon-btn:hover {
    background: #209A48;
    border-color: #209A48;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(32, 154, 72, 0.4);
}

.corporate-footer .social-icon-btn svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.corporate-footer .footer-col h4 {
    color: var(--text-main);
    font-size: 18px;
    font-weight: 800;
    font-family: var(--font-heading);
    margin-bottom: 22px;
    letter-spacing: 0.5px;
}

.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: #cbd5e0;
    font-size: 14.5px;
    text-decoration: none;
    transition: all 0.25s ease;
    font-weight: 500;
}

.corporate-footer .footer-links-list a:hover {
    color: #209A48;
    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: var(--text-muted);
    font-size: 13.5px;
}

.corporate-footer .footer-copyright-bar a {
    color: #209A48;
    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% + 20px);
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background: #ffffff;
    min-width: 320px;
    border-radius: 14px;
    padding: 18px 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(32, 154, 72, 0.08);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    pointer-events: none;
    z-index: 1000;
}

.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 rgba(32, 154, 72, 0.08);
    border-left: 1px solid rgba(32, 154, 72, 0.08);
}

.nav-dropdown-section-title {
    color: var(--accent);
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px dashed rgba(32, 154, 72, 0.15);
    padding-left: 10px;
}

.nav-dropdown-item {
    display: flex;
    align-items: center;
    padding: 12px 10px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.nav-dropdown-item:hover {
    background: rgba(32, 154, 72, 0.04);
}

.nav-dropdown-item .dd-icon {
    font-size: 20px;
    margin-right: 15px;
    background: rgba(32, 154, 72, 0.06);
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    color: var(--accent);
    border: 1px solid rgba(32, 154, 72, 0.1);
    transition: all 0.2s ease;
}

.nav-dropdown-item:hover .dd-icon {
    background: var(--accent);
    color: #ffffff;
}

.nav-dropdown-item .dd-text {
    display: flex;
    flex-direction: column;
    color: var(--text-main);
    font-size: 14px;
    font-weight: 700;
}

.nav-dropdown-item .dd-text span {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    margin-top: 3px;
}

.nav-dropdown-divider {
    height: 1px;
    background: rgba(32, 154, 72, 0.08);
    margin: 10px;
}

/* 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: 1024px) {

    /* Header navigation adjustments */
    .nav-menu {
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(3, 8, 6, 0.95);
        padding: 20px 0;
        display: none;
        gap: 15px;
    }

    .nav-menu.open {
        display: flex;
    }

    .menu-toggle {
        display: flex;
    }

    .header-actions {
        display: none;
    }

    /* Hero section scaling */
    .hero-heading-ref {
        font-size: 36px;
        line-height: 1.2;
        letter-spacing: -1px;
    }

    .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;
    }
}

@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;
    }
}