/* Gallery */
.gallery-page {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

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

.gallery-item {
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(0,0,0,0.08);
    border: 1px solid rgba(44, 90, 160, 0.08);
    cursor: zoom-in;
    background: #ffffff;
    text-decoration: none;
}

.gallery-item img {
    width: 100%;
    height: 260px;
    object-fit: contain;
    object-position: center;
    background: #f8fafc;
    transition: transform 0.35s ease;
    display: block;
    flex-shrink: 0;
}

.gallery-item:hover img {
    transform: scale(1.03);
}

.gallery-item-title {
    display: block;
    padding: 1rem 1.25rem 1.25rem;
    text-align: center;
    color: #1a252f;
    font-size: var(--text-sm);
    font-weight: 600;
    line-height: 1.4;
    background: #ffffff;
}

#galleryGrid .gallery-subsection-heading {
    grid-column: 1 / -1;
    margin: 2.5rem 0 0.5rem;
    font-size: var(--text-3xl);
    color: #1a252f;
    text-align: left;
}

#galleryGrid .gallery-subsection-intro {
    grid-column: 1 / -1;
    margin: 0 0 1rem;
    color: #4a5568;
    text-align: left;
    max-width: 720px;
    line-height: 1.6;
}

.gallery-videos-section {
    margin-top: 3rem;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(44, 90, 160, 0.12);
}

.gallery-videos-section h2 {
    color: #1a252f;
    margin-bottom: 0.5rem;
}

.gallery-videos-section > p {
    color: #4a5568;
    margin-bottom: 1.5rem;
    max-width: 720px;
}

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

.video-embed {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    overflow: hidden;
    background: #0f172a;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.facility-photo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    margin-top: 1rem;
}

.facility-photo-grid:has(img:only-child) {
    grid-template-columns: 1fr;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
}

.facility-photo-grid img {
    width: 100%;
    height: auto;
    max-height: 320px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(44, 90, 160, 0.08);
}

.facility-spotlight {
    margin-top: 3rem;
    padding: 2rem 0 0;
    border-top: 1px solid rgba(44, 90, 160, 0.12);
}

.facility-spotlight h3 {
    color: #1a252f;
    margin-bottom: 0.75rem;
}

.facility-spotlight-intro {
    color: #4a5568;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.about-text .about-subheading {
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    color: #1a252f;
    font-size: 1.2rem;
    font-weight: 600;
}

.contact-board-card {
    margin: 1.75rem 0;
    padding: 1rem;
    background: #f8fafc;
    border-radius: 12px;
    border: 1px solid rgba(44, 90, 160, 0.1);
    text-align: center;
}

.contact-board-card img {
    width: 100%;
    max-width: 420px;
    height: auto;
    border-radius: 8px;
    display: block;
    margin: 0 auto;
}

.contact-board-caption {
    margin: 0.75rem 0 0;
    font-size: 0.9rem;
    color: #4a5568;
}

.contact-facility-photo {
    margin: 1rem 0 1.5rem;
}

.contact-facility-photo img {
    width: 100%;
    max-height: 380px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.contact-facility-photo figcaption {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #4a5568;
}

.wall-of-fame {
    padding: 80px 0;
    background: #f1f5f9;
    color: #1f2937;
}

.wall-of-fame h2 {
    color: #1a237e;
    text-align: center;
}

.wall-of-fame .section-intro {
    text-align: center;
    max-width: 720px;
    margin: -0.75rem auto 3rem;
    color: #4b5563;
}

.wall-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.wall-card {
    background: #0f172a;
    border: 1px solid rgba(148, 163, 184, 0.35);
    border-radius: 16px;
    padding: 1.75rem;
    box-shadow: 0 16px 30px rgba(15, 23, 42, 0.35);
    backdrop-filter: blur(6px);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.wall-card:hover {
    transform: translateY(-6px);
    border-color: rgba(30, 64, 175, 0.8);
    box-shadow: 0 24px 40px rgba(30, 64, 175, 0.28);
}

.wall-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: #bfdbfe;
}

.wall-card-header i {
    font-size: 1.8rem;
    color: #60a5fa;
}

.wall-card h3 {
    margin: 0;
    color: #e0f2fe;
}

.wall-card-date {
    font-weight: 600;
    color: #93c5fd;
    margin-bottom: 0.75rem;
}

.wall-card-description {
    margin: 0;
    color: #e2e8f0;
    line-height: 1.6;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 2rem;
}

.lightbox.open { display: flex; }

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 65vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.5);
}

.lightbox-caption {
    margin-top: 1rem;
    color: #e5e7eb;
}

.lightbox-caption h3 { color: #ffffff; margin-bottom: 0.25rem; }

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.15);
    border: none;
    color: white;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.lightbox-nav:hover { background: rgba(255,255,255,0.25); }
.lightbox-nav.prev { left: 2rem; }
.lightbox-nav.next { right: 2rem; }

.lightbox-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Legacy alias — use .member-photo for circular portraits */
.our-team-image {
    width: 10rem;
    height: 10rem;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #e2e8f0;
    box-shadow: 0 4px 14px rgba(44, 90, 160, 0.12);
}

.our-team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

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

@media (max-width: 560px) {
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item img { height: 220px; }
}

@media (max-width: 768px) {
    .video-embed-grid {
        grid-template-columns: 1fr;
    }
    .facility-photo-grid {
        grid-template-columns: 1fr;
    }
    .facility-photo-grid img {
        max-height: 260px;
    }
}
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Enhanced Typography and Visual Hierarchy */
:root {
    --text-xs: 0.875rem;
    --text-sm: 0.9375rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.75rem;
    --text-4xl: 2rem;
    --text-page-title: 2.5rem;
    --text-hero-title: 3.5rem;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #ffffff;
    font-size: var(--text-base);
    letter-spacing: -0.01em;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Enhanced Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: #1a252f;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
    line-height: 1.3;
}

h1 { 
    font-size: 2.75rem; 
    font-weight: 700;
}

h2 { 
    font-size: var(--text-4xl);
    font-weight: 600;
}

h3 { 
    font-size: var(--text-2xl);
    font-weight: 600;
}

h4 { 
    font-size: var(--text-lg);
    font-weight: 600;
}

p {
    margin-bottom: 1.25rem;
    color: #4a5568;
    font-size: var(--text-base);
    line-height: 1.7;
}

/* Home page section headings */
.section-title {
    font-size: var(--text-4xl);
}

/* Inner pages — section headings (About, Products, Services, etc.) */
.about-page h2,
.industries-page h2,
.locations-page h2,
.team-page h2,
.contact-page h2,
.gallery-page h2:not(.gallery-subsection-heading),
.products-page h2 {
    font-size: var(--text-3xl);
    margin-bottom: 1.25rem;
}

/* Card & tile titles */
.industry-item h3,
.location-card h3,
.member-info h3,
.product-category h3 {
    font-size: var(--text-xl);
    font-weight: 600;
}

.showcase-content h3 {
    font-size: var(--text-lg);
    font-weight: 600;
}

.contact-details h3 {
    font-size: var(--text-2xl);
}

/* Enhanced Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border: none;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 1rem;
    letter-spacing: -0.01em;
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary {
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3a5f 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(44, 90, 160, 0.3);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5aa0 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 90, 160, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: #2c5aa0;
    border: 2px solid #2c5aa0;
    box-shadow: 0 4px 12px rgba(44, 90, 160, 0.1);
}

.btn-secondary:hover {
    background-color: #2c5aa0;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 90, 160, 0.3);
}

/* Enhanced Header */
.header {
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(44, 90, 160, 0.1);
}

.navbar {
    padding: 0.5rem 0;
    background-color: #ffffff;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.nav-logo {
    line-height: 0;
}

.nav-logo-link {
    display: block;
    margin: 0;
    padding: 0;
}

.nav-logo-img {
    display: block;
    height: 88px;
    width: auto;
    max-width: min(320px, 52vw);
    margin: 0;
    object-fit: contain;
}

@media (max-width: 768px) {
    .navbar {
        padding: 0.625rem 0;
    }

    .nav-logo-img {
        height: 64px;
        max-width: min(240px, 58vw);
    }
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    text-decoration: none;
    color: #4a5568;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #2c5aa0, #1e3a5f);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-link:hover {
    color: #2c5aa0;
    transform: translateY(-1px);
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #4a5568;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
    margin-top: 0;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #0a0a0a;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.62)),
        url('client data/ksi-logo-black.png');
    background-size: cover, min(720px, 92vw) auto;
    background-position: center, center;
    background-repeat: no-repeat, no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    text-align: center;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    color: #e2e8f0;
    max-width: 900px;
    margin: 0 auto;
    padding: 3rem 2rem;
}

.hero-slide .hero-title {
    font-size: 3.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
    animation: slideInUp 1s ease-out;
    font-weight: 700;
}

.hero-slide .hero-tagline {
    font-size: 1.5rem;
    color: #93c5fd;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
    animation: slideInUp 1s ease-out 0.2s both;
}

.hero-slide .hero-philosophy {
    font-size: 1.15rem;
    color: #bfdbfe;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin: -0.5rem 0 1.25rem;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
    animation: slideInUp 1s ease-out 0.25s both;
}

.hero-value-bullets {
    list-style: none;
    padding: 0;
    margin: 0 auto 1.75rem;
    max-width: 640px;
    text-align: left;
    animation: slideInUp 1s ease-out 0.35s both;
}

.hero-value-bullets li {
    position: relative;
    padding-left: 1.25rem;
    margin-bottom: 0.65rem;
    font-size: 1rem;
    line-height: 1.45;
    color: #e2e8f0;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}

.hero-value-bullets li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #60a5fa;
}

.hero-value-bullets li strong {
    color: #ffffff;
}

.hero-slide .hero-description {
    font-size: 1.2rem;
    color: #f1f5f9;
    margin-bottom: 2rem;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
    animation: slideInUp 1s ease-out 0.4s both;
    font-weight: 400;
}

.hero-slide .welcome-note {
    background-color: rgba(44, 90, 160, 0.9);
    padding: 1rem;
    border-radius: 8px;
    border-left: 4px solid #60a5fa;
    margin-bottom: 1.5rem;
    animation: slideInUp 1s ease-out 0.3s both;
}

.hero-slide .welcome-note p {
    margin: 0;
    color: white;
    font-size: 0.95rem;
}

.hero-features,
.hero-achievements {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    animation: slideInUp 1s ease-out 0.6s both;
}

.hero-slide .feature-item,
.hero-slide .achievement-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background-color: rgba(255, 255, 255, 0.08);
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
}

.hero-slide .feature-item span,
.hero-slide .achievement-item span {
    color: #f8fafc;
    font-weight: 500;
    font-size: 0.9rem;
}

.feature-item--standards {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.75rem;
    cursor: default;
    outline: none;
}

.feature-item--standards .feature-item-label {
    color: #f8fafc;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
}

.feature-item--standards .feature-item-standards-hover {
    flex: 0 0 100%;
    width: 100%;
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #93c5fd;
    letter-spacing: 0.04em;
    text-align: center;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease, margin 0.3s ease;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.feature-item--standards:hover .feature-item-standards-hover,
.feature-item--standards:focus .feature-item-standards-hover,
.feature-item--standards:focus-within .feature-item-standards-hover {
    max-height: 3rem;
    opacity: 1;
    margin-top: 0.35rem;
}

.hero-features--solutions {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.hero-features--solutions .feature-item {
    max-width: 340px;
}

/* Multi-Material slide — mobile-only compact 2-column layout */
@media (max-width: 768px) {
    .hero-slide--materials {
        align-items: center;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .hero-slide--materials .hero-content--materials {
        padding: 1.25rem 0.75rem 5rem;
        max-width: 100%;
    }

    .hero-slide--materials .hero-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
        line-height: 1.2;
    }

    .hero-slide--materials .hero-description {
        /* font-size: 0.8rem; */
        margin-bottom: 0.75rem;
        line-height: 1.35;
    }

    .hero-slide--materials .hero-features--materials {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: stretch;
        gap: 0.7rem 0.35rem;
        margin-bottom: 0.75rem;
        max-width: 100%;
        margin-top: 1.5rem;
    }

    .hero-slide--materials .hero-features--materials .feature-item {
        flex: 1 1 calc(50% - 0.35rem);
        max-width: none;
        width: calc(50% - 0.35rem);
        justify-content: center;
        padding: 0.4rem 0.55rem;
        border-radius: 10px;
    }

    .hero-slide--materials .hero-features--materials .feature-item span {
        line-height: 1.2;
        text-align: center;
    }

    .hero-slide--materials .hero-buttons {
        margin-top: 0.5rem;
    }

    .hero-slide--materials .hero-buttons .btn {
        padding: 0.5rem 1.1rem;
        /* font-size: 0.8rem; */
    }
}

@media (max-width: 480px) {
    .hero-slide--materials .hero-content--materials {
        padding: 1.5rem 0.5rem 4.5rem;
    }

    .hero-slide--materials .hero-title {
        /* font-size: 1.25rem; */
    }

    .hero-slide--materials .hero-description {
        /* font-size: 0.72rem; */
        margin-bottom: 0.6rem;
    }

    .hero-slide--materials .hero-features--materials .feature-item {
        flex: 1 1 calc(50% - 0.25rem);
        width: calc(50% - 0.25rem);
        padding: 0.3rem 0.45rem;
    }
}

.hero-slide .hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: slideInUp 1s ease-out 0.8s both;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 3;
}

.slider-btn {
    background-color: rgba(44, 90, 160, 0.08);
    color: #2c5aa0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: none;
    border: 1px solid rgba(44, 90, 160, 0.25);
}

.slider-btn:hover {
    background-color: #2c5aa0;
    color: #ffffff;
    transform: scale(1.1);
}

.slider-btn i {
    font-size: 1.2rem;
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(44, 90, 160, 0.25);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.indicator.active {
    background-color: #2c5aa0;
    border-color: #2c5aa0;
    transform: scale(1.2);
}

.indicator:hover {
    background-color: rgba(44, 90, 160, 0.5);
}

/* Animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Legacy hero styles removed - now handled by hero-slide styles above */

/* Enhanced Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 4rem;
    color: #1a252f;
    position: relative;
    font-weight: 700;
    letter-spacing: -0.02em;
    font-size: var(--text-4xl);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #2c5aa0, #1e3a5f);
    border-radius: 2px;
}

/* Enhanced Card Styles */
.card {
    background-color: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(44, 90, 160, 0.05);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.card-elevated {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.card-elevated:hover {
    box-shadow: 0 16px 40px rgba(0,0,0,0.15);
}

/* Enhanced About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(135deg, #dce2e9 0%, #ffffff 100%);
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background-image: url('client data/pic knorr~2.JPG');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.05;
    z-index: 0;
}

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

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 5rem;
    align-items: start;
}

/* About page right column — stacked cards */
.about-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.about-sidebar-card {
    background: linear-gradient(135deg, #dce2e9 0%, #ffffff 100%);
    padding: 2rem;
    border-radius: 20px;
    border-left: 6px solid #2c5aa0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.about-sidebar-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.1), transparent);
    border-radius: 50%;
    transform: translate(30px, -30px);
    pointer-events: none;
}

.about-sidebar-card > h3 {
    color: #2c5aa0;
    margin: 0 0 1.5rem;
    font-weight: 700;
    font-size: 1.35rem;
    position: relative;
    z-index: 1;
}

.about-sidebar .about-leadership-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

/* Inner items — no nested card styling */
.about-sidebar .team-member {
    background: none;
    padding: 0;
    border: none;
    border-radius: 0;
    box-shadow: none;
    margin-bottom: 0;
    transition: none;
    position: static;
    overflow: visible;
}

.about-sidebar .team-member::before {
    display: none;
}

.about-sidebar .team-member:hover {
    transform: none;
    box-shadow: none;
}

.about-sidebar-values {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    position: relative;
    z-index: 1;
}

.about-sidebar .value-item {
    background: none;
    padding: 0;
    border: none;
    border-radius: 0;
    margin-bottom: 0;
    text-align: left;
}

.about-sidebar-stats {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 0;
    position: relative;
    z-index: 1;
}

.about-sidebar .stat-item {
    background: none;
    padding: 0;
    border-radius: 0;
    margin-bottom: 0;
}

/* Legacy — single combined sidebar block */
.founder-info {
    background: linear-gradient(135deg, #dce2e9 0%, #ffffff 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border-left: 6px solid #2c5aa0;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.founder-info::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.1), transparent);
    border-radius: 50%;
    transform: translate(30px, -30px);
}

.founder-highlight h4 {
    color: #2c5aa0;
    margin-bottom: 1rem;
    font-weight: 700;
}

.founder-highlight p {
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.7;
    margin: 0;
}

/* Theme card — Journey & Milestones, Our Journey (outer) */
.achievements,
.timeline-section {
    background: linear-gradient(135deg, #dce2e9 0%, #ffffff 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border-left: 6px solid #2c5aa0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
}

.achievements {
    margin-top: 2rem;
    margin-bottom: 2.5rem;
}

.achievements::before,
.timeline-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.1), transparent);
    border-radius: 50%;
    transform: translate(30px, -30px);
    pointer-events: none;
}

.achievements > h3,
.timeline-section > h3 {
    color: #2c5aa0;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.achievement-list {
    list-style: none;
    position: relative;
    z-index: 1;
}

/* Simple inner cards — milestone list items */
.achievement-list li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: #4a5568;
    font-size: var(--text-base);
    padding: 1rem 1.25rem;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.06);
    transition: box-shadow 0.2s ease;
}

.achievement-list li:last-child {
    margin-bottom: 0;
}

.achievement-list li:hover {
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.1);
}

.achievement-list i {
    color: #10b981;
    margin-right: 1rem;
    font-size: 1.1rem;
}

.timeline-section {
    margin-top: 3.5rem;
}

.timeline-section > h3 {
    margin-bottom: 0.75rem;
}

.timeline-intro {
    color: #4a5568;
    margin-bottom: 2.5rem;
    max-width: 760px;
    position: relative;
    z-index: 1;
}

.vertical-timeline {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 2.75rem;
}


/* .vertical-timeline::before {
    content: '';
    position: absolute;
    top: 0.5rem;
    bottom: 0.5rem;
    left: 1.65rem;
    left: 50%;
    width: 4px;
    background: linear-gradient(180deg, #2c5aa0 0%, #4a7bc4 50%, #2c5aa0 100%);
    border-radius: 2px;
} */

.timeline-item {
    position: relative;
    display: flex;
    gap: 1.75rem;
    align-items: flex-start;
}

.timeline-icon {
    width: 3.2rem;
    height: 3.2rem;
    border-radius: 50%;
    background: #eef4fc;
    border: 3px solid #2c5aa0;
    display: grid;
    place-items: center;
    color: #2c5aa0;
    font-size: 1.4rem;
    position: relative;
    z-index: 1;
    box-shadow: 0 14px 25px rgba(44, 90, 160, 0.18);
}

.timeline-divider {
    width: 100%;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 2;
}

.timeline-year-box {
    position: relative;
    z-index: 2;
    background: #2c5aa0;
    border: 3px solid #2c5aa0;
    padding: 0.35rem 0.85rem;
    border-radius: 25px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #ffffff;
}

.timeline-divider::before {
    content: "";
    position: absolute;
    top: -45px;
    bottom: -45px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    background: linear-gradient(
        180deg,
        #2c5aa0 0%,
        #4a7bc4 50%,
        #2c5aa0 100%
    );
    z-index: 1;
    border-radius: 10px;
}

.first-divider::before {
    top: 50%;
}

/* Simple inner cards — timeline era blocks */
.timeline-content {
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    padding: 1.5rem 1.75rem;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.06);
    transition: box-shadow 0.2s ease;
    width: 100%;
}

.timeline-item:hover .timeline-content {
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.1);
}

.timeline-year {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #1f2937;
    background: rgba(37, 99, 235, 0.08);
    padding: 0.35rem 0.85rem;
    border-radius: 999px;
    margin-bottom: 0.75rem;
}

.timeline-content h4 {
    margin: 0 0 0.75rem;
    color: #1e3a8a;
    font-size: 1.2rem;
}

.timeline-points {
    list-style: none;
    margin: 0;
    padding: 0;
}

.timeline-points li {
    color: #4a5568;
    font-size: 0.98rem;
    line-height: 1.65;
    padding-left: 1rem;
    position: relative;
}

.timeline-points li + li {
    margin-top: 0.5rem;
}

.timeline-points li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65rem;
    width: 0.35rem;
    height: 0.35rem;
    border-radius: 50%;
    background: #2c5aa0;
}

.timeline-media {
    margin-top: 1.25rem;
}

.timeline-media img {
    width: 100%;
    max-height: 320px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    border: 1px solid rgba(44, 90, 160, 0.08);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.1);
}

.timeline-upgrades {
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.timeline-upgrades h4 {
    color: #2c5aa0;
    margin-bottom: 1.25rem;
    font-weight: 700;
}

.timeline-upgrades > p {
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
    padding: 1.25rem 1.5rem;
    background: #ffffff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.06);
}

.upgrade-row {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
}

.upgrade-chip {
    background: #ffffff;
    color: #4a5568;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    padding: 1.25rem 1.5rem;
    min-width: 220px;
    flex: 1 1 220px;
    box-shadow: 0 2px 10px rgba(15, 23, 42, 0.06);
    cursor: pointer;
    transition: box-shadow 0.2s ease;
}

.upgrade-chip:hover {
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.1);
}

.upgrade-chip:focus-visible {
    outline: 2px solid #2c5aa0;
    outline-offset: 4px;
}

.upgrade-chip img {
    margin-top: 0.75rem;
    width: 100%;
    height: 200px;
    object-fit: contain;
    object-position: center;
    border-radius: 10px;
    display: block;
    transition: transform 0.2s ease;
    background: #fff;
    border: 1px solid rgba(44, 90, 160, 0.08);
}

.upgrade-chip:hover img {
    transform: scale(1.02);
}

.chip-year {
    display: inline-block;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 0.35rem;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
}

.upgrade-chip p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #4a5568;
}

@media (max-width: 768px) {
    .timeline-section {
        padding: 2rem;
    }

    .vertical-timeline {
        padding-left: 2.75rem;
    }

    .vertical-timeline::before {
        left: 1.25rem;
    }

    .timeline-item {
        gap: 1.25rem;
    }

    .timeline-icon {
        width: 2.6rem;
        height: 2.6rem;
        font-size: 1.1rem;
    }
}

/* Enhanced Products Section */
.products {
    padding: 100px 0;
    background: linear-gradient(135deg, #dce2e9 0%, #ffffff 100%);
}

/* Enhanced Product Showcase Gallery */
.product-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-bottom: 5rem;
}

.showcase-item {
    background-color: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(44, 90, 160, 0.05);
    position: relative;
}

.showcase-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.showcase-item:hover::before {
    opacity: 1;
}

.showcase-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.product-showcase .showcase-item {
    cursor: pointer;
}

.product-showcase .showcase-item:focus-visible {
    outline: 2px solid #2c5aa0;
    outline-offset: 4px;
}

/* .showcase-image {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f8fafc;
    width: 100%;
}

.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: contain; 
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
} */
.showcase-image {
    position: relative;
    aspect-ratio: 1 / 1;

    overflow: hidden;
    background: #f8fafc;

    width: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 12px;
}

.showcase-image img {
    width: 100%;
    height: 100%;

    object-fit: contain;
    object-position: center;

    transform: scale(1.08);

    transition:
        transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.showcase-item:hover .showcase-image img {
    transform: scale(1.14);
}

.showcase-item:hover .showcase-image img {
    transform: scale(1.08);
}

.showcase-content {
    padding: 2.5rem;
    position: relative;
    z-index: 2;
}

.showcase-content h3 {
    color: #1a252f;
    font-weight: 600;
    margin-bottom: 0;
}

.showcase-content p {
    color: #4a5568;
    margin: 0;
    line-height: 1.7;
    font-size: var(--text-base);
}

/* .products-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
} */

.product-category {
    background-color: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 1px solid rgba(44, 90, 160, 0.05);
    transition: all 0.3s ease;
}

.product-category:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.product-category h3 {
    color: #2c5aa0;
    margin-bottom: 2rem;
    border-bottom: 3px solid #e2e8f0;
    padding-bottom: 1rem;
    font-weight: 700;
}

.component-specs {
    margin-bottom: 2rem;
}

.component-item {
    margin-bottom: 1.25rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #dce2e9 0%, #ffffff 100%);
    border-radius: 12px;
    border-left: 4px solid #2c5aa0;
    transition: all 0.3s ease;
}

.component-item:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.1);
}

.component-item h4 {
    color: #1a252f;
    margin-bottom: 1rem;
    font-size: 1.125rem;
    font-weight: 600;
}

.component-item p {
    color: #4a5568;
    font-size: 1rem;
    margin-bottom: 1rem;
    font-family: 'Courier New', monospace;
    font-weight: 500;
}

.component-item .process-list {
    margin-top: 1rem;
    padding-left: 1.5rem;
    list-style-type: disc;
}

.component-item .process-list li {
    margin-bottom: 0.5rem;
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.6;
}

.materials h4 {
    color: #1a252f;
    margin-bottom: 1rem;
}

.material-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.material-tag {
    background-color: #e2e8f0;
    color: #4a5568;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.85rem;
}

.capability-note {
    background-color: #f0f9ff;
    padding: 1rem;
    border-radius: 4px;
    border-left: 3px solid #2c5aa0;
    font-size: 0.9rem;
    margin-top: 1rem;
}

.compressor-types {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.compressor-type h4 {
    color: #1a252f;
    margin-bottom: 0.75rem;
}

.compressor-type ul {
    list-style: none;
    padding-left: 0;
}

.compressor-type li {
    padding: 0.5rem 0;
    color: #4a5568;
    border-bottom: 1px solid #e2e8f0;
}

.compressor-type li:last-child {
    border-bottom: none;
}

/* Enhanced Industries Section */
.industries {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.industries-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}

@media (min-width: 992px) {
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
/* Product category theme cards — 2×2 grid (home + products page) */
.products-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    width: 100%;
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 2rem;
}

.products-buttons .btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 6.5rem;
    padding: 1.25rem 1.5rem;
    font-size: var(--text-base);
    font-weight: 700;
    line-height: 1.35;
    text-align: center;
    white-space: normal;
    box-sizing: border-box;
    border: none;
    border-radius: 20px;
    border-left: 6px solid #2c5aa0;
    position: relative;
    overflow: hidden;
}

/* Theme card accent — overrides default button shimmer */
.products-buttons .btn::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    left: auto;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.1), transparent);
    border-radius: 50%;
    transform: translate(20px, -20px);
    transition: none;
}

.products-buttons .btn:hover::before {
    left: auto;
}

.products-buttons .btn.btn-primary,
.products-buttons .btn.btn-primary:not(:hover):not(:focus-visible),
.products-buttons .btn.btn-primary:active {
    background: linear-gradient(135deg, #dce2e9 0%, #ffffff 100%);
    color: #2c5aa0;
    border: none;
    border-left: 6px solid #2c5aa0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.products-buttons .btn.btn-primary:hover,
.products-buttons .btn.btn-primary:focus-visible {
    background: linear-gradient(135deg, #c5d0e0 0%, #f8fafc 100%);
    color: #1e3a5f;
    border: none;
    border-left: 6px solid #2c5aa0;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.products-buttons .btn.btn-primary:active {
    transform: translateY(-1px);
}

@media (max-width: 768px) {
    .products-buttons {
        gap: 0.625rem;
    }

    .products-buttons .btn {
        min-height: 5.5rem;
        padding: 1rem 0.75rem;
        font-size: var(--text-sm);
    }
}

@media (max-width: 480px) {
    .products-buttons {
        gap: 0.5rem;
    }

    .products-buttons .btn {
        min-height: 5rem;
        padding: 0.75rem 0.5rem;
        font-size: var(--text-xs);
        border-radius: 16px;
    }
}

.industry-item {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 1px solid rgba(44, 90, 160, 0.05);
    position: relative;
    overflow: hidden;
}

.industry-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.industry-item:hover::before {
    opacity: 1;
}

.industry-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.industry-item i {
    font-size: 3.5rem;
    color: #2c5aa0;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.industry-item:hover i {
    transform: scale(1.1);
    color: #1e3a5f;
}

.industry-item h3 {
    color: #1a252f;
    margin-bottom: 1rem;
    font-weight: 700;
}

.industry-item p {
    color: #6b7280;
    font-size: var(--text-base);
    margin: 0;
    line-height: 1.6;
}

/* Enhanced Locations Section */
.locations {
    padding: 100px 0;
    background: linear-gradient(135deg, #dce2e9 0%, #ffffff 100%);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.location-card {
    background-color: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 1px solid rgba(44, 90, 160, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.location-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.03), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.location-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 35px rgba(0,0,0,0.12);
}

.location-card h3 {
    color: #2c5aa0;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.location-details p {
    margin-bottom: 0.75rem;
    color: #4a5568;
    font-size: var(--text-base);
    line-height: 1.6;
}

.location-details i {
    color: #2c5aa0;
    margin-right: 0.75rem;
    width: 20px;
    font-size: 1.1rem;
}

.location-details a {
    color: #2c5aa0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.location-details a:hover {
    color: #1e3a5f;
    text-decoration: underline;
}

/* Enhanced Team Section */
.team {
    padding: 100px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
}

.team-member {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 2rem 2rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    border-left: 6px solid #2c5aa0;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    margin-bottom: 2rem;
}

.team-member::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, rgba(44, 90, 160, 0.1), transparent);
    border-radius: 50%;
    transform: translate(40px, -40px);
}

.team-member:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 35px rgba(0,0,0,0.12);
}

/* Circular team portraits — home + about */
.team .member-photo,
.about-page .member-photo {
    width: 10rem;
    height: 10rem;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #e2e8f0;
    box-shadow: 0 4px 14px rgba(44, 90, 160, 0.12);
    flex-shrink: 0;
}

.team .member-photo img,
.about-page .member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.about-page .about-sidebar .team-member .member-info {
    text-align: center;
}

.member-info h3 {
    color: #1a252f;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.member-role {
    color: #2c5aa0;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: var(--text-lg);
}

.member-bio {
    color: #4a5568;
    font-size: var(--text-base);
    line-height: 1.7;
    margin: 0;
}

/* Enhanced Contact Section */
.linkedin-connect {
    padding: 2.5rem 0;
    background: linear-gradient(135deg, #dce2e9 0%, #ffffff 100%);
    border-top: 1px solid rgba(44, 90, 160, 0.1);
    border-bottom: 1px solid rgba(44, 90, 160, 0.1);
    text-align: center;
}

.linkedin-connect-text {
    margin: 0;
    font-size: var(--text-lg);
    font-weight: 600;
    line-height: 1.5;
}

.linkedin-connect-link {
    color: #2c5aa0;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    transition: color 0.2s ease;
}

.linkedin-connect-link:hover {
    color: #1e3a5f;
    text-decoration: underline;
}

.linkedin-connect-link .fa-linkedin {
    font-size: 1.35rem;
}

.coming-soon-section {
    padding: 4rem 0 6rem;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    min-height: 40vh;
}

.coming-soon-label {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: #2c5aa0;
    margin: 0 0 1rem;
    letter-spacing: 0.02em;
}

.coming-soon-text {
    max-width: 36rem;
    margin: 0 auto;
    color: #4a5568;
    font-size: var(--text-lg);
    line-height: 1.6;
}

.coming-soon-text a {
    color: #2c5aa0;
    font-weight: 600;
}

.coming-soon-text a:hover {
    color: #1e3a5f;
}

.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #dce2e9 0%, #ffffff 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.contact-form-container {
    background-color: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 1px solid rgba(44, 90, 160, 0.05);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.form-group label {
    font-weight: 600;
    color: #1a252f;
    margin-bottom: 0.75rem;
    font-size: var(--text-base);
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f8fafc;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #2c5aa0;
    background-color: white;
    box-shadow: 0 0 0 3px rgba(44, 90, 160, 0.1);
}

.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-details h3 {
    color: #1a252f;
    margin-bottom: 2rem;
    font-weight: 700;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #dce2e9 0%, #ffffff 100%);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 15px rgba(44, 90, 160, 0.1);
}

.contact-item i {
    color: #2c5aa0;
    margin-right: 1.25rem;
    margin-top: 0.25rem;
    font-size: 1.25rem;
}

.contact-item strong {
    color: #1a252f;
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-item p {
    color: #4a5568;
    margin: 0;
    font-size: var(--text-base);
}

.contact-item a {
    color: #2c5aa0;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #1e3a5f;
    text-decoration: underline;
}

/* Enhanced Footer */
.footer {
    background: linear-gradient(135deg, #1a252f 0%, #2d3748 100%);
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.footer-section p {
    color: #a0aec0;
    margin-bottom: 0.75rem;
    font-size: var(--text-base);
    line-height: 1.6;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section p a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section p a:hover {
    color: white;
}

.footer-tagline {
    color: #60a5fa;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.125rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: var(--text-base);
}

.footer-section ul li a:hover {
    color: white;
}

.footer-section i {
    color: #60a5fa;
    margin-right: 0.25rem;
    font-size: 1.1rem;
}

.footer-bottom {
    border-top: 1px solid #2d3748;
    padding-top: 2rem;
    text-align: center;
    color: #a0aec0;
    position: relative;
    z-index: 1;
    font-size: var(--text-base);
}

.footer-bottom p {
    margin: 0;
}

.footer-credit {
    margin-top: 0.75rem !important;
    font-size: var(--text-sm);
    opacity: 0.9;
}

.footer-credit a {
    color: #67788b;
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer-credit a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.industry-link {
    text-decoration: none;
    color: inherit;
    display: contents;
}

.timeline-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 10px;
}

.timeline-images img {
    width: calc((100% - 20px) / 3);
    height: 200px;
    object-fit: cover;
    border-radius: 10px;
}
.timeline-image-box {
    width: calc((100% - 20px) / 3);
    text-align: center;
    cursor: pointer;
}

.timeline-image-box img {
    width: 100%;
    height: 200px;
    object-fit: contain;
    border-radius: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.timeline-image-box:hover img,
.timeline-image-box:focus-visible img {
    transform: scale(1.02);
    box-shadow: 0 6px 16px rgba(44, 90, 160, 0.25);
}

.timeline-image-box:focus-visible {
    outline: 2px solid #2c5aa0;
    outline-offset: 4px;
    border-radius: 10px;
}

.timeline-image-box p {
    margin-top: 8px;
    font-size: var(--text-xs);
    font-weight: 600;
    color: #333;
}


/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #ffffff;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 0.75rem 0; /* reduced */
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        margin: 0.5rem 0; /* tighter */
    }

    /* Hero Slider Responsive */
    .hero-slide .hero-title {
        font-size: 2.5rem;
    }

    .hero-slide .hero-tagline {
        font-size: 1.2rem;
    }

    .hero-slide .hero-description {
        font-size: 1rem;
    }

    .hero-slide .hero-philosophy {
        font-size: 1rem;
    }

    .hero-value-bullets li {
        font-size: 0.9rem;
    }

    /* Contact page responsive grid */
    .contact-page .contact-content {
        /* grid-template-columns: 1fr; */
        display: block;
    }
    .contact-form-container, .contact-info { width: 100%; }
    .contact-info { margin-top: 2rem; }
    .contact-info-section { text-align: left; }
    .map-embed iframe { height: 320px; }

    .hero-features {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .feature-item {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .hero-slide .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }

    .slider-controls {
        padding: 0 1rem;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
    }

    .slider-btn i {
        font-size: 1rem;
    }

    .slider-indicators {
        bottom: 1rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-showcase {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .showcase-image {
        height: 220px;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .component-list {
        grid-template-columns: 1fr;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .timeline-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .timeline-year {
        margin-bottom: 0.5rem;
        margin-right: 0;
    }
    .timeline-images {
        flex-direction: column;
        align-items: center;
    }

    .timeline-image-box {
        width: 100%;
    }

    .timeline-image-box img {
        width: 100%;
        height: auto;
        max-height: 250px;
        object-fit: contain;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }

    .hero {
        min-height: 500px;
    }

    .hero-slide .hero-title {
        font-size: 2rem;
    }

    .hero-slide .hero-tagline {
        font-size: 1rem;
    }

    .hero-slide .hero-description {
        font-size: 0.9rem;
    }

    .hero-content {
        padding: 1rem;
    }

    .section-title {
        font-size: var(--text-3xl);
    }

    .about-page h2,
    .industries-page h2,
    .locations-page h2,
    .team-page h2,
    .contact-page h2,
    .gallery-page h2:not(.gallery-subsection-heading),
    .products-page h2,
    #galleryGrid .gallery-subsection-heading {
        font-size: var(--text-2xl);
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: var(--text-base);
    }

    .btn {
        padding: 12px 24px;
        font-size: var(--text-sm);
    }

    .slider-controls {
        padding: 0 0.5rem;
    }

    .slider-btn {
        width: 35px;
        height: 35px;
    }

    .slider-btn i {
        font-size: 0.9rem;
    }

    .showcase-item,
    .product-category,
    .industry-item,
    .location-card,
    .team-member {
        padding: 1.5rem;
    }

    .contact-form-container {
        padding: 2rem;
    }

    .contact-item {
        padding: 1rem;
    }
    /* Contact Page Styles */
.contact-page .contact-content {
    display: block !important;
}
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Page Header */
.page-header {
    background-image: linear-gradient(rgba(0,0,0,0.8), rgba(0,0,0,0.8)), url('client data/AK150CB.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 140px 0 100px;
    text-align: center;
}

.page-header h1 {
    font-size: var(--text-page-title);
    color: #ffffff;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: var(--text-lg);
    color: #e5e7eb;
    max-width: 600px;
    margin: 0 auto;
}

/* Active Navigation Link */
.nav-link.active {
    color: #2c5aa0;
    font-weight: 600;
}

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

/* Logo Link */
.nav-logo a {
    text-decoration: none;
    color: inherit;
}

.nav-logo a:hover .nav-logo-img {
    opacity: 0.88;
}

/* About — Our Inspiration */
.inspiration-content {
    text-align: center;
}

.inspiration-photo {
    width: 10rem;
    height: 10rem;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #e2e8f0;
    box-shadow: 0 4px 14px rgba(44, 90, 160, 0.12);
}

.inspiration-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
}

.inspiration-content p {
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
    text-align: left;
}

.inspiration-content h4 {
    color: #1a252f;
    margin: 0 0 0.75rem;
    font-size: 1.1rem;
}

/* Timeline image grid — 2×2 for selected era cards */
.timeline-images--quad {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-top: 1rem;
}

.timeline-images--quad .timeline-image-box {
    width: 100%;
    max-width: none;
}

.timeline-images--quad .timeline-image-box img {
    width: 100%;
    height: 160px;
    object-fit: contain;
}

/* Page-specific Styles */
.about-page,
.products-page,
.industries-page,
.locations-page,
.team-page,
.contact-page {
    padding: 100px 0;
}

.section-intro {
    font-size: var(--text-lg);
    color: #4a5568;
    margin-bottom: 2rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* About Page Styles */
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Ensure spacing before the Why Partner with KSI section */
.company-values {
    margin-top: 3rem;
}

.value-item {
    background-color: #f8fafc;
    padding: 2.5rem;
    border-radius: 8px;
    text-align: center;
    border-left: 4px solid #2c5aa0;
    margin-bottom: 1.5rem;
}

.value-item h4 {
    color: #1a252f;
    margin-bottom: 1.25rem;
}

.value-item p {
    color: #4a5568;
    margin: 0;
    line-height: 1.7;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background-color: #f8fafc;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #2c5aa0;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: #4a5568;
}

/* Products Page Styles */
.product-section {
    margin-bottom: 4rem;
}

/* Products page layout (type scale uses site-wide rules above) */
.products-page .product-section > h2 {
    margin-top: 0.5rem;
}

.products-page .product-showcase {
    gap: 2rem;
    margin-bottom: 3rem;
}

.products-page .showcase-content {
    padding: 1.25rem 1.5rem;
}

.product-showcase--jigs .showcase-item--image-only .showcase-image {
    border-radius: 12px;
}

.gallery-item--no-label {
    padding: 0;
}

.products-page .capability-item {
    padding: 1.5rem;
}

.products-page .capability-item i {
    font-size: 2rem;
}

.products-page .capability-item h4 {
    font-size: var(--text-lg);
    margin-bottom: 0.5rem;
}

.products-page .capability-item p {
    font-size: var(--text-sm);
    line-height: 1.6;
}

.product-section-videos {
    margin-top: 1.5rem;
}

.cnc-media-intro {
    margin-top: 2.5rem;
}

.component-details {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.process-tag {
    background-color: #e2e8f0;
    color: #4a5568;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8rem;
}

.compressor-categories {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.compressor-category {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.compressor-specs {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1rem;
}

.spec-item {
    background-color: #f8fafc;
    padding: 2rem;
    border-radius: 8px;
    border-left: 3px solid #2c5aa0;
    margin-bottom: 1.5rem;
}

.spec-item h4 {
    color: #1a252f;
    margin-bottom: 0.75rem;
}

.spec-item p {
    color: #2c5aa0;
    font-weight: 600;
    margin-bottom: 1.25rem;
}

.spec-item ul {
    list-style: none;
    padding: 0;
}

.spec-item li {
    padding: 0.5rem 0;
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.6;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.capability-item {
    text-align: center;
    padding: 2.5rem;
    background-color: #f8fafc;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.capability-item i {
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.capability-item h4 {
    color: #1a252f;
    margin-bottom: 1rem;
}

.capability-item p {
    color: #4a5568;
    margin: 0;
}

/* Industries Page Styles */
.industries-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.industry-item {
    background-color: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.industry-item:hover {
    transform: translateY(-5px);
}

.industry-icon {
    text-align: center;
    margin-bottom: 1rem;
}

.industry-icon i {
    font-size: 3rem;
    color: #2c5aa0;
}

.industry-description {
    text-align: center;
    color: #4a5568;
    margin-bottom: 0;
}

.industry-details {
    margin-top: 1.75rem;
    padding-top: 1.25rem;
    border-top: 1px solid rgba(44, 90, 160, 0.12);
}

.industry-details h4 {
    color: #1a252f;
    margin-top: 0;
    margin-bottom: 0.75rem;
    text-align: center;
}

.industry-details ul {
    list-style: none;
    padding: 0;
    margin-bottom: 1rem;
}

.industry-details li {
    padding: 0.25rem 0;
    color: #4a5568;
    font-size: 0.9rem;
}

.achievement-highlight {
    background-color: #f0f9ff;
    padding: 1rem;
    border-radius: 4px;
    border-left: 3px solid #2c5aa0;
    font-size: 0.9rem;
    color: #1a252f;
}

.industry-stats {
    margin-top: 4rem;
    text-align: center;
}

.industries-page .industry-item h3 {
    text-align: center;
}

.quality-standards {
    margin-top: 4rem;
    text-align: center;
}

.quality-standards > h2 {
    text-align: center;
    margin-bottom: 0.75rem;
}

.quality-standards-intro {
    max-width: 720px;
    margin: 0 auto 2rem;
    color: #4a5568;
    font-size: var(--text-base);
    line-height: 1.65;
}

.standards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.standard-item {
    text-align: center;
    padding: 2rem;
    background-color: #f8fafc;
    border-radius: 8px;
}

.standard-item i {
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.standard-item h4 {
    color: #1a252f;
    margin-bottom: 1rem;
}

.standard-item p {
    color: #4a5568;
    margin: 0;
}

/* Locations Page Styles */
.locations-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.location-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e2e8f0;
}

.location-type {
    background-color: #2c5aa0;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}

.address-block,
.contact-block,
.facility-info {
    margin-bottom: 1.5rem;
}

.address-block h4,
.contact-block h4,
.facility-info h4 {
    color: #1a252f;
    margin-bottom: 0.75rem;
}

.facility-info ul {
    list-style: none;
    padding: 0;
}

.facility-info li {
    padding: 0.25rem 0;
    color: #4a5568;
    font-size: 0.9rem;
}

.map-section {
    margin-top: 4rem;
    text-align: center;
}

.map-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
}

.map-placeholder {
    background-color: #f8fafc;
    border: 2px dashed #d1d5db;
    border-radius: 8px;
    padding: 3rem;
    text-align: center;
    color: #6b7280;
    position: relative;
}

.map-placeholder i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.location-markers {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.marker {
    background-color: #2c5aa0;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
}

.location-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-item i {
    color: #2c5aa0;
    margin-top: 0.25rem;
    font-size: 1.2rem;
}

.benefit-item h4 {
    color: #1a252f;
    margin-bottom: 0.25rem;
}

.benefit-item p {
    color: #4a5568;
    margin: 0;
    font-size: 0.9rem;
}

.contact-info-section {
    margin-top: 4rem;
    text-align: center;
}

.contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.contact-method {
    background-color: #f8fafc;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.contact-method i {
    font-size: 2.5rem;
    color: #2c5aa0;
    margin-bottom: 1rem;
}

.contact-method h4 {
    color: #1a252f;
    margin-bottom: 1rem;
}

.contact-method p {
    color: #4a5568;
    margin: 0.25rem 0;
}

/* Team Page Styles */
.team-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.member-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e2e8f0;
}

.member-icon {
    background-color: #2c5aa0;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.member-title h3 {
    margin: 0;
    color: #1a252f;
}

.member-role {
    color: #2c5aa0;
    font-weight: 600;
    margin: 0;
}

.member-credentials,
.member-expertise,
.member-achievements {
    margin-bottom: 1.5rem;
}

.member-credentials h4,
.member-expertise h4,
.member-achievements h4 {
    color: #1a252f;
    margin-bottom: 0.75rem;
}

.member-credentials ul,
.member-expertise ul {
    list-style: none;
    padding: 0;
}

.member-credentials li,
.member-expertise li {
    padding: 0.25rem 0;
    color: #4a5568;
    font-size: 0.9rem;
}

.member-achievements p {
    color: #4a5568;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

.team-values {
    margin-top: 4rem;
    text-align: center;
}

.company-culture {
    margin-top: 4rem;
}

.culture-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.culture-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.feature-item i {
    color: #2c5aa0;
    margin-top: 0.25rem;
    font-size: 1.2rem;
}

.feature-item h4 {
    color: #1a252f;
    margin-bottom: 0.25rem;
}

.feature-item p {
    color: #4a5568;
    margin: 0;
    font-size: 0.9rem;
}

.culture-stats {
    background-color: #f8fafc;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #2c5aa0;
}

/* Contact Page Styles */
.contact-page .contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.quick-contact {
    margin-top: 2rem;
}

.contact-options {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: #2c5aa0;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.contact-option:hover {
    background-color: #1d4ed8;
}

.all-locations {
    margin-top: 4rem;
}

.faq-section {
    margin-top: 4rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.faq-item {
    background-color: #f8fafc;
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid #2c5aa0;
    margin-bottom: 1.5rem;
}

.faq-item h4 {
    color: #1a252f;
    margin-bottom: 1.25rem;
}

.faq-item p {
    color: #4a5568;
    margin: 0;
    line-height: 1.7;
}

/* Focus States for Accessibility */
.btn:focus,
.nav-link:focus,
input:focus,
textarea:focus {
    outline: 2px solid #2c5aa0;
    outline-offset: 2px;
}

/* Make in India logo — below company description in first footer column */
.certifications-strip {
    display: flex;
    gap: 0.75rem;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
    padding: 1rem 0 0;
    margin-top: 0.25rem;
    position: relative;
    z-index: 1;
}

.footer-section .certifications-strip {
    width: auto;
    max-width: 100%;
}

.certifications-strip .footer-mii-logo {
    display: block;
    width: clamp(12rem, 38.4vw, 21.6rem);
    max-width: 100%;
    height: auto;
    object-fit: contain;
    object-position: center;
}

@media (max-width: 480px) {
    .certifications-strip .footer-mii-logo {
        width: clamp(8.4rem, 50.4vw, 13.2rem);
    }
}

.certifications-strip .cert-badge {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 0.25rem 0.5rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    color: #fff;
}

/* KB Spec card and comparison list */
.kb-spec-card {
    background-color: #f8fafc;
    padding: 2.5rem;
    border-radius: 12px;
    border: 2px solid #2c5aa0;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.kb-spec-card h4 {
    color: #1a252f;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.kb-spec-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.25rem;
}

.kb-spec-grid ul { list-style: none; padding: 0; margin: 0; }
.kb-spec-grid li {
    padding: 0.6rem 0;
    color: #4a5568;
    font-size: 1rem;
    line-height: 1.7;
    border-bottom: 1px solid rgba(44, 90, 160, 0.12);
}
.kb-spec-grid li:last-child { border-bottom: none; }

.comparison-list { list-style: none; padding: 0; margin: 2rem 0; }
.comparison-list li {
    padding: 1rem 1.25rem;
    margin-bottom: 0.75rem;
    background-color: #f8fafc;
    border-left: 4px solid #2c5aa0;
    border-radius: 6px;
    color: #4a5568;
}