/**
 * About Us Page Styles
 * Minimalistic OEM-focused design for Shiv Om E-Tec India Private Limited
 * Following the same color scheme as other pages
 */

#main {
    padding: 0 !important;
}

#main .fusion-row {
    max-width: 100% !important;
}

/* CSS Variables - Matching other pages */
.about-us-template {
    --primary-color: #264795;
    --primary-hover: #1b336e;
    --secondary-color: #ee7c2b;
    --bg-body: #FAFAFA;
    --bg-surface: #FFFFFF;
    --bg-accent: #F0F4FF;
    --text-main: #111827;
    --text-muted: #4B5563;
    --border-light: #E5E7EB;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-full: 9999px;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.025);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 10px 10px -5px rgba(0, 0, 0, 0.02);
    --font-main: 'Inter', sans-serif;
}

/* Base Styles */
.about-us-template {
    font-family: var(--font-main);
    line-height: 1.6;
    color: var(--text-main);
    background-color: var(--bg-body);
    -webkit-font-smoothing: antialiased;
}

.about-us-template * {
    box-sizing: border-box;
}

/* about-container */
.about-us-template .about-container {
    max-width: 90%;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Typography */
.about-us-template h1,
.about-us-template h2,
.about-us-template h3 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text-main);
}

.about-us-template h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.about-us-template h2 {
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.about-us-template h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.about-us-template p {
    margin-bottom: 1rem;
    color: var(--text-muted);
}

.about-us-template .section-subheading {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 2rem;
}

/* Hero Section - Minimalistic OEM Style */
.about-us-template .hero-section {
    padding: 8rem 0 6rem;
    background-color: var(--primary-color);
    background-image: radial-gradient(rgba(255,255,255,0.1) 0.5px, transparent 0.5px), radial-gradient(rgba(255,255,255,0.1) 0.5px, var(--primary-color) 0.5px);
    background-size: 20px 20px;
    background-position: 0 0, 10px 10px;
    position: relative;
    overflow: hidden;
    color: white;
}

.about-us-template .hero-section::after {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 50%;
    height: 80%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08), transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.about-us-template .hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.about-us-template .hero-content {
    color: white;
}

.about-us-template .hero-pill {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: var(--secondary-color);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

.about-us-template .hero-pill span {
    margin-right: 0.5rem;
}

.about-us-template .hero-title {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.15;
    color: white;
}

.about-us-template .hero-title .text-gradient {
    color: var(--secondary-color);
    background: none;
    -webkit-text-fill-color: var(--secondary-color);
    font-weight: 800;
}

.about-us-template .hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.about-us-template .hero-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

.about-us-template .stat-item {
    text-align: left;
}

.about-us-template .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    display: block;
    margin-bottom: 0.25rem;
    line-height: 1;
}

.about-us-template .stat-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.about-us-template .hero-visual {
    position: relative;
}

.about-us-template .hero-visual img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Company Overview Section */
.about-us-template .overview-section {
    padding: 6rem 0;
    background: var(--bg-surface);
    position: relative;
}

.about-us-template .overview-section.alt-bg {
    background: var(--bg-body);
}

.about-us-template .overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-us-template .overview-content.single-column {
    grid-template-columns: 1fr;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-us-template .overview-content.reverse {
    direction: rtl;
}

.about-us-template .overview-content.reverse > * {
    direction: ltr;
}

.about-us-template .overview-text h2 {
    color: var(--text-main);
}

.about-us-template .overview-text p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.about-us-template .overview-visual {
    position: relative;
}

.about-us-template .overview-visual video {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-us-template .overview-visual img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-us-template .section-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: var(--secondary-color);
    border-radius: var(--radius-full);
    color: white;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.about-us-template .highlight-text {
    color: var(--primary-color);
    font-weight: 600;
}

.about-us-template .feature-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0 0;
}

.about-us-template .feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 1rem;
    color: var(--text-muted);
}

.about-us-template .feature-list li::before {
    content: "✓";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    color: white;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    font-size: 0.75rem;
    margin-right: 0.75rem;
    flex-shrink: 0;
    font-weight: 600;
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Stats Section */
.about-us-template .stats-section {
    padding: 6rem 0;
    background: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.about-us-template .stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.about-us-template .stats-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.about-us-template .stats-content h2 {
    color: white;
    font-size: 2.25rem;
    margin-bottom: 3rem;
}

.about-us-template .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.about-us-template .stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-lg);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-us-template .stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.about-us-template .stat-icon {
    width: 60px;
    height: 60px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.about-us-template .stat-icon svg {
    width: 28px;
    height: 28px;
}

.about-us-template .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.about-us-template .stat-label {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    line-height: 1.4;
}

/* Core Values Section */
.about-us-template .values-section {
    padding: 6rem 0;
    background: var(--bg-body);
}

.about-us-template .values-content {
    text-align: center;
}

.about-us-template .values-content h2 {
    color: var(--text-main);
    font-size: 2.25rem;
    margin-bottom: 3rem;
}

.about-us-template .values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.about-us-template .values-card {
    background: white;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 3rem 2rem;
    text-align: left;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-us-template .values-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: white;
}

.about-us-template .values-icon svg {
    width: 30px;
    height: 30px;
}

.about-us-template .values-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.about-us-template .values-card h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
}


.about-us-template .values-card p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 0;
}

/* Quality Assurance Section */
.about-us-template .quality-section {
    padding: 6rem 0;
    background: white;
}

.about-us-template .quality-content {
    text-align: center;
}

.about-us-template .quality-content h2 {
    color: var(--text-main);
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.about-us-template .section-subheading {
    font-size: 1.1rem;
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.about-us-template .quality-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.about-us-template .quality-item {
    background: var(--bg-body);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-us-template .quality-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.about-us-template .quality-icon {
    width: 70px;
    height: 70px;
    background: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
}

.about-us-template .quality-icon svg {
    width: 35px;
    height: 35px;
}

.about-us-template .quality-item h3 {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.about-us-template .quality-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Industries Slider Section */
.about-us-template .industries-section {
    padding: 6rem 0;
    background: var(--bg-body);
}

.about-us-template .industries-content {
    text-align: center;
}

.about-us-template .industries-content h2 {
    color: var(--text-main);
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

.about-us-template .industries-slider {
    margin-top: 3rem;
    position: relative;
}

.about-us-template .slider-container {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-xl);
}

.about-us-template .slider-track {
    display: flex;
    transition: transform 0.5s ease;
}

.about-us-template .industry-slide {
    min-width: 33.333%;
    position: relative;
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    padding: 0 1rem;
}

.about-us-template .industry-slide img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    border-radius: var(--radius-lg);
}

.about-us-template .industry-slide h3 {
    color: var(--primary-color);
    padding: 1rem 0;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
    background: white;
}

.about-us-template .slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    pointer-events: none;
}

.about-us-template .slider-btn {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: var(--shadow-md);
}

.about-us-template .slider-btn:hover {
    background: white;
    transform: scale(1.1);
}

.about-us-template .slider-btn svg {
    width: 20px;
    height: 20px;
    color: var(--primary-color);
}

/* Gallery Section */
.about-us-template .gallery-section {
    padding: 6rem 0;
    background: var(--bg-body);
}

.about-us-template .gallery-content {
    text-align: center;
}

.about-us-template .gallery-content h2 {
    color: var(--text-main);
    font-size: 2.25rem;
    margin-bottom: 1rem;
}

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

.about-us-template .gallery-item {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-us-template .gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.about-us-template .gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.about-us-template .gallery-item:hover img {
    transform: scale(1.05);
}

.about-us-template .gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.about-us-template .gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.about-us-template .gallery-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.about-us-template .gallery-item:hover .gallery-icon {
    transform: scale(1);
}

.about-us-template .gallery-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary-color);
}

/* Lightbox */
.about-us-template .lightbox {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 2rem;
}

.about-us-template .lightbox.active {
    display: flex;
}

.about-us-template .lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.about-us-template .lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.about-us-template .lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.about-us-template .lightbox-close svg {
    width: 20px;
    height: 20px;
    color: white;
}

.about-us-template .lightbox-image {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius-lg);
}

.about-us-template .lightbox-caption {
    color: white;
    text-align: center;
    margin-top: 1rem;
    font-size: 1.1rem;
}



/* Timeline Section */
.about-us-template .timeline-section {
    padding: 6rem 0;
    background: #f0f4fa;
    overflow: hidden;
}

.about-us-template .timeline-header {
    text-align: center;
    margin-bottom: 4rem;
}

.about-us-template .timeline-header h2 {
    font-size: 2.25rem;
    color: var(--text-main);
    margin-bottom: 1rem;
}

.about-us-template .timeline-wrapper {
    position: relative;
}

/* Top & Bottom rows share 8 equal columns */
.about-us-template .timeline-top-row,
.about-us-template .timeline-bottom-row {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 0;
}

/* Cards */
.about-us-template .timeline-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    text-align: center;
    position: relative;
}

.about-us-template .timeline-card.top {
    margin-bottom: 0;
    align-self: end;
}

.about-us-template .timeline-card.bottom {
    margin-top: 0;
    align-self: start;
}

.about-us-template .timeline-card-empty {
    min-height: 1px;
}

.about-us-template .timeline-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.about-us-template .timeline-card p {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

/* Center line */
.about-us-template .timeline-line {
    position: relative;
    height: 80px;
    display: flex;
    align-items: center;
    margin: 0.5rem 0;
}

.about-us-template .timeline-track {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 2px;
    background: #c8d6ec;
    transform: translateY(-50%);
    z-index: 0;
}

.about-us-template .timeline-nodes {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    width: 100%;
    position: relative;
    z-index: 1;
}

.about-us-template .timeline-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.about-us-template .node-arrow {
    font-size: 0.85rem;
    color: var(--primary-color);
    line-height: 1;
}

.about-us-template .node-icon {
    width: 36px;
    height: 36px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.about-us-template .node-icon svg {
    width: 18px;
    height: 18px;
    color: white;
    fill: white;
}

/* Hide mobile timeline on desktop */
.about-us-template .timeline-mobile {
    display: none;
}

/* Add spacing between cards in top/bottom rows */
.about-us-template .timeline-top-row .timeline-card,
.about-us-template .timeline-bottom-row .timeline-card {
    margin: 0 0.5rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .about-us-template .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .about-us-template .hero-stats {
        justify-content: center;
    }
    
    .about-us-template .hero-visual {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .about-us-template .overview-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-us-template .overview-content.reverse {
        direction: ltr;
    }
}

@media (max-width: 768px) {
    .about-us-template .about-container {
        padding: 0 1rem;
    }
    
    .about-us-template .hero-section {
        padding: 6rem 0 4rem;
    }
    
    .about-us-template .hero-title {
        font-size: 2rem;
    }
    
    .about-us-template .hero-stats {
        gap: 1.5rem;
    }
    
    .about-us-template .stat-number {
        font-size: 2rem;
    }
    
    .about-us-template .overview-section {
        padding: 4rem 0;
    }
    
    .about-us-template h2 {
        font-size: 1.75rem;
    }
    
    .about-us-template .stats-section {
        padding: 4rem 0;
    }
    
    .about-us-template .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .about-us-template .stat-card {
        padding: 1.5rem 1rem;
    }
    
    .about-us-template .stat-number {
        font-size: 2rem;
    }
    
    .about-us-template .values-section {
        padding: 4rem 0;
    }
    
    .about-us-template .values-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-us-template .values-card {
        padding: 2rem 1.5rem;
    }
    
    .about-us-template .quality-section {
        padding: 4rem 0;
    }
    
    .about-us-template .quality-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-us-template .quality-item {
        padding: 2rem 1.5rem;
    }
    
    .about-us-template .industries-section {
        padding: 4rem 0;
    }
    
    .about-us-template .industry-slide {
        min-width: 50%; /* Show 2 slides on tablet */
    }
    
    .about-us-template .industry-slide img {
        height: 250px;
    }
    
    .about-us-template .industry-slide h3 {
        font-size: 1rem;
        padding: 0.75rem 0;
    }
    
    .about-us-template .slider-btn {
        width: 40px;
        height: 40px;
    }
    
    .about-us-template .slider-btn svg {
        width: 16px;
        height: 16px;
    }
    
    .about-us-template .gallery-section {
        padding: 4rem 0;
    }
    
    .about-us-template .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .about-us-template .gallery-item img {
        height: 250px;
    }
    
    .about-us-template .timeline-section {
        padding: 4rem 0;
    }
    
    .about-us-template .timeline-top-row,
    .about-us-template .timeline-bottom-row,
    .about-us-template .timeline-line,
    .about-us-template .timeline-nodes {
        display: none;
    }
    
    .about-us-template .timeline-mobile {
        display: flex;
        flex-direction: column;
        position: relative;
        padding-left: 2.5rem;
    }
    
    .about-us-template .timeline-mobile::before {
        content: '';
        position: absolute;
        left: 10px;
        top: 0;
        bottom: 0;
        width: 2px;
        background: #c8d6ec;
    }
    
    .about-us-template .mobile-item {
        display: flex;
        align-items: flex-start;
        gap: 1.5rem;
        margin-bottom: 2rem;
        position: relative;
    }
    
    .about-us-template .mobile-node {
        position: absolute;
        left: -2.1rem;
        top: 1.2rem;
        width: 20px;
        height: 20px;
        background: var(--primary-color);
        border-radius: 50%;
        border: 3px solid white;
        box-shadow: 0 0 0 2px var(--primary-color);
        flex-shrink: 0;
    }
    
    .about-us-template .mobile-card {
        background: white;
        border-radius: 12px;
        padding: 1.25rem 1.5rem;
        box-shadow: 0 4px 16px rgba(0, 0, 0, 0.07);
        flex: 1;
    }
    
    .about-us-template .mobile-card .timeline-year {
        font-size: 1.3rem;
        font-weight: 700;
        color: var(--primary-color);
        margin-bottom: 0.5rem;
    }
    
    .about-us-template .mobile-card p {
        font-size: 0.9rem;
        color: var(--text-muted);
        line-height: 1.6;
        margin: 0;
    }
}

@media (max-width: 480px) {
    .about-us-template .hero-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }
    
    .about-us-template .stat-item {
        text-align: center;
    }
    
    .about-us-template .hero-title {
        font-size: 1.75rem;
    }
    
    .about-us-template .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .about-us-template .stats-content h2 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .about-us-template .industries-section {
        padding: 3rem 0;
    }
    
    .about-us-template .industry-slide {
        min-width: 100%; /* Show 1 slide on mobile */
        padding: 0 0.5rem;
    }
    
    .about-us-template .industry-slide img {
        height: 200px;
    }
    
    .about-us-template .industry-slide h3 {
        font-size: 0.95rem;
        padding: 0.5rem 0;
    }
    
    .about-us-template .slider-controls {
        padding: 0 1rem;
    }
    
    .about-us-template .slider-btn {
        width: 35px;
        height: 35px;
    }
    
    .about-us-template .slider-btn svg {
        width: 14px;
        height: 14px;
    }
    
    .about-us-template .gallery-section {
        padding: 3rem 0;
    }
    
    .about-us-template .gallery-item img {
        height: 200px;
    }
    
    .about-us-template .lightbox {
        padding: 1rem;
    }
    
    .about-us-template .lightbox-close {
        top: -35px;
        width: 35px;
        height: 35px;
    }
    
    .about-us-template .lightbox-close svg {
        width: 16px;
        height: 16px;
    }
}
