@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700;800&display=swap');

/* --- FUTURISTIC DESIGN SYSTEM --- */
:root {
    /* Colors - Clean Tech Light Theme */
    --bg-deep: #f3f7f9;
    --bg-base: #f8fafc;
    --bg-surface: #ffffff;
    --bg-surface-elevated: #ffffff;
    
    --accent-cyan: #0088cc;
    --accent-cyan-rgb: 0, 136, 204;
    --accent-lime: #7aa802;
    --accent-lime-rgb: 122, 168, 2;
    --accent-blue: #0066cc;
    
    --text-primary: #0f172a;
    --text-secondary: #334155;
    --text-muted: #64748b;
    
    --border-glow: rgba(0, 136, 204, 0.2);
    --border-muted: rgba(15, 23, 42, 0.08);
    
    /* Glassmorphism on Light */
    --glass-bg: rgba(255, 255, 255, 0.85);
    --glass-border: rgba(0, 136, 204, 0.25);
    --glass-shadow: 0 8px 30px rgba(15, 23, 42, 0.04);
    
    /* Fonts */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Layout */
    --max-width: 1280px;
    --header-height: 80px;
    --border-radius: 12px;
    --transition-smooth: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Reset & Base Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--bg-deep);
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-base);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: var(--text-primary);
}

p {
    color: var(--text-secondary);
    font-weight: 400;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Utility Layouts */
.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section-padding {
    padding: 6rem 0;
}

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

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

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* Responsive Grid Adjustments */
@media (max-width: 991px) {
    .grid-3, .grid-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .grid-3, .grid-4, .grid-2 {
        grid-template-columns: 1fr;
    }
    .container {
        padding: 0 1.5rem;
    }
    .section-padding {
        padding: 4rem 0;
    }
}

/* Glassmorphism Card Template */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border-muted);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    box-shadow: var(--glass-shadow);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(var(--accent-cyan-rgb), 0.05) 0%, transparent 100%);
    opacity: 0;
    transition: var(--transition-smooth);
    z-index: 1;
}

.glass-card:hover {
    border-color: var(--glass-border);
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 240, 255, 0.08);
}

.glass-card:hover::before {
    opacity: 1;
}

.glass-card * {
    position: relative;
    z-index: 2;
}

/* Futuristic Typography & Accents */
.text-glow-cyan {
    text-shadow: 0 0 15px rgba(var(--accent-cyan-rgb), 0.6);
    color: var(--accent-cyan);
}

.text-glow-lime {
    text-shadow: 0 0 15px rgba(var(--accent-lime-rgb), 0.6);
    color: var(--accent-lime);
}

.neon-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.neon-title span {
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-lime));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.sub-title {
    text-transform: uppercase;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--accent-cyan);
    margin-bottom: 0.75rem;
    display: inline-block;
}

/* Buttons with Futuristic Glowing Hover Effects */
.btn-futuristic {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-smooth);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn-cyan {
    background: transparent;
    color: var(--accent-cyan);
    border: 1px solid var(--accent-cyan);
    box-shadow: 0 0 10px rgba(var(--accent-cyan-rgb), 0.1);
}

.btn-cyan::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(var(--accent-cyan-rgb), 0.2), transparent);
    transition: 0.5s;
    z-index: -1;
}

.btn-cyan:hover::before {
    left: 100%;
}

.btn-cyan:hover {
    background: rgba(var(--accent-cyan-rgb), 0.08);
    box-shadow: 0 0 20px rgba(var(--accent-cyan-rgb), 0.4);
    text-shadow: 0 0 5px #fff;
    border-color: #fff;
}

.btn-lime {
    background: var(--accent-lime);
    color: var(--bg-deep);
    border: 1px solid var(--accent-lime);
    font-weight: 700;
}

.btn-lime:hover {
    background: transparent;
    color: var(--accent-lime);
    box-shadow: 0 0 25px rgba(var(--accent-lime-rgb), 0.5);
}

/* Header & Navigation Styles */
header.cyber-navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border-muted);
    z-index: 1000;
    transition: var(--transition-smooth);
}

header.cyber-navbar.scrolled {
    height: 70px;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid rgba(var(--accent-cyan-rgb), 0.2);
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.navbar-container nav {
    height: 100%;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.nav-brand .brand-logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-brand .brand-logo span.ampersand {
    color: var(--accent-lime);
}

.nav-brand .brand-sub {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--text-muted);
    display: block;
    margin-top: -3px;
}

.nav-menu {
    display: flex;
    align-items: stretch;
    gap: 2.2rem;
    height: 100%;
}

.nav-menu > li {
    display: flex;
    align-items: center;
    position: relative;
    height: 100%;
}

.nav-link {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--text-secondary);
    padding: 0.6rem 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-lime));
    transition: var(--transition-smooth);
}

.nav-link:hover, .nav-link.active {
    color: var(--text-primary);
}

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

/* Premium Dropdown Menu Styles */
.nav-item-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(var(--accent-cyan-rgb), 0.2);
    border-radius: var(--border-radius);
    box-shadow: 0 10px 40px rgba(0, 136, 204, 0.08), var(--glass-shadow);
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    padding: 1rem 0;
    margin: 0;
    list-style: none;
    z-index: 1100;
}

/* Small anchor arrow on top of dropdown menu */
.dropdown-menu::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 10px;
    height: 10px;
    background: #ffffff;
    border-left: 1px solid rgba(var(--accent-cyan-rgb), 0.2);
    border-top: 1px solid rgba(var(--accent-cyan-rgb), 0.2);
}

.dropdown-label {
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--text-muted);
    padding: 0 1.5rem 0.6rem;
    text-transform: uppercase;
    border-bottom: 1px solid var(--border-muted);
    margin-bottom: 0.5rem;
}

.dropdown-menu li {
    padding: 0;
    text-align: left;
}

.dropdown-menu a {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding: 0.7rem 1.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.75px;
    color: var(--text-secondary) !important;
    transition: all 0.2s ease;
    border-left: 3px solid transparent;
}

.dropdown-menu a:hover {
    background: rgba(var(--accent-cyan-rgb), 0.03);
    color: var(--accent-cyan) !important;
    border-left-color: var(--accent-cyan);
    padding-left: 1.7rem;
}

/* Add dynamic arrows next to list links on hover */
.dropdown-menu a::after {
    content: '\f061';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.7rem;
    opacity: 0;
    transform: translateX(-5px);
    transition: all 0.2s ease;
    color: var(--accent-cyan);
}

.dropdown-menu a:hover::after {
    opacity: 1;
    transform: translateX(0);
}

.nav-item-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.nav-item-dropdown:hover .nav-link i {
    transform: rotate(180deg);
}

/* Mobile Nav Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    z-index: 1010;
}

.mobile-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background-color: var(--text-primary);
    transition: var(--transition-smooth);
}

@media (max-width: 991px) {
    .mobile-toggle {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--bg-surface);
        border-left: 1px solid var(--border-glow);
        flex-direction: column;
        justify-content: center;
        gap: 3rem;
        transition: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        z-index: 1005;
    }
    .nav-menu.open {
        right: 0;
    }
    .mobile-toggle.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .mobile-toggle.open span:nth-child(2) {
        opacity: 0;
    }
    .mobile-toggle.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
}

/* Hero Split Banner CSS */
.hero-section {
    position: relative;
    padding: calc(var(--header-height) + 4rem) 0 6rem;
    overflow: hidden;
}

.hero-bg-fx {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.hero-bg-grid {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(ellipse at 50% 50%, rgba(var(--accent-cyan-rgb), 0.05), transparent 70%),
        linear-gradient(rgba(var(--accent-cyan-rgb), 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(var(--accent-cyan-rgb), 0.04) 1px, transparent 1px);
    background-size: 100% 100%, 50px 50px, 50px 50px;
    opacity: 0.8;
}

/* Split Brand Blocks */
.brand-split-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.brand-split-card {
    border-radius: var(--border-radius);
    padding: 3rem;
    position: relative;
    transition: var(--transition-smooth);
    background: var(--bg-surface);
    border: 1px solid var(--border-muted);
    box-shadow: var(--glass-shadow);
}

.brand-split-card.vardhaman {
    border-left: 4px solid var(--accent-cyan);
}

.brand-split-card.vyokta {
    border-left: 4px solid var(--accent-lime);
}

.brand-split-card:hover {
    background: var(--bg-surface);
    transform: scale(1.02);
}

.brand-split-card.vardhaman:hover {
    box-shadow: 0 10px 30px rgba(var(--accent-cyan-rgb), 0.15);
    border-color: rgba(var(--accent-cyan-rgb), 0.5);
}

.brand-split-card.vyokta:hover {
    box-shadow: 0 10px 30px rgba(var(--accent-lime-rgb), 0.15);
    border-color: rgba(var(--accent-lime-rgb), 0.5);
}

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

/* Interactive Map Section */
.map-canvas {
    background: var(--bg-surface);
    border: 1px solid var(--border-muted);
    border-radius: var(--border-radius);
    height: 450px;
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

/* Spec Sheets Tables */
.spec-table-container {
    overflow-x: auto;
    margin: 2rem 0;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.spec-table th, .spec-table td {
    padding: 1rem 1.5rem;
    text-align: left;
    border-bottom: 1px solid var(--border-muted);
}

.spec-table th {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--text-primary);
    background-color: var(--bg-surface-elevated);
    border-bottom: 2px solid var(--accent-cyan);
}

.spec-table tr:hover {
    background-color: rgba(var(--accent-cyan-rgb), 0.03);
}

/* Form Styles */
.cyber-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    color: var(--text-primary);
}

.form-group input, .form-group select, .form-group textarea {
    background-color: var(--bg-surface-elevated);
    border: 1px solid var(--border-muted);
    border-radius: 4px;
    color: var(--text-primary);
    padding: 1rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--accent-cyan);
    box-shadow: 0 0 10px rgba(var(--accent-cyan-rgb), 0.25);
}

/* Tech Grid Cards list */
.tech-list {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.tech-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
}

.tech-item::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: var(--accent-cyan);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--accent-cyan);
}

/* Footer Styles */
footer.cyber-footer {
    background: var(--bg-deep);
    border-top: 1px solid var(--border-muted);
    padding: 5rem 0 2rem;
    color: var(--text-secondary);
}

footer.cyber-footer h3, footer.cyber-footer h4 {
    color: var(--text-primary) !important;
}

footer.cyber-footer p, footer.cyber-footer a {
    color: var(--text-secondary) !important;
}

footer.cyber-footer a:hover {
    color: var(--accent-cyan) !important;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 2fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

@media (max-width: 991px) {
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
}

@media (max-width: 576px) {
    .footer-top {
        grid-template-columns: 1fr;
    }
}

.footer-widget h4 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 0.5rem;
    color: var(--text-primary);
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--accent-cyan);
}

.footer-links li {
    margin-bottom: 0.8rem;
}

.footer-links a:hover {
    color: var(--accent-cyan);
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid var(--border-muted);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

/* Certification badges Grid */
.cert-grid {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.cert-badge {
    background: var(--bg-surface);
    border: 1px solid var(--border-muted);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--text-primary);
    text-align: center;
    min-width: 100px;
}

/* Key Metrics Counter */
.metric-number {
    font-size: 3rem;
    font-family: var(--font-heading);
    font-weight: 800;
    color: var(--text-primary);
    background: linear-gradient(45deg, var(--accent-cyan), var(--accent-lime));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

/* Showcase filter tab active navigation */
.showcase-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--border-muted);
    color: var(--text-secondary);
    padding: 0.6rem 1.5rem;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition-smooth);
    text-transform: uppercase;
}

.filter-btn:hover, .filter-btn.active {
    background: var(--accent-cyan);
    color: var(--bg-deep);
    border-color: var(--accent-cyan);
    box-shadow: 0 0 15px rgba(var(--accent-cyan-rgb), 0.35);
}

/* Spec sheet grid lists popup logic */
.product-card {
    position: relative;
}

.product-specs-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-surface);
    opacity: 0;
    pointer-events: none;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    z-index: 5;
    border: 1px solid var(--accent-cyan);
}

.product-card:hover .product-specs-overlay {
    opacity: 0.98;
    pointer-events: auto;
}

.product-overlay-title {
    color: var(--accent-cyan);
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

/* --- CONGLOMERATE SECTORS GRID (TATA STYLE) --- */
.sector-card {
    border-top: 4px solid var(--border-muted);
}
.sector-card.vardhaman-core {
    border-top-color: var(--accent-cyan);
}
.sector-card.vyokta-control {
    border-top-color: var(--accent-lime);
}
.sector-card.biotech-sector {
    border-top-color: var(--accent-lime);
}
.sector-card.tooling-sector {
    border-top-color: var(--accent-cyan);
}
.sector-tag {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 1.2rem;
    border: 1px solid var(--border-muted);
}
.tag-cyan {
    background: rgba(0, 136, 204, 0.06);
    color: var(--accent-cyan);
    border-color: rgba(0, 136, 204, 0.2);
}
.tag-lime {
    background: rgba(122, 168, 2, 0.06);
    color: var(--accent-lime);
    border-color: rgba(122, 168, 2, 0.2);
}

/* --- CONGLOMERATE HERITAGE TIMELINE (MAHINDRA STYLE) --- */
.timeline-container {
    position: relative;
    max-width: 900px;
    margin: 3rem auto 0;
    padding: 2rem 0;
}
.timeline-track {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: linear-gradient(180deg, var(--accent-cyan) 0%, var(--accent-lime) 50%, var(--border-muted) 100%);
    transform: translateX(-50%);
}
.timeline-item {
    position: relative;
    width: 50%;
    padding: 2rem 3rem;
    box-sizing: border-box;
}
.timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}
.timeline-item:nth-child(even) {
    left: 50%;
    text-align: left;
}
.timeline-badge {
    position: absolute;
    top: 2.2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-surface);
    border: 3px solid var(--accent-cyan);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.95rem;
    color: var(--text-primary);
    box-shadow: 0 0 15px rgba(0, 136, 204, 0.2);
    z-index: 10;
}
.timeline-item:nth-child(odd) .timeline-badge {
    right: -25px;
}
.timeline-item:nth-child(even) .timeline-badge {
    left: -25px;
    border-color: var(--accent-lime);
    box-shadow: 0 0 15px rgba(122, 168, 2, 0.2);
}
.timeline-content {
    background: var(--bg-surface);
    border: 1px solid var(--border-muted);
    border-radius: var(--border-radius);
    padding: 2rem;
    box-shadow: var(--glass-shadow);
    transition: var(--transition-smooth);
}
.timeline-content:hover {
    transform: translateY(-3px);
    border-color: var(--glass-border);
    box-shadow: 0 12px 30px rgba(0, 136, 204, 0.05);
}

@media (max-width: 768px) {
    .timeline-track {
        left: 30px;
    }
    .timeline-item {
        width: 100%;
        left: 0 !important;
        padding-left: 5rem;
        padding-right: 1.5rem;
        text-align: left !important;
    }
    .timeline-badge {
        left: 5px !important;
        right: auto !important;
    }
}

/* --- KIRLOSKAR-STYLE CAPABILITY APPLICATION LISTS --- */
.capability-list {
    list-style: none;
    padding: 0;
    margin: 1.2rem 0 1.8rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    text-align: left;
}
.capability-item {
    font-size: 0.85rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 10px;
    line-height: 1.4;
}
.capability-item i {
    font-size: 0.8rem;
    color: var(--accent-cyan);
    flex-shrink: 0;
}
.sector-card.vyokta-control .capability-item i,
.sector-card.biotech-sector .capability-item i {
    color: var(--accent-lime);
}

.sector-card-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
    align-items: center;
}

@media (max-width: 991px) {
    .sector-card-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* --- TECHNICAL SPECIFICATIONS TABLES --- */
.spec-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
    margin-bottom: 1.2rem;
}
.spec-table td {
    padding: 0.5rem 0;
    font-size: 0.8rem;
    border-bottom: 1px solid var(--border-muted);
    line-height: 1.4;
}
.spec-table td:first-child {
    color: var(--text-muted);
    font-weight: 500;
}
.spec-table td:last-child {
    text-align: right;
    font-weight: 700;
    color: var(--text-primary);
}

/* --- INDUSTRY 4.0 INTEGRATION LAYERS --- */
.stack-layer {
    background: var(--bg-surface);
    border: 1px solid var(--border-muted);
    border-radius: var(--border-radius);
    padding: 1.8rem;
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
}
.stack-layer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: var(--border-muted);
    transition: var(--transition-smooth);
}
.stack-layer:hover::before {
    background: var(--accent-cyan);
}
.stack-layer.lime-accent:hover::before {
    background: var(--accent-lime);
}
.stack-layer:hover {
    border-color: var(--glass-border);
    box-shadow: var(--glass-shadow);
    transform: translateY(-2px);
}
.stack-number {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.8rem;
    color: var(--text-muted);
    opacity: 0.2;
    margin-bottom: 0.5rem;
}
.stack-layer:hover .stack-number {
    opacity: 0.4;
}

/* --- PROCESS WORKFLOW GRID --- */
.process-workflow-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-muted);
    border-radius: var(--border-radius);
    padding: 2rem;
    position: relative;
    transition: var(--transition-smooth);
}
.process-workflow-card:hover {
    border-color: var(--glass-border);
    transform: translateY(-2px);
    box-shadow: var(--glass-shadow);
}

/* --- PRODUCT CARD IMAGE HOVER ANIMATIONS --- */
.product-card img, .glass-card img {
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.product-card:hover img, .glass-card:hover img {
    transform: scale(1.06);
}

