/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette - Modern Blue/Purple Theme */
    --primary-color: #667eea;
    --secondary-color: #764ba2;
    --accent-color: #f093fb;
    --dark-color: #1a1a2e;
    --light-color: #f8f9fa;
    --text-color: #333333;
    --text-light: #666666;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 5px 25px rgba(0, 0, 0, 0.15);
    --shadow-heavy: 0 10px 40px rgba(0, 0, 0, 0.2);
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    box-sizing: border-box;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease;
}

.loader {
    display: flex;
    gap: 10px;
}

.loader .circle {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--white);
    animation: bounce 1.4s ease-in-out infinite both;
}

.loader .circle:nth-child(1) { animation-delay: -0.32s; }
.loader .circle:nth-child(2) { animation-delay: -0.16s; }

@keyframes bounce {
    0%, 80%, 100% {
        transform: scale(0);
    }
    40% {
        transform: scale(1);
    }
}

/* Particle Background */
#particles-js {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: var(--gradient-primary);
    top: 0;
    left: 0;
    z-index: -1 !important;
    pointer-events: none;
    overflow: hidden;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition);
    box-shadow: var(--shadow-light);
    min-height: 70px;
    overflow: visible !important; /* Allow dropdown to overflow */
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-medium);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 70px;
    height: 100%;
    width: 100%;
    box-sizing: border-box;
    overflow: visible !important; /* Allow dropdown to overflow */
}

.nav-logo a {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    height: 100%;
    min-height: 40px;
}

.nav-logo .logo-img {
    height: 45px;
    width: auto;
    transition: transform 0.3s ease;
}

.nav-logo a:hover .logo-img {
    transform: scale(1.05);
}

.nav-logo .logo-text {
    font-size: 1.6rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.nav-logo i {
    font-size: 1.8rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    height: 100%;
    min-height: 40px;
    overflow: visible !important; /* Allow dropdown to overflow */
}

.nav-link {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    height: 40px;
    line-height: 1;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: var(--transition);
    transform: translateX(-50%);
    border-radius: 2px;
}

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

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

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    margin: 3px 0;
    transition: var(--transition);
    border-radius: 2px;
}

/* Dropdown Navigation */
.nav-item {
    position: relative;
    display: flex;
    align-items: center;
    height: 40px;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-toggle i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

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

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-5px); /* Reduced gap */
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(15px);
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 500px;
    max-width: none !important; /* Remove width constraint */
    z-index: 1000;
    margin-top: 0.5rem; /* Reduced margin */
    pointer-events: none;
    white-space: nowrap; /* Prevent content wrapping */
}

/* Ensure dropdown doesn't go off-screen on smaller screens */
@media (max-width: 768px) {
    .dropdown-menu {
        left: 0;
        right: 0;
        transform: none;
        min-width: auto;
        max-width: 100vw;
        margin: 0.5rem 1rem;
        border-radius: 8px;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .dropdown-menu {
        min-width: 450px;
        max-width: 90vw !important;
    }
}

/* For very large screens, limit dropdown width */
@media (min-width: 1400px) {
    .dropdown-menu {
        max-width: 600px !important;
    }
}

/* Show dropdown on hover for desktop only */
@media (min-width: 768px) {
    .nav-item.dropdown {
        position: relative;
        z-index: 1100;
    }
    
    .dropdown-menu {
        pointer-events: none;
        z-index: 1200;
        overflow: visible !important;
        display: block !important; /* Ensure it's always visible on desktop */
        transition: all 0.2s ease-in-out; /* Faster transition */
    }
    
    /* Create a bridge area to prevent dropdown from hiding */
    .nav-item.dropdown::after {
        content: '';
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        height: 1rem; /* Bridge gap */
        background: transparent;
        z-index: 1150;
    }
    
    /* Adjust positioning for dropdowns near the right edge */
    .nav-item.dropdown:last-child .dropdown-menu,
    .nav-item.dropdown:nth-last-child(2) .dropdown-menu {
        left: auto;
        right: 0;
        transform: translateX(0) translateY(-10px);
    }
    
    /* Show dropdown on hover with better timing */
    .nav-item.dropdown:hover > .dropdown-menu,
    .nav-item.dropdown:hover::after,
    .dropdown-menu:hover {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateX(-50%) translateY(0) !important;
        pointer-events: auto !important;
        z-index: 1200 !important;
        transition-delay: 0s; /* No delay when showing */
    }
    
    /* Delay hiding when mouse leaves */
    .dropdown-menu {
        transition-delay: 0.15s; /* Small delay before hiding */
    }
    
    .nav-item.dropdown:hover > .dropdown-menu,
    .dropdown-menu:hover {
        transition-delay: 0s !important; /* Cancel delay when hovering */
    }
    
    /* Adjust hover transform for right-aligned dropdowns */
    .nav-item.dropdown:last-child:hover > .dropdown-menu,
    .nav-item.dropdown:nth-last-child(2):hover > .dropdown-menu,
    .nav-item.dropdown:last-child .dropdown-menu:hover,
    .nav-item.dropdown:nth-last-child(2) .dropdown-menu:hover {
        transform: translateX(0) translateY(0) !important;
    }
}

/* Hide dropdown completely on mobile only */
@media (max-width: 767px) {
    .dropdown-menu {
        display: none !important;
    }
}

.dropdown-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    padding: 1.5rem;
    white-space: normal; /* Allow text wrapping within content */
}

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

.dropdown-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--text-color);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    font-weight: 500;
    position: relative;
    overflow: hidden;
}

.dropdown-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    opacity: 0.1;
    transition: left 0.3s ease;
    z-index: -1;
}

.dropdown-link:hover::before {
    left: 0;
}

.dropdown-link:hover {
    color: var(--primary-color);
    background: rgba(74, 144, 226, 0.05);
    transform: translateX(5px);
}

.dropdown-link i {
    font-size: 1.1rem;
    width: 20px;
    color: var(--primary-color);
    opacity: 0.8;
    transition: all 0.3s ease;
}

.dropdown-link:hover i {
    opacity: 1;
    transform: scale(1.1);
}

.dropdown-link span {
    font-size: 0.95rem;
    white-space: nowrap;
}

/* Hero Section */
.hero {
    min-height: calc(100vh - 70px);
    background: 
        linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0.85) 100%),
        url('../images/hero/steel-warehouse-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 90px 0 2rem;
    position: relative;
    overflow: hidden;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 20%, rgba(118, 75, 162, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 80%, rgba(240, 147, 251, 0.1) 0%, transparent 50%);
    animation: heroOverlay 25s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

@keyframes heroOverlay {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.1; }
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    min-height: auto;
}

.hero-title .main-title {
    font-size: 3rem;
    font-weight: 700;
    color: white !important;
    margin-bottom: 1.5rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    position: relative;
    z-index: 20;
    display: block;
    line-height: 1.2;
}

.gradient-text {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.typing-text {
    display: block;
    border-right: 3px solid var(--accent-color);
    animation: typing 3s steps(30, end), blink 0.5s step-end infinite alternate;
    white-space: nowrap;
    overflow: hidden;
}

@keyframes typing {
    from { width: 0; }
    to { width: 100%; }
}

@keyframes blink {
    50% { border-color: transparent; }
}

.hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 800px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    position: relative;
    z-index: 20;
}

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

.feature-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    background: rgba(255, 255, 255, 1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* About Section */
.about-section {
    padding: 3rem 0;
    background: var(--white);
}

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

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.vision-mission {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.vm-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.vm-item p {
    color: var(--text-light);
    line-height: 1.6;
}

.about-image {
    position: relative;
}

.about-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-medium);
    transition: var(--transition);
}

.about-img:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-heavy);
}

.about-bg {
    background: var(--gradient-primary);
    height: 400px;
}

/* About Features Section */
.about-features {
    margin-top: 4rem;
}

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

.about-feature-item {
    display: flex;
    gap: 2rem;
    align-items: center;
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.about-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.about-feature-image {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    border-radius: var(--border-radius);
    overflow: hidden;
}

.feature-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius);
    transition: var(--transition);
}

.about-feature-item:hover .feature-img {
    transform: scale(1.05);
}

.about-feature-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.about-feature-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Products Section - Simplified */
.products-section {
    padding: 3rem 0;
    background: var(--light-color);
}

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

.product-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    text-align: center;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.product-image {
    height: 250px;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
    position: relative;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
    transition: all 0.3s ease;
}

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

.product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.1) 100%);
    pointer-events: none;
}

.product-content {
    padding: 2rem;
}

.product-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.product-description {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.8rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    display: inline-block;
}

.btn-outline:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Primary Button Styles */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: var(--border-radius);
    text-decoration: none;
    font-weight: 600;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-light);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Section Header Styles */
.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    position: relative;
}

.section-subtitle::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
    line-height: 1.2;
}

/* Achievement Section */
.achievement-section {
    padding: 2.5rem 0;
    background: var(--gradient-primary);
    color: var(--white);
}

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

.achievement-item {
    text-align: center;
    padding: 2rem;
}

.achievement-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.achievement-label {
    font-size: 1.1rem;
    font-weight: 500;
}

/* Why Choose Us Section */
.why-choose-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.reason-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-color);
}

.reason-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.reason-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.reason-card h4 {
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-size: 1.3rem;
    font-weight: 600;
}

.reason-card p {
    color: #666;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    padding: 3rem 0;
    background: var(--dark-color);
    color: white;
}

.testimonials-section .section-title,
.testimonials-section .section-subtitle {
    color: white;
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 15px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    font-style: italic;
    line-height: 1.6;
    color: #e9ecef;
}

.testimonial-author h5 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.testimonial-author span {
    color: #adb5bd;
    font-size: 0.9rem;
}

/* Our Clients Section */
.clients-section {
    padding: 3rem 0;
    background: white;
}

.section-description {
    max-width: 800px;
    margin: 0 auto 3rem;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
}

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

.client-card {
    background: #f8f9fa;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.client-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    background: white;
}

.client-image {
    height: 200px;
    overflow: hidden;
}

.client-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

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

.client-info {
    padding: 1.5rem;
    text-align: center;
}

.client-info h4 {
    color: var(--dark-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.client-info p {
    color: var(--text-light);
    line-height: 1.5;
    font-size: 0.95rem;
}

/* Client Statistics */
.client-stats {
    margin-top: 4rem;
    padding: 3rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    opacity: 0.9;
}

/* Latest Projects Section */
.projects-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.projects-section::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="projects-pattern" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23007bff" opacity="0.05"/><circle cx="80" cy="80" r="1" fill="%23007bff" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23projects-pattern)"/></svg>');
    pointer-events: none;
}

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

.project-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

.project-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.project-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.project-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 123, 255, 0.9), rgba(108, 117, 125, 0.8));
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 1.5rem;
}

.project-card:hover .project-overlay {
    opacity: 1;
}

.project-category {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-content {
    padding: 2rem;
}

.project-content h4 {
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.4;
}

.project-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.project-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.project-location {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.875rem;
}

.project-year {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
}

.projects-cta {
    text-align: center;
    margin-top: 4rem;
    padding: 3rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.projects-cta h3 {
    color: var(--dark-color);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.projects-cta p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Responsive Design for Projects */
@media (max-width: 768px) {
    .projects-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .project-card {
        margin: 0 1rem;
    }
    
    .project-image {
        height: 200px;
    }
    
    .project-content {
        padding: 1.5rem;
    }
    
    .projects-cta {
        margin: 2rem 1rem 0;
        padding: 2rem 1rem;
    }
    
    .projects-cta h3 {
        font-size: 1.5rem;
    }
    
    .projects-cta p {
        font-size: 1rem;
    }
}

/* Industry We Serve Section */
.industries-section {
    padding: 3rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.industries-section::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="20" cy="20" r="1" fill="%23000" opacity="0.02"/><circle cx="80" cy="80" r="1" fill="%23000" opacity="0.02"/><circle cx="50" cy="50" r="1" fill="%23000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

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

.industry-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid #f0f0f0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.industry-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.industry-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.industry-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.industry-card:hover .industry-image img {
    transform: scale(1.05);
}

.industry-content {
    padding: 1.5rem;
    text-align: center;
}

.industry-card h4 {
    margin-bottom: 0.75rem;
    color: var(--dark-color);
    font-size: 1.2rem;
    font-weight: 600;
}

.industry-card p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
}

.industry-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0, 82, 204, 0.1), rgba(255, 107, 107, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.industry-card:hover .industry-image::before {
    opacity: 1;
}

/* Footer Styles */
.footer {
    padding: 2.5rem 0;
    background: var(--dark-color);
    color: white;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.footer-logo-img {
    height: 35px;
    width: auto;
}

.footer-logo h3 {
    margin: 0;
    font-size: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-logo span {
    color: var(--accent-color);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 2rem;
    margin-top: 2rem;
    align-items: start;
}

.footer-content h4 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    position: relative;
}

.footer-content h4::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--gradient-primary);
    border-radius: 2px;
}

/* Footer Brand Section */
.footer-brand {
    max-width: 100%;
}

.footer-brand p {
    color: #adb5bd;
    line-height: 1.6;
    margin: 1.5rem 0;
    font-size: 0.95rem;
}

/* Footer Links, Products, Materials, Contact */
.footer-links, .footer-products, .footer-materials, .footer-contact {
    max-width: 100%;
}

/* Desktop Footer Grid Layout */
@media (min-width: 769px) {
    .footer-content {
        display: grid !important;
        grid-template-columns: 2fr 1fr 1fr 1.5fr !important;
        gap: 2rem !important;
        align-items: start !important;
    }
    
    .footer-brand {
        grid-column: 1 !important;
    }
    
    .footer-links {
        grid-column: 2 !important;
    }
    
    .footer-materials {
        grid-column: 3 !important;
    }
    
    .footer-contact {
        grid-column: 4 !important;
    }
}

.footer-links ul, .footer-products ul, .footer-materials ul, .footer-contact ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links ul li, .footer-products ul li, .footer-materials ul li, .footer-contact ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a, .footer-products ul li a, .footer-materials ul li a, .footer-contact ul li a {
    color: #adb5bd;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-links ul li a:hover, .footer-products ul li a:hover, .footer-materials ul li a:hover, .footer-contact ul li a:hover {
    color: var(--accent-color);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    background: var(--gradient-primary);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #495057;
    padding-top: 2rem;
    margin-top: 2rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    margin: 0;
    color: #adb5bd;
    font-size: 0.9rem;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-bottom-links a {
    color: var(--accent-color);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: white;
    text-decoration: underline;
}

.footer-bottom-links span {
    color: #6c757d;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 123, 255, 0.4);
}

/* Quality Policy Page Styles */
.quality-policy .breadcrumb-section {
    padding: 120px 0 60px;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.quality-policy .breadcrumb-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.quality-policy .breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.quality-policy .breadcrumb-item {
    color: rgba(255, 255, 255, 0.8);
}

.quality-policy .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: white;
}

.breadcrumb-item.active {
    color: var(--accent-color);
}

.breadcrumb-item + .breadcrumb-item::before {
    content: '/';
    margin-right: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
}

.quality-policy-section {
    padding: 80px 0;
    background: white;
}

.quality-intro {
    margin-bottom: 5rem;
}

.quality-intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.quality-intro-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.quality-pillars,
.quality-process,
.certifications-section,
.testing-section {
    margin-bottom: 5rem;
}

.quality-pillars h3,
.quality-process h3,
.certifications-section h3,
.testing-section h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.quality-pillars h3::after,
.quality-process h3::after,
.certifications-section h3::after,
.testing-section h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

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

.pillar-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-color);
}

.pillar-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.pillar-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.pillar-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.pillar-card p {
    color: var(--text-light);
    line-height: 1.6;
}

.process-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-primary);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    position: relative;
    z-index: 2;
    margin: 0 2rem;
}

.timeline-content {
    flex: 1;
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 350px;
}

.timeline-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

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

.cert-card {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.cert-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    background: white;
}

.cert-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.cert-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.testing-content {
    max-width: 1000px;
    margin: 0 auto;
}

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

.testing-category {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.testing-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.testing-category h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    border-bottom: 2px solid var(--light-color);
    padding-bottom: 0.5rem;
}

.testing-category ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.testing-category li {
    padding: 0.5rem 0;
    color: var(--text-light);
    position: relative;
    padding-left: 1.5rem;
}

.testing-category li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.quality-image-section {
    margin: 4rem 0;
    text-align: center;
}

.quality-image {
    max-width: 800px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.quality-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.quality-image:hover .quality-img {
    transform: scale(1.05);
}

.quality-cta {
    background: var(--gradient-primary);
    padding: 4rem 2rem;
    border-radius: 20px;
    text-align: center;
    color: white;
}

.cta-content h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-content .btn {
    background: white;
    color: var(--primary-color);
    font-weight: 600;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.cta-content .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

/* About Page Styles */

/* Breadcrumb Section */
.breadcrumb-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/hero/steel-background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding: 6rem 0 3rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 80px; /* Account for fixed navbar */
    width: 100%;
    box-sizing: border-box;
}

.breadcrumb-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.breadcrumb-content h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
    line-height: 1.2;
}

.breadcrumb {
    font-size: 1.1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
}

.breadcrumb a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb span {
    color: #adb5bd;
}

/* About Hero Section */
.about-hero-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

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

.about-hero-text h2 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.about-hero-text h3 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 2rem;
    font-weight: 700;
}

.about-hero-text p {
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.about-hero-image {
    position: relative;
}

.about-hero-img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Company Features Section */
.company-features-section {
    padding: 5rem 0;
}

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

.feature-box {
    background: white;
    padding: 2.5rem 1.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
}

.feature-box h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.feature-box p {
    color: #6c757d;
    line-height: 1.6;
}

/* Company Story Section */
.company-story-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

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

.story-text h2 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.story-text h3 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 2rem;
    font-weight: 700;
}

.story-text p {
    color: #6c757d;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.story-highlights {
    margin-top: 2rem;
}

.highlight-item {
    margin-bottom: 1.5rem;
}

.highlight-item h5 {
    color: var(--accent-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.highlight-item p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

.story-img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Infrastructure Section */
.infrastructure-section {
    padding: 5rem 0;
}

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

.infrastructure-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

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

.infrastructure-image {
    height: 250px;
    overflow: hidden;
}

.infrastructure-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.infrastructure-item:hover .infrastructure-image img {
    transform: scale(1.05);
}

.infrastructure-content {
    padding: 2rem;
}

.infrastructure-content h4 {
    color: var(--dark-color);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.infrastructure-content p {
    color: #6c757d;
    line-height: 1.6;
}

/* Why Choose Detailed Section */
.why-choose-detailed-section {
    padding: 5rem 0;
    background: #f8f9fa;
}

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

.choose-text h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 2rem;
    font-weight: 700;
}

.choose-reasons {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.reason-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.reason-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.reason-icon i {
    font-size: 1.5rem;
    color: white;
}

.reason-content h4 {
    color: var(--dark-color);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.reason-content p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

.choose-img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Statistics Section */
.statistics-section {
    padding: 5rem 0;
    background: var(--dark-color);
    color: white;
}

.statistics-section .section-header h2 {
    color: white;
}

.statistics-section .section-header p {
    color: #adb5bd;
}

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

.stat-item {
    text-align: center;
    padding: 2rem 1rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1.1rem;
    color: #adb5bd;
    font-weight: 500;
}

/* Team Section */
.team-section {
    padding: 5rem 0;
}

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

.team-member {
    background: white;
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
}

.member-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--accent-color);
}

.member-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info h4 {
    color: var(--dark-color);
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.member-info p {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.member-info span {
    color: #6c757d;
    font-size: 0.9rem;
}

/* About CTA Section */
.about-cta-section {
    padding: 5rem 0;
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.cta-buttons .btn-outline {
    border-color: white;
    color: white;
}

.cta-buttons .btn-outline:hover {
    background: white;
    color: var(--primary-color);
}

.cta-buttons .btn.secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-buttons .btn.secondary:hover {
    background: white;
    color: var(--primary-color);
}

.cta-buttons .btn.whatsapp {
    background: #25d366;
    color: white;
}

.cta-buttons .btn.whatsapp:hover {
    background: #20b85a;
    transform: translateY(-2px);
}

/* Desktop Breadcrumb Section Fixes */
@media (min-width: 769px) {
    .breadcrumb-section {
        background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/hero/steel-background.jpg') !important;
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        background-attachment: fixed !important;
        padding: 6rem 0 4rem !important;
        text-align: center !important;
        color: white !important;
        position: relative !important;
        overflow: hidden !important;
        min-height: 250px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin-top: 80px !important; /* Account for fixed navbar */
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .breadcrumb-content {
        position: relative !important;
        z-index: 2 !important;
        width: 100% !important;
        max-width: 800px !important;
        margin: 0 auto !important;
        padding: 2.5rem 2rem !important;
        text-align: center !important;
    }

    .breadcrumb-content h1 {
        font-size: clamp(2.5rem, 4vw, 4rem) !important;
        margin-bottom: 1.5rem !important;
        font-weight: 700 !important;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8) !important;
        line-height: 1.2 !important;
        color: white !important;
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        display: block !important;
        visibility: visible !important;
    }

    .breadcrumb {
        font-size: 1.2rem !important;
        color: rgba(255, 255, 255, 0.95) !important;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8) !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 0.8rem !important;
        margin: 0 !important;
        padding: 0 !important;
        list-style: none !important;
        flex-wrap: wrap !important;
    }

    .breadcrumb a {
        color: rgba(255, 255, 255, 0.9) !important;
        text-decoration: none !important;
        transition: color 0.3s ease !important;
        font-weight: 500 !important;
    }

    .breadcrumb a:hover {
        color: #ffffff !important;
        text-decoration: underline !important;
    }

    .breadcrumb span {
        color: rgba(255, 255, 255, 0.7) !important;
        font-weight: 400 !important;
    }
}

/* Large Desktop Breadcrumb Optimization */
@media (min-width: 1200px) {
    .breadcrumb-section {
        padding: 7rem 0 5rem !important;
        min-height: 300px !important;
    }

    .breadcrumb-content {
        padding: 3rem 2rem !important;
        max-width: 900px !important;
    }

    .breadcrumb-content h1 {
        font-size: clamp(3rem, 4vw, 4.5rem) !important;
        margin-bottom: 2rem !important;
    }

    .breadcrumb {
        font-size: 1.3rem !important;
        gap: 1rem !important;
    }
}

/* Additional Desktop Layout Fixes */
@media (min-width: 769px) {
    /* Ensure no content is hidden behind navbar */
    body {
        padding-top: 0 !important;
    }
    
    /* Navbar height consistency */
    .navbar {
        min-height: 80px !important;
        height: 80px !important;
        display: flex !important;
        align-items: center !important;
    }
    
    .nav-container {
        height: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        padding: 0 2rem !important;
        min-height: 80px !important;
    }
    
    /* Ensure breadcrumb section is fully visible */
    .breadcrumb-section {
        margin-top: 80px !important;
        position: relative !important;
        z-index: 1 !important;
    }
    
    /* Fix any potential text cutting */
    .breadcrumb-content h1,
    .breadcrumb-content .breadcrumb {
        visibility: visible !important;
        opacity: 1 !important;
        display: block !important;
    }
    
    .breadcrumb-content h1 {
        white-space: normal !important;
        overflow: visible !important;
        text-overflow: unset !important;
    }
}

/* Ensure nav menu is visible on desktop */
@media (min-width: 768px) {
    .nav-menu {
        display: flex !important;
        align-items: center;
        gap: 2rem;
    }
    
    .nav-item {
        position: relative;
    }
}

/* Products Modal Styles */
.products-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
    padding: 1rem;
    box-sizing: border-box;
}

.products-overlay.active {
    opacity: 1;
    visibility: visible;
}

.products-modal {
    position: relative;
    background: white;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    max-width: 90vw;
    max-height: 85vh;
    width: 650px;
    min-height: 400px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.products-modal-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
}

.products-modal-header h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 600;
}

.close-modal {
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
}

.close-modal:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.products-modal-content {
    padding: 2rem;
    overflow-y: auto;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.products-modal .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 1.25rem;
    flex: 1;
}

.products-modal .product-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1rem;
    border: 2px solid #f0f0f0;
    border-radius: 12px;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    background: #fafafa;
    min-height: 100px;
    position: relative;
    overflow: hidden;
}

.products-modal .product-item:hover,
.products-modal .product-item:focus {
    border-color: #007bff;
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.15);
    outline: none;
}

.products-modal .product-item:active {
    transform: translateY(0);
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0.2);
}

.products-modal .product-item i {
    font-size: 2rem;
    color: #007bff;
    margin-bottom: 0.75rem;
}

.products-modal .product-item span {
    font-weight: 500;
    text-align: center;
    font-size: 0.9rem;
    line-height: 1.3;
}

/* Mobile specific adjustments - Enhanced responsiveness */
@media (max-width: 480px) {
    .products-modal {
        width: 95vw !important;
        height: 85vh !important;
        max-height: 85vh !important;
        max-width: 95vw !important;
        margin: 0 !important;
        border-radius: 12px !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        position: fixed !important;
    }
    
    .products-modal-header {
        padding: 0.75rem 1rem !important;
        flex-shrink: 0 !important;
    }
    
    .products-modal-header h3 {
        font-size: 1.1rem !important;
        margin: 0 !important;
        flex: 1 !important;
    }
    
    .close-modal {
        width: 32px !important;
        height: 32px !important;
        font-size: 1.2rem !important;
        flex-shrink: 0 !important;
    }
    
    .products-modal-content {
        padding: 1rem !important;
        overflow-y: auto !important;
        flex: 1 !important;
        -webkit-overflow-scrolling: touch !important;
    }
    
    .products-modal .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.75rem !important;
        width: 100% !important;
    }
    
    .products-modal .product-item {
        padding: 1rem 0.5rem !important;
        border-radius: 8px !important;
        min-height: 80px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        border: 2px solid #f0f0f0 !important;
        transition: all 0.3s ease !important;
    }
    
    .products-modal .product-item:hover,
    .products-modal .product-item:focus {
        border-color: #007bff !important;
        background: white !important;
        transform: translateY(-2px) !important;
        box-shadow: 0 4px 15px rgba(0, 123, 255, 0.15) !important;
    }
    
    .products-modal .product-item i {
        font-size: 1.5rem !important;
        margin-bottom: 0.5rem !important;
        color: #007bff !important;
    }
    
    .products-modal .product-item span {
        font-size: 0.8rem !important;
        line-height: 1.2 !important;
        font-weight: 500 !important;
        max-width: 100% !important;
        word-wrap: break-word !important;
    }
}

@media (min-width: 481px) and (max-width: 768px) {
    .products-modal {
        width: 90vw !important;
        height: 75vh !important;
        max-height: 75vh !important;
        max-width: 500px !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
    }
    
    .products-modal-header {
        padding: 1rem 1.5rem !important;
    }
    
    .products-modal-header h3 {
        font-size: 1.2rem !important;
    }
    
    .products-modal-content {
        padding: 1.5rem !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch !important;
    }
    
    .products-modal .products-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 1rem !important;
    }
    
    .products-modal .product-item {
        padding: 1rem !important;
        min-height: 90px !important;
        border-radius: 10px !important;
    }
    
    .products-modal .product-item i {
        font-size: 1.6rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    .products-modal .product-item span {
        font-size: 0.85rem !important;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .products-modal {
        width: 80vw;
        max-width: 600px;
        height: auto;
        max-height: 70vh;
    }
    
    .products-modal-header {
        padding: 1.25rem 1.75rem;
    }
    
    .products-modal-header h3 {
        font-size: 1.3rem;
    }
    
    .products-modal-content {
        padding: 1.75rem;
    }
    
    .products-modal .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
    
    .products-modal .product-item {
        padding: 1.25rem 1rem;
    }
    
    .products-modal .product-item i {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .products-modal .product-item span {
        font-size: 0.85rem;
    }
}

/* Hide products modal on desktop (1025px+) since desktop uses dropdown */
@media (min-width: 1025px) {
    .products-overlay {
        display: none !important;
    }
}

/* ========================================
   MOBILE RESPONSIVE TABLES - CARD LAYOUT
   ======================================== */

/* Desktop table styles (default) */
.specs-table-container {
    width: 100%;
    margin: 1rem 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    font-size: 14px;
    font-family: 'Poppins', sans-serif;
    background-color: white;
    min-width: 600px;
}

.specs-table thead {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.specs-table thead th {
    padding: 12px 15px;
    text-align: left;
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    white-space: nowrap;
}

.specs-table tbody tr {
    border-bottom: 1px solid #eee;
    transition: background-color 0.2s ease;
}

.specs-table tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

.specs-table tbody tr:hover {
    background-color: #e3f2fd;
}

.specs-table td {
    padding: 12px 15px;
    border: none;
    vertical-align: top;
    line-height: 1.5;
}

.specs-table td strong {
    color: #333;
    font-weight: 600;
}

/* MOBILE CARD LAYOUT (768px and below) */
@media (max-width: 768px) {
    /* Hide traditional table on mobile */
    .specs-table-container {
        background: transparent;
        box-shadow: none;
        border: none;
        overflow: visible;
    }
    
    .specs-table {
        display: none;
    }
    
    /* Show card layout instead */
    .specs-table-container.mobile-cards {
        display: block;
    }
    
    .specs-card {
        background: white;
        margin-bottom: 1rem;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        border: 1px solid #e9ecef;
        overflow: hidden;
    }
    
    .specs-card-header {
        background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        color: white;
        padding: 12px 16px;
        font-weight: 600;
        font-size: 14px;
    }
    
    .specs-card-body {
        padding: 0;
    }
    
    .specs-card-row {
        display: flex;
        border-bottom: 1px solid #f0f0f0;
        min-height: 44px;
        align-items: center;
    }
    
    .specs-card-row:last-child {
        border-bottom: none;
    }
    
    .specs-card-label {
        flex: 0 0 35%;
        padding: 12px 16px;
        background: #f8f9fa;
        font-weight: 600;
        font-size: 12px;
        color: #667eea;
        border-right: 1px solid #e9ecef;
    }
    
    .specs-card-value {
        flex: 1;
        padding: 12px 16px;
        font-size: 12px;
        line-height: 1.4;
        word-wrap: break-word;
    }
    
    /* Size chart mobile cards */
    .specs-table.size-chart + .mobile-cards .specs-card-header {
        background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
    }
    
    .specs-table.size-chart + .mobile-cards .specs-card-label {
        color: #28a745;
    }
}

/* EXTRA SMALL MOBILE (480px and below) */
@media (max-width: 480px) {
    .specs-card-label {
        flex: 0 0 40%;
        font-size: 11px;
        padding: 10px 12px;
    }
    
    .specs-card-value {
        font-size: 11px;
        padding: 10px 12px;
    }
    
    .specs-card-header {
        padding: 10px 12px;
        font-size: 13px;
    }
}

/* JavaScript will handle table-to-card conversion on mobile */

/* Extra Small Mobile (320px and below) */
@media (max-width: 480px) {
    .specs-table {
        font-size: 12px;
    }
    
    .specs-table thead th {
        padding: 8px 6px;
        font-size: 10px;
    }
    
    .specs-table td {
        padding: 8px 6px;
    }
}

/* Card-style table layout for very small screens (optional alternative) */
@media (max-width: 480px) {
    .specs-table.card-layout {
        min-width: 100%;
        display: block;
    }
    
    .specs-table.card-layout thead {
        display: none;
    }
    
    .specs-table.card-layout tbody {
        display: block;
    }
    
    .specs-table.card-layout tr {
        display: block;
        margin-bottom: 1rem;
        background: white;
        border: 1px solid #e9ecef;
        border-radius: 8px;
        padding: 0;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    }
    
    .specs-table.card-layout td {
        display: block;
        border: none;
        padding: 8px 12px;
        text-align: left;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .specs-table.card-layout td:last-child {
        border-bottom: none;
    }
    
    .specs-table.card-layout td:before {
        content: attr(data-label) ": ";
        font-weight: 600;
        color: #667eea;
        display: inline-block;
        margin-right: 0.5rem;
    }
}

/* Size Chart Tables - Special handling for tables with many columns */
.specs-table.size-chart {
    min-width: 800px;
}

@media (max-width: 768px) {
    .specs-table.size-chart {
        min-width: 600px;
    }
}

@media (max-width: 480px) {
    .specs-table.size-chart {
        min-width: 500px;
    }
}

/* Table scroll hint for mobile users */
.specs-table-container::after {
    content: "";
    display: none;
}

@media (max-width: 768px) {
    .specs-table-container::after {
        content: "← Scroll horizontally to see more →";
        display: block;
        text-align: center;
        font-size: 12px;
        color: #666;
        padding: 8px;
        background: #f8f9fa;
        border-top: 1px solid #e9ecef;
        font-style: italic;
    }
}

/* Additional responsive table enhancements for better mobile experience */
@media (max-width: 768px) {
    /* Ensure proper text handling in table cells */
    .specs-table td {
        word-wrap: break-word !important;
        word-break: break-word !important;
        overflow-wrap: break-word !important;
        hyphens: auto !important;
        max-width: 250px;
    }
    
    /* Better handling of long technical terms */
    .specs-table td:first-child {
        word-break: normal !important;
        white-space: nowrap !important;
        overflow: hidden;
        text-overflow: ellipsis;
        max-width: 120px;
    }
    
    /* Improve readability for specification values */
    .specs-table td:nth-child(2) {
        max-width: 300px;
        word-break: break-word !important;
    }
    
    /* Applications column optimization */
    .specs-table td:last-child {
        max-width: 150px;
        font-size: 12px;
    }
    
    /* Add touch-friendly scroll indicators */
    .specs-table-container {
        position: relative;
    }
    
    .specs-table-container::before {
        opacity: 0.8;
        animation: fadeInOut 3s ease-in-out infinite;
    }
    
    @keyframes fadeInOut {
        0%, 100% { opacity: 0.6; }
        50% { opacity: 1; }
    }
}

@media (max-width: 480px) {
    .specs-table td:first-child {
        max-width: 100px;
        font-size: 11px;
    }
    
    .specs-table td:nth-child(2) {
        max-width: 200px;
        font-size: 11px;
    }
    
    .specs-table td:last-child {
        max-width: 120px;
        font-size: 10px;
    }
}

/* Compact mobile table view */
@media (max-width: 768px) {
    .specs-table.compact-mobile {
        font-size: 11px;
    }
    
    .specs-table.compact-mobile thead th {
        padding: 6px 4px;
        font-size: 9px;
    }
    
    .specs-table.compact-mobile td {
        padding: 6px 4px;
        font-size: 10px;
        line-height: 1.2;
    }
    
    .specs-table.compact-mobile td:first-child {
        max-width: 80px;
        font-size: 9px;
    }
    
    .specs-table.compact-mobile td:nth-child(2) {
        max-width: 150px;
        font-size: 9px;
    }
    
    .specs-table.compact-mobile td:last-child {
        max-width: 100px;
        font-size: 9px;
    }
}

/* Additional mobile table improvements */
@media (max-width: 768px) {
    /* Ensure mobile cards are always visible */
    .mobile-cards {
        display: block !important;
    }
    
    /* Better spacing for cards */
    .specs-card {
        margin-bottom: 1.5rem;
        border: 2px solid #e9ecef;
        transition: all 0.3s ease;
    }
    
    .specs-card:hover {
        border-color: #667eea;
        box-shadow: 0 6px 16px rgba(102, 126, 234, 0.15);
        transform: translateY(-2px);
    }
    
    /* Better typography for mobile */
    .specs-card-header {
        font-size: 15px;
        letter-spacing: 0.3px;
        text-align: center;
    }
    
    .specs-card-label {
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-size: 11px;
    }
    
    .specs-card-value {
        font-size: 13px;
        color: #333;
        line-height: 1.5;
    }
    
    /* Ensure proper text wrapping */
    .specs-card-value,
    .specs-card-label {
        word-wrap: break-word;
        word-break: break-word;
        overflow-wrap: break-word;
        hyphens: auto;
    }
}

/* Dark mode support for tables */
@media (prefers-color-scheme: dark) {
    .specs-card {
        background: #2d3748;
        border-color: #4a5568;
        color: #e2e8f0;
    }
    
    .specs-card-label {
        background: #4a5568;
        color: #90cdf4;
        border-color: #4a5568;
    }
    
    .specs-card-value {
        color: #e2e8f0;
    }
}
