/* CSS Reset & Variables */
:root {
    --bg-color: #f7f9fc;
    /* Light Grey/Blue Tint background */
    --text-color: #1a202c;
    /* Dark Slate Blue/Black for text */
    --accent-color: #00A3E0;
    /* Updated Logo Cyan */
    --secondary-accent: #0077A3;
    /* Darker version of new Cyan */
    --link-color: #0d47a1;
    /* Deep Blue for links */
    --dark-card: #ffffff;
    /* White cards */
    --font-main: 'Poppins', sans-serif;
    --font-heading: 'Poppins', sans-serif;
    --transition-speed: 0.3s;
    --card-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    /* Soft shadow */
    --alt-bg: #eef2f6;
    scroll-padding-top: 100px;
    /* Fix for sticky header covering anchor links */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

/* Typography */
h1,
h2,
h3 {
    font-family: var(--font-heading);
    color: var(--text-color);
    margin-bottom: 1rem;
    font-weight: 700;
}

h1 {
    font-size: 3rem;
    line-height: 1.2;
}

h2 {
    font-size: 2.2rem;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent-color);
}

p {
    margin-bottom: 1rem;
}

/* Utility */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.highlight {
    color: var(--accent-color);
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background-color: transparent;
    border: 2px solid var(--accent-color);
    color: var(--accent-color);
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 4px;
    margin-top: 20px;
    transition: all var(--transition-speed);
}

.cta-button:hover {
    background-color: var(--accent-color);
    color: var(--bg-color);
    box-shadow: 0 0 20px rgba(0, 163, 224, 0.6);
    transform: scale(1.05);
}

.text-gradient {
    background: linear-gradient(90deg, #00A3E0, #0d47a1);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

.tech-bg-pattern {
    background-image: radial-gradient(#00A3E0 1px, transparent 1px);
    background-size: 30px 30px;
    background-color: var(--bg-color);
}

.cta-button.secondary {
    border-color: var(--secondary-accent);
    color: var(--secondary-accent);
}

.cta-button.secondary:hover {
    background-color: var(--secondary-accent);
    color: white;
}

/* Header */
/* Header */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    /* White bg */
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    /* Light border */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-link {
    display: block;
}

.logo-img {
    height: 60px;
    /* Increased to 60px (approx 1.3x of 45px) */
    width: auto;
}

@media (max-width: 768px) {
    .logo-img {
        height: 40px;
    }
}

.nav-menu ul {
    display: flex;
    gap: 30px;
}

.nav-menu a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: width var(--transition-speed);
}

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

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    /* Dark bars for light theme */
    margin: 5px 0;
    transition: var(--transition-speed);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(255, 255, 255, 0.75), rgba(250, 250, 250, 0.75)), url('hero_light_pcb_blended.webp');
    /* Neutral white overlay to reduce blue tint, slightly more transparent */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
    position: relative;
    padding-top: 60px;
    /* Header height */
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-subtitle {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 1rem auto 2rem;
    color: #555;
    /* Darker for better visibility on white */
}

#hero-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    /* Behind content but above base background */
    pointer-events: auto;
    /* Allow mouse interaction */
}

.hero-content {
    position: relative;
    z-index: 2;
    /* Ensure text is above canvas */
    max-width: 800px;
    pointer-events: none;
    /* Let clicks pass through to canvas if needed, or specific buttons can have auto */
}

.hero-content a {
    pointer-events: auto;
    /* Re-enable for buttons */
}

/* About Section */
.section {
    padding: 80px 0;
}

/* About Section Styles */
.about-vision {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px;
}

.about-vision h3 {
    font-size: 1.25rem;
    line-height: 1.6;
    color: #444;
    font-weight: 400;
    max-width: 900px;
    margin: 0 auto;
}

.about-vision strong {
    font-weight: 700;
}

/* About Us - Core Pillars (Minimalist) */
.about-pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 30px;
    /* Reduced gap */
}

.pillar-card {
    text-align: center;
    padding: 15px;
    /* Reduced padding */
    transition: transform 0.3s ease;
    /* Clean look: No heavy border/bg */
}

.pillar-card:hover {
    transform: translateY(-5px);
}

.pillar-icon-wrapper {
    width: 60px;
    /* Reduced icon size */
    height: 60px;
    background: rgba(0, 163, 224, 0.08);
    /* Very subtle accent bg */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    /* Reduced margin */
    color: var(--accent-color);
    transition: all 0.3s ease;
}

.pillar-card:hover .pillar-icon-wrapper {
    background: var(--accent-color);
    color: white;
    box-shadow: 0 10px 25px rgba(0, 163, 224, 0.3);
}

.pillar-icon-svg {
    width: 32px;
    /* Reduced svg size */
    height: 32px;
    fill: currentColor;
}

.pillar-card h3 {
    font-size: 1.2rem;
    /* Adjusted font size */
    margin-bottom: 10px;
    color: var(--secondary-accent);
}

.pillar-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
}

.about-footer-text {
    text-align: center;
    margin-top: 30px;
    /* Reduced gap */
    font-size: 1.15rem;
    /* Reduced to fit one line */
    font-weight: 600;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.3px;
    white-space: nowrap;
    /* Force one line on large screens */
}

/* Allow wrap on smaller screens */
@media (max-width: 1024px) {
    .about-footer-text {
        white-space: normal;
        font-size: 1rem;
    }
}



.wide-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.value-item {
    background: linear-gradient(145deg, #ffffff, #f0f4f8);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    padding: 25px 30px;
    margin-bottom: 0;
    /* Handled by parent gap */
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.value-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0, 163, 224, 0.15);
    border-color: var(--accent-color);
}

.value-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: var(--accent-color);
    opacity: 0;
    transition: opacity 0.3s;
}

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

.about-card h3 {
    margin-bottom: 15px;
    color: var(--secondary-accent);
}

.full-width {
    grid-column: 1 / -1;
}

/* Products Section */
.dark-section {
    background-color: #060706;
    /* Slightly darker */
}

.section-intro {
    text-align: center;
    color: var(--secondary-accent);
    margin-bottom: 40px;
}

.products-grid,
.verticals-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

/* Vertical Cards */
.vertical-card {
    background: var(--dark-card);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
}

.vertical-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 15px 40px rgba(0, 163, 224, 0.2);
}

.vertical-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    display: flex;
    flex-direction: column;
}


.vertical-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    color: var(--secondary-accent);
}

.vertical-icon-img {
    width: 64px;
    height: 64px;
    margin-bottom: 20px;
    object-fit: contain;
    display: block;
}

.vertical-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.vertical-content p {
    font-size: 0.95rem;
    color: #a8aeb3;
    margin-bottom: 1rem;
}

.vertical-content strong {
    color: white;
}

.product-card {
    background: linear-gradient(145deg, var(--dark-card), #161c24);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    transition: all var(--transition-speed);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    border-color: var(--accent-color);
}

.card-icon {
    font-size: 3rem;
    margin-bottom: 20px;
}

.feature-list {
    margin-top: 15px;
    text-align: left;
    padding-left: 20px;
}

.feature-list li {
    list-style-type: disc;
    color: #8c9094;
    margin-bottom: 5px;
}

/* Contact */
.contact-container {
    text-align: center;
}

/* Social Icons */
.social-links {
    margin-top: 20px;
    display: flex;
    gap: 20px;
    justify-content: center;
}

.social-icon {
    width: 30px;
    height: 30px;
    fill: var(--text-color);
    transition: all var(--transition-speed);
}

.social-icon:hover {
    transform: translateY(-3px) scale(1.1);
}

.social-link[aria-label="LinkedIn"]:hover .social-icon {
    fill: #0077b5;
    filter: drop-shadow(0 0 8px rgba(0, 119, 181, 0.6));
}

.social-link[aria-label="Instagram"]:hover .social-icon {
    fill: #E1306C;
    filter: drop-shadow(0 0 8px rgba(225, 48, 108, 0.6));
}

.social-link[aria-label="X"]:hover .social-icon {
    fill: #000000;
    filter: drop-shadow(0 0 8px rgba(0, 0, 0, 0.4));
}

.social-link[aria-label="YouTube"]:hover .social-icon {
    fill: #FF0000;
    filter: drop-shadow(0 0 8px rgba(255, 0, 0, 0.6));
}

/* Footer */
footer {
    background-color: #050507;
    padding: 40px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    text-align: center;
    color: #555;
    font-size: 0.9rem;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-250px * 8));
    }

    /* Scroll width of one set of 8 slides */
}

/* Partner Card UI (Matching Design Spirit) */
.partners-content-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 50px;
}

/* Partner Logo Grid UI */
.partner-logo-grid {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 30px;
    overflow-x: auto;
    /* Allow horizontal scroll on very small screens if needed */
    padding-bottom: 10px;
    /* Space for scrollbar if it appears */
    padding-top: 20px;
    /* Prevent hover clipping */
}

.partner-logo-card {
    flex: 1;
    min-width: 0;
    /* Allow shrinking */
    background: white;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 20px 15px;
    /* Compact padding */
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.partner-logo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--accent-color);
}

.logo-placeholder {
    height: 60px;
    /* Reduced height */
    background: #f4f6f8;
    border-radius: 8px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    font-weight: 700;
    font-size: 1.2rem;
    /* Reduced font size */
    letter-spacing: 1px;
    border: 1px dashed rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.partner-icon-svg {
    width: 32px;
    height: 32px;
    stroke: #888;
    transition: stroke 0.3s ease;
}

.partner-logo-card:hover .partner-icon-svg {
    stroke: var(--accent-color);
}

.partner-logo-card:hover .logo-placeholder {
    background: #fff;
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.partner-logo-card h3 {
    font-size: 1rem;
    /* Compact title */
    margin-bottom: 8px;
    color: var(--text-color);
    white-space: nowrap;
    /* Prevent title wrapping if possible */
    overflow: hidden;
    text-overflow: ellipsis;
}

.partner-logo-card p {
    font-size: 0.85rem;
    /* Compact text */
    color: #666;
    line-height: 1.3;
    margin: 0;
}

.partner-card {
    flex: 1 1 45%;
    min-width: 300px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
    transition: transform 0.3s ease;
}

.partner-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.partner-thumb {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.partner-content {
    flex: 1;
}

.partner-card h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
    color: var(--secondary-accent);
}

.partner-card p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.4;
    margin-bottom: 0;
}

/* Partners Slider */
.partners-slider {
    background: #ffffff;
    color: #000000;
    padding: 30px 0;
    overflow: hidden;
    position: relative;
    border-radius: 8px;
    width: 100%;
    margin-top: 20px;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.05);
    /* Inner shadow for depth */
}

.slide-track {
    display: flex;
    width: calc(250px * 18);
    /* 18 slides total (9 unique * 2) */
    animation: scroll 30s linear infinite;
}

.slide {
    width: 250px;
    height: 100px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
}



/* Job Cards Expansion */
.job-card {
    background: white;
    padding: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 163, 224, 0.15);
    border-color: var(--accent-color);
}

.job-card h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.job-card p {
    color: #666;
    margin-bottom: 0;
}

.job-details {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
    opacity: 0;
    margin-top: 0;
}

.job-card.expanded .job-details {
    max-height: 500px;
    /* Adjust as needed */
    opacity: 1;
    margin-top: 20px;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.job-toggle-icon {
    position: absolute;
    top: 25px;
    right: 25px;
    transition: transform 0.3s ease;
    color: var(--accent-color);
}

.job-card.expanded .job-toggle-icon {
    transform: rotate(180deg);
}

/* Responsive Partnership Grid */
@media (max-width: 1024px) {
    .partner-logo-grid {
        flex-wrap: wrap;
        justify-content: center;
    }

    .partner-logo-card {
        flex: 1 1 200px;
        /* Allow wrapping with min-width */
        max-width: 300px;
    }
}

.slide img {
    max-height: 80px;
    max-width: 200px;
    object-fit: contain;
    opacity: 1;
    transition: all 0.3s;
    filter: grayscale(0%);
    /* Full color by default */
}

.slide img:hover {
    transform: scale(1.05);
    /* Slight zoom on hover instead of color change */
}

/* --- New Page Styles --- */

/* Page Hero */
.page-main {
    padding-top: 80px;
}

.page-hero {
    padding: 80px 0 40px;
    text-align: center;
    background: radial-gradient(circle at top, rgba(102, 252, 241, 0.1) 0%, transparent 70%);
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

/* Vertical Details */
.vertical-detail-section {
    padding: 60px 0;
}

.vertical-hero-img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 30px;
    border: 1px solid rgba(102, 252, 241, 0.2);
}

.vertical-header h2 {
    font-size: 2.5rem;
    color: var(--accent-color);
    text-align: left;
    margin-bottom: 20px;
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 40px;
    color: #000000;
    /* Force Black as requested */
}

.two-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.value-grid-stretch {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
    /* Force equal height columns */
}

.section-divider {
    border: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    margin: 0;
}

/* Product Platforms */
.product-detail-section {
    padding: 80px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* Zig-Zag Product Layout */
.product-layout {
    display: flex;
    align-items: center;
    gap: 60px;
    padding: 20px 0;
}

.product-layout.reverse {
    flex-direction: row-reverse;
}

.product-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-visual img {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    /* Grey Board Style */
    background-color: #ffffff;
    padding: 40px;
    border-radius: 20px;
    /* Thicker border to simulate the 'board' frame */
    border: 12px solid #f0f2f5;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.product-visual img:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 163, 224, 0.15);
    border-color: #e1e8ed;
}

/* Exclude the image that already has the border baked in */
.product-visual img.self-styled {
    background-color: transparent;
    padding: 0;
    border: none;
    box-shadow: none;
    border-radius: 0;
}

.product-visual img.self-styled:hover {
    transform: translateY(-5px);
    /* Keep the lift but no extra borders/shadows if not needed, or add a subtle one */
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.1));
}

.product-info {
    flex: 1.2;
    /* Give slightly more space to text */
}

.product-info h2 {
    text-align: left;
    /* Align left now */
    margin-bottom: 5px;
    /* Tighter with subtitle */
}

.product-info h2::after {
    left: 0;
    /* Align underline to left */
    transform: none;
}

.product-info .product-subtitle {
    margin-bottom: 25px;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Mobile Stack */
@media (max-width: 768px) {

    .product-layout,
    .product-layout.reverse {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .product-info h2 {
        text-align: center;
    }

    .product-info h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

.alt-bg {
    background-color: var(--alt-bg);
}

.product-subtitle {
    font-size: 1.2rem;
    color: var(--secondary-accent);
    margin-bottom: 20px;
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 30px;
}

.spec-col h4 {
    color: var(--text-color);
    margin-bottom: 15px;
    border-bottom: 1px solid var(--accent-color);
    display: inline-block;
    padding-bottom: 5px;
}

.spec-col ul {
    list-style: disc;
    padding-left: 20px;
    color: #333;
    /* Darker grey for lists */
}

.spec-col li {
    margin-bottom: 8px;
}

/* Careers */
.jobs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 40px 0;
}

.job-card {
    background: var(--dark-card);
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
    transition: transform var(--transition-speed);
}

.job-card:hover {
    transform: translateY(-5px);
}

.cta-container {
    text-align: center;
    margin-top: 60px;
}

/* Design Timeline */
.design-timeline {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 50px;
    position: relative;
}

/* Design Spirit - Light Theme Update */
.dark-section {
    background-color: var(--alt-bg);
    /* Use light grey instead of dark */
    color: var(--text-color);
    padding: 80px 0;
}

.design-step {
    flex: 1 1 45%;
    /* roughly 2 per row */
    min-width: 300px;
    background: white;
    padding: 20px;
    border-radius: 12px;
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: left;
    transition: transform 0.3s ease;
}

.design-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.design-thumb {
    width: 70px;
    height: 70px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.design-content {
    flex: 1;
}

.step-number {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.03);
    position: absolute;
    top: 5px;
    right: 15px;
    line-height: 1;
    pointer-events: none;
}

/* Blog Refactor Styles */
.blog-index {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

.blog-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s ease;
    margin-bottom: 2rem;
}

.blog-card:hover {
    transform: translateY(-5px);
}

.blog-card-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.blog-card-body {
    padding: 30px;
}

.blog-title {
    font-size: 1.8rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.blog-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 1.5rem;
}

.read-more-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--accent-color);
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
}

.blog-full-content {
    display: none;
    /* Hidden by default */
    padding-top: 20px;
    border-top: 1px solid #eee;
    margin-top: 20px;
    animation: fadeIn 0.5s ease;
}


.blog-full-content.active {
    display: block;
}

.blog-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), url('semiconductor_value.webp');
    background-size: cover;
    background-position: center;
    padding: 150px 20px;
    text-align: center;
    color: white;
    margin-top: 60px;
    /* Offset for fixed header */
}

.blog-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #333;
}

.blog-content h2 {
    margin-top: 2.5rem;
    color: var(--text-color);
}

.copy-link-btn {
    margin-left: 10px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 5px;
    transition: transform 0.2s;
}

.copy-link-btn:hover {
    transform: scale(1.2);
}

/* Architecture Section */
.architecture-section {
    padding: 80px 0;
    background-color: #fff;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.arch-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.arch-header h2 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 20px;
}

.arch-header p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
}

.architecture-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    align-items: stretch;
    margin-bottom: 60px;
}

.arch-step {
    flex: 1;
    min-width: 250px;
    background: white;
    padding: 30px;
    border-radius: 12px;
    border-top: 4px solid var(--accent-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    /* Lighter shadow for white cards */
    transition: transform var(--transition-speed);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.arch-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 163, 224, 0.15);
    border-color: var(--accent-color);
}

.arch-step-number {
    font-size: 4rem;
    font-weight: 700;
    color: rgba(0, 163, 224, 0.1);
    line-height: 1;
    margin-bottom: -20px;
    text-align: right;
}

.arch-step h3 {
    color: var(--secondary-accent);
    font-size: 1.3rem;
    margin-bottom: 5px;
    margin-top: 10px;
}

.arch-step h4 {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 15px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.arch-step p {
    font-size: 0.95rem;
    color: #555;
    flex-grow: 1;
    line-height: 1.6;
    margin-bottom: 20px;
}

.arch-detail-list {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid #eee;
    padding-top: 15px;
}

.arch-detail-list li {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
}

.arch-detail-list li::before {
    content: '•';
    color: var(--accent-color);
    position: absolute;
    left: 0;
    font-weight: bold;
}

.architecture-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 60px;
    background: var(--alt-bg);
    padding: 40px;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.benefit-item {
    text-align: left;
}

.benefit-item h4 {
    color: var(--accent-color);
    font-size: 1.1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.benefit-item h4::before {
    content: '';
    display: block;
    width: 6px;
    height: 6px;
    background-color: var(--accent-color);
    border-radius: 50%;
}

.benefit-item p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
    margin: 0;
}


@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.partners-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: #a8aeb3;
}

@media (max-width: 768px) {

    .two-col-grid,
    .specs-grid {
        grid-template-columns: 1fr;
    }
}

/* Product Icons */
.product-icon-lg {
    display: block;
    max-width: 150px;
    height: auto;
    margin: 0 auto 20px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

/* UVP Block */
.uvp-block {
    background: rgba(0, 163, 224, 0.05);
    border-left: 4px solid var(--accent-color);
    padding: 15px 20px;
    margin: 20px 0;
    border-radius: 4px;
    text-align: left;
}

.uvp-icon {
    width: 40px;
    height: auto;
    display: block;
    margin-bottom: 15px;
    filter: drop-shadow(0 2px 4px rgba(0, 163, 224, 0.2));
}

.uvp-block h4 {
    color: var(--secondary-accent);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.uvp-block ul {
    list-style: none;
    padding: 0;
}

.uvp-block li {
    font-size: 0.95rem;
    margin-bottom: 8px;
    color: var(--text-color);
}

.product-header {
    text-align: center;
    margin-bottom: 40px;
}

/* Responsiveness */
@media (max-width: 768px) {
    h1 {
        font-size: 2.2rem;
    }

    .mobile-menu-btn {
        display: block;
        z-index: 1001;
    }

    .mobile-menu-btn.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .mobile-menu-btn.active .bar:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-btn.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--bg-color);
        display: flex;
        justify-content: center;
        align-items: center;
        transition: right var(--transition-speed);
        z-index: 999;
    }

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

    .nav-menu ul {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .nav-menu a {
        font-size: 1.5rem;
    }

    .hero-background {
        width: 100%;
        opacity: 0.5;
    }
}

/* Split Feature Panel - Architecting the Future */
.split-panel-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.split-panel {
    display: flex;
}

/* Trendy Research UX */
.research-card {
    background: linear-gradient(145deg, #ffffff, #f4f6f9);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    padding: 35px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.research-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 163, 224, 0.15);
    border-color: rgba(0, 163, 224, 0.3);
}

.research-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--secondary-accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.research-card:hover::before {
    transform: scaleX(1);
}

.research-icon-wrapper {
    width: 60px;
    height: 60px;
    background: rgba(0, 163, 224, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.research-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    background: -webkit-linear-gradient(0deg, #1a202c, #4a5568);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.research-card ul li {
    padding: 8px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.05);
    color: #000000;
}

.research-card ul li:last-child {
    border-bottom: none;
}



.split-panel-image {
    flex: 0 0 45%;
    position: relative;
    overflow: hidden;
}

.split-panel-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.split-panel:hover .split-panel-image img {
    transform: scale(1.03);
}

.split-panel-content {
    flex: 1;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #ffffff 0%, #f9fbfd 100%);
}

.split-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.split-item {
    margin-bottom: 20px;
    padding: 20px;
    border-radius: 12px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.split-item:hover {
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-left-color: var(--accent-color);
}

.split-item h3 {
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.split-item p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .split-panel {
        flex-direction: column;
    }

    .split-panel-image {
        height: 300px;
        flex: none;
    }

    .split-panel-content {
        padding: 40px;
    }
}

/* Bento Grid Layout - Architecting the Future */
.bento-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.bento-card-visual {
    grid-column: span 2;
    grid-row: span 2;
    background: #000;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    min-height: 500px;
}

.bento-card-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.bento-card-visual:hover img {
    transform: scale(1.05);
}

.bento-card-text {
    background: linear-gradient(145deg, #ffffff, #f4f7fa);
    padding: 30px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bento-card-text:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 163, 224, 0.12);
    border-color: var(--accent-color);
}

.bento-card-text h3 {
    margin-bottom: 12px;
    font-size: 1.25rem;
    color: var(--text-color);
}

.bento-card-text p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.5;
    margin-bottom: 0;
}

@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: 1fr;
    }

    .bento-card-visual {
        grid-column: auto;
        grid-row: auto;
        min-height: 300px;
    }
}

/* Card Grid Layout - Architecting the Future (Round 3) */
.value-prop-container {
    max-width: 1400px;
    margin: 20px auto;
    padding: 30px;
    display: flex;
    align-items: stretch;
    gap: 50px;
    background: rgba(255, 255, 255, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    /* Soft ambient glow */
    border-radius: 30px;
    backdrop-filter: blur(10px);
    /* Glass effect */
}

/* Global Utility for Creative Borders */
.creative-soft-border {
    /* Border box removed for cleaner UI as per request */
    border: none;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    padding: 0 20px;
    margin-top: 0;
    margin-bottom: 0;
    position: relative;
    z-index: 2;
    /* Float above patterns */
}

/* Dark Variant for #design or other dark sections */
.creative-soft-border.dark-mode {
    background: transparent;
    /* Very subtle transparent */
    border: none;
    box-shadow: none;
    backdrop-filter: none;
}

@media (max-width: 768px) {
    .creative-soft-border {
        padding: 25px;
        border-radius: 20px;
    }
}

.value-visual-col {
    flex: 1;
    min-height: 400px;
    /* Reduced to match compact text */
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.value-visual-col img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: auto;
    min-height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.value-visual-col:hover img {
    transform: translate(-50%, -50%) scale(1.03);
}

.value-card-grid {
    flex: 1.2;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    /* Compacting gap */
    align-content: center;
}

.value-card-style {
    background: #ffffff;
    padding: 20px;
    /* Reduced from 25px */
    border-radius: 10px;
    /* Slightly tighter radius */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.value-card-style:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 163, 224, 0.1);
    border-color: rgba(0, 163, 224, 0.3);
}

.card-number {
    font-size: 3rem;
    font-weight: 700;
    color: rgba(0, 163, 224, 0.1);
    position: absolute;
    top: 15px;
    right: 20px;
    line-height: 1;
    font-family: var(--font-heading);
}

.value-card-style h3 {
    font-size: 1.3rem;
    color: #000;
    margin-bottom: 15px;
    margin-top: 10px;
    font-weight: 600;
}

.value-card-style p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 0;
}

.value-card-style h3::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: var(--accent-color);
    margin-top: 10px;
}

@media (max-width: 1024px) {
    .value-prop-container {
        flex-direction: column;
    }

    .value-visual-col {
        min-height: 300px;
        flex: none;
    }

    .value-card-grid {
        grid-template-columns: 1fr;
    }
}

/* Thumbnail Card UI Experiment */
.value-card-style {
    background: #ffffff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
}

.value-card-thumb {
    width: 60px;
    height: 60px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.value-card-content {
    display: flex;
    flex-direction: column;
}

.value-card-style h3 {
    font-size: 1.2rem;
    color: #000;
    margin-bottom: 5px;
    margin-top: 0;
    font-weight: 600;
}

.value-card-style p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.4;
    margin-bottom: 0;
}

.value-card-style h3::after {
    display: none;
}

/* Innovative Product UI - Layered Architecture */
.product-architecture-wrapper {
    position: relative;
    padding: 100px 0;
    background: radial-gradient(circle at 50% 50%, #f8fafc 0%, #eff6ff 100%);
    overflow: hidden;
}

/* Background Circuit Pattern */
.circuit-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 163, 224, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 163, 224, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: 0;
    pointer-events: none;
}

/* Center Spine Line */
.architecture-spine {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, transparent, var(--accent-color), transparent);
    transform: translateX(-50%);
    z-index: 1;
}

/* Layer Node (The dots on the spine) */
.layer-node {
    display: none;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: white;
    border: 3px solid var(--accent-color);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 15px var(--accent-color);
}

/* Product Layer Row */
.product-layer {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 150px;
    z-index: 10;
}

.product-layer:last-child {
    margin-bottom: 0;
}

/* Glassmorphic Product Card */
.glass-product-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 24px;
    padding: 40px;
    width: 90%;
    max-width: 1100px;
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.05),
        0 1px 0 rgba(255, 255, 255, 0.5) inset;
    display: flex;
    gap: 60px;
    align-items: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

.glass-product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    opacity: 0.5;
}

.glass-product-card:hover {
    transform: translateY(-5px) scale(1.01);
    box-shadow:
        0 30px 60px rgba(0, 163, 224, 0.1),
        0 1px 0 rgba(255, 255, 255, 0.8) inset;
    border-color: var(--accent-color);
}

/* Image styling */
.glass-product-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.glass-product-visual img {
    max-width: 350px;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
    transition: transform 0.5s ease;

    /* User Request: Small Border - suggesting a subtle "Glass Frame" style */
    border: 1px solid rgba(0, 163, 224, 0.15);
    /* Subtle Accent Color Border */
    border-radius: 20px;
    /* Soft rounded corners */
    padding: 20px;
    /* Breathing room */
    background: rgba(255, 255, 255, 0.3);
    /* Slight frost effect inside the border */
    box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.5);
    /* Inner glow */
}

.glass-product-card:hover .glass-product-visual img {
    /* Removed rotation and reduced scale to match user request "Avoid that Tilting image animation" */
    transform: none;
}

/* Content styling */
.glass-product-content {
    flex: 1.2;
}

.layer-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 163, 224, 0.1);
    color: var(--secondary-accent);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 163, 224, 0.2);
}

.glass-product-content h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    text-align: left;
    background: -webkit-linear-gradient(45deg, var(--secondary-accent), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.glass-product-content h2::after {
    display: none;
    /* Remove default underline */
}

.product-tagline {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 25px;
    font-weight: 500;
}

/* Feature Grid */
.glass-feature-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.glass-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.feature-icon {
    width: 24px;
    height: 24px;
    color: var(--accent-color);
    flex-shrink: 0;
    margin-top: 2px;
}

.glass-feature-item p {
    font-size: 0.95rem;
    color: #4a5568;
    margin: 0;
    line-height: 1.5;
}

/* Specs Accordion */
.tech-specs-summary {
    cursor: pointer;
    font-weight: 600;
    color: var(--secondary-accent);
    display: flex;
    align-items: center;
    gap: 10px;
    user-select: none;
    transition: color 0.3s;
}

.tech-specs-summary:hover {
    color: var(--accent-color);
}

.tech-specs-details {
    margin-top: 15px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    font-size: 0.9rem;
    color: #4a5568;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Responsive */
@media (max-width: 900px) {
    .glass-product-card {
        flex-direction: column !important;
        text-align: center;
        padding: 30px;
        gap: 30px;
    }

    .architecture-spine {
        display: none;
    }

    .glass-product-content h2 {
        text-align: center;
    }

    .glass-feature-grid {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .glass-product-visual img {
        max-width: 250px;
    }
}

/* Architecture Step Links */
html {
    scroll-behavior: smooth;
}

.arch-step-link {
    display: block;
    text-decoration: none;
    color: inherit;
    flex: 1;
}

.arch-step-link:hover .arch-step {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 163, 224, 0.2);
    border-color: var(--accent-color);
    cursor: pointer;
}

/* --- Innovative Industries UI: Sticky Split Layout --- */

.split-layout-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 80px 0;
    min-height: 100vh;
    align-items: start;
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.split-layout-section.alt-bg {
    background-color: #f8fbff;
}

/* Sticky Visual Side */
.sticky-visual {
    position: sticky;
    top: 100px;
    /* Below header */
    padding: 20px;
    text-align: left;
}

.sticky-visual img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0, 42, 58, 0.15);
    /* Deep Teal Shadow */
    margin-top: 30px;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.sticky-visual h2 {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
}

.sticky-visual h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    margin-top: 10px;
    border-radius: 2px;
}

.sticky-intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
    margin-top: 20px;
    font-weight: 300;
}

/* Scrollable Content Side */
.scroll-content {
    padding: 20px 0;
}

.content-block-title {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin: 40px 0 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.content-block-title::before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 50%;
}

/* Bento Grid for Offerings */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.bento-card {
    background: white;
    padding: 25px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 163, 224, 0.15);
    border-color: rgba(0, 163, 224, 0.3);
}

.bento-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 15px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.1));
}

.bento-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.bento-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bento-card li {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 8px;
    padding-left: 15px;
    position: relative;
}

.bento-card li::before {
    content: '›';
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: bold;
}

/* Reverse Layout for alternating sections */
.split-layout-section.reverse .sticky-visual {
    order: 2;
}

.split-layout-section.reverse .scroll-content {
    order: 1;
}

/* Responsive */
@media (max-width: 900px) {

    .split-layout-section,
    .split-layout-section.reverse {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .sticky-visual {
        position: static;
        order: 0 !important;
    }

    .scroll-content {
        order: 1 !important;
    }
}

/* --- Timeline UI Experiment (Research Page) --- */

.timeline-section {
    position: relative;
    padding: 80px 0;
    overflow: hidden;
}

/* Central Vertical Line */
.timeline-section::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 2px;
    background: rgba(0, 163, 224, 0.2);
    /* Teal tint */
    transform: translateX(-50%);
    z-index: 1;
}

.timeline-item {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 100px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-content-wrapper {
    position: relative;
    width: 45%;
    /* Slightly less than half */
    z-index: 10;
}

/* Alternate Sides */
.timeline-item.left .timeline-content-wrapper {
    margin-right: auto;
    padding-right: 50px;
    text-align: right;
}

.timeline-item.right .timeline-content-wrapper {
    margin-left: auto;
    padding-left: 50px;
    text-align: left;
}

/* Central Node/Marker */
.timeline-marker {
    position: absolute;
    left: 50%;
    top: 50px;
    /* Align with card top area approx */
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: #fff;
    border: 3px solid var(--accent-color);
    border-radius: 50%;
    z-index: 15;
    box-shadow: 0 0 0 5px rgba(0, 163, 224, 0.1);
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-marker {
    background: var(--accent-color);
    box-shadow: 0 0 0 8px rgba(0, 163, 224, 0.2), 0 0 20px var(--accent-color);
}

/* Card Styling for Timeline */
.timeline-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.timeline-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(0, 163, 224, 0.1);
    border-color: rgba(0, 163, 224, 0.3);
}

/* Card Content Header */
.timeline-card h3 {
    font-size: 1.8rem;
    color: #1a202c;
    margin-bottom: 15px;
}

.timeline-card p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .timeline-section::before {
        left: 20px;
        /* Move line to left */
    }

    .timeline-item.left .timeline-content-wrapper,
    .timeline-item.right .timeline-content-wrapper {
        width: 100%;
        margin-left: 50px;
        /* Push content right of line */
        padding-left: 30px;
        padding-right: 0;
        text-align: left;
    }

    .timeline-marker {
        left: 20px;
        /* Align marker with line */
    }
}

/* --- Horizontal Timeline UI (Research Page) --- */

.timeline-section {
    position: relative;
    padding: 80px 0;
}

/* Container for the horizontal flow */
.timeline-track {
    display: flex;
    justify-content: space-between;
    position: relative;
    gap: 30px;
    margin-top: 20px;
}

/* The Horizontal Connecting Line */
.timeline-track::before {
    content: '';
    position: absolute;
    top: 20px;
    /* Aligns with marker center */
    left: 15%;
    /* Start line after first margin */
    right: 15%;
    /* End line before last margin */
    height: 3px;
    background: linear-gradient(90deg,
            rgba(0, 163, 224, 0.1),
            var(--accent-color),
            rgba(0, 163, 224, 0.1));
    z-index: 0;
}

.timeline-item {
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Marker positioning for Horizontal */
.timeline-marker {
    width: 24px;
    height: 24px;
    background: #fff;
    border: 4px solid var(--accent-color);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 0 5px rgba(255, 255, 255, 0.8), 0 0 15px rgba(0, 163, 224, 0.3);
    transition: all 0.3s ease;

    /* Position at the top, on the line */
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translate(-50%, -50%);
}

.timeline-content-wrapper {
    width: 100%;
    padding-top: 60px;
    /* Space for marker and line */
    position: relative;
    z-index: 10;
}

/* Card Styling remains mostly same but adjusted for vertical flow inside */
.timeline-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 30px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    text-align: center;
    /* Center content for horizontal cards */
    height: 100%;
    /* Equal height cards */
}

.timeline-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 163, 224, 0.15);
    border-color: rgba(0, 163, 224, 0.4);
}

.timeline-card:hover+.timeline-marker,
.timeline-item:hover .timeline-marker {
    background: var(--accent-color);
    box-shadow: 0 0 0 8px rgba(0, 163, 224, 0.2), 0 0 25px var(--accent-color);
    transform: translate(-50%, -50%) scale(1.2);
}

.research-icon-wrapper {
    height: 180px;
    /* Fixed height for consistency */
    margin-bottom: 20px;
    border-radius: 12px;
    overflow: hidden;
}

.timeline-card h3 {
    font-size: 1.4rem;
    color: #1a202c;
    margin-bottom: 15px;
    min-height: 3rem;
    /* Align titles */
}

.timeline-card ul {
    text-align: left;
    /* Keep list left-aligned */
    margin-top: 15px;
}

/* Responsive: Stack on Mobile */
@media (max-width: 900px) {
    .timeline-track {
        flex-direction: column;
        gap: 60px;
        padding-left: 30px;
        /* Space for vertical line */
    }

    /* Transform line to Vertical for Mobile */
    .timeline-track::before {
        top: 0;
        bottom: 0;
        left: 3px;
        /* Align with left padding approx */
        right: auto;
        width: 2px;
        height: auto;
    }

    .timeline-marker {
        left: 4px;
        /* Align with vertical line */
        top: 0;
        /* Top of the item */
        transform: translate(-50%, 0);
    }

    .timeline-content-wrapper {
        padding-top: 0;
        padding-left: 30px;
    }

    .timeline-card {
        text-align: left;
    }

    .research-icon-wrapper {
        height: auto;
        max-height: 200px;
    }

    .timeline-card h3 {
        min-height: auto;
    }
}

/* Flagship Product Styles */
.flagship-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 24px;
    background: rgba(0, 163, 224, 0.1);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 163, 224, 0.4);
    border-radius: 100px;
    color: var(--accent-color);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    box-shadow: 0 8px 32px rgba(0, 163, 224, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.flagship-badge svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.flagship-badge:hover {
    background: rgba(0, 163, 224, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 163, 224, 0.2);
}

.spec-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0 45px;
}

.spec-item {
    background: rgba(0, 163, 224, 0.05);
    border: 1px solid rgba(0, 163, 224, 0.15);
    padding: 18px;
    border-radius: 16px;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.spec-item:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--accent-color);
    transform: scale(1.02);
}

.spec-item h4 {
    color: var(--accent-color);
    font-size: 0.95rem;
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700; /* Bolder headers */
}

.spec-item p {
    font-size: 0.9rem;
    color: #475569; /* Dark slate for readability on light backgrounds */
    margin-bottom: 0;
    line-height: 1.5;
    font-weight: 400;
}

.flagship-title {
    font-size: 4rem;
    margin-bottom: 25px;
    background: linear-gradient(135deg, #fff 0%, #cbd5e1 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -1px;
}

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

    .flagship-title {
        font-size: 3rem;
    }
}