:root {
    --primary-blue: #00b2d8; /* Updated to match logo blue */
    --secondary-orange: #f7a81b; /* Updated to match logo orange */
    --light-gray: #f5f5f5;
    --dark-gray: #333333;
    --white: #ffffff;
    --gradient-blue: #00b2d8;
    --gradient-orange: #f7a81b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="white"/><path d="M0 50 L50 0 L100 50 L50 100 Z" fill="%230099cc" opacity="0.03"/><path d="M20 70 L70 20 L120 70 L70 120 Z" fill="%23ffa500" opacity="0.03"/></svg>'),
    linear-gradient(170deg, rgba(0,153,204,0.07) 0%, rgba(255,165,0,0.07) 100%);
    line-height: 1.6;
}

/* Enhanced Product Navigation Bar */
.prod-nav-bar {
    background: linear-gradient(90deg, var(--gradient-blue) 0%, var(--light-gray) 100%);
    padding: 1rem 0;
    border-bottom: 3px solid var(--secondary-orange);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.prod-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.prod-nav-items {
    display: flex;
    justify-content: space-between;
    width: 100%;
    flex-wrap: wrap; /* Added to allow items to wrap to next line on smaller screens */
    gap: 0.5rem; /* Added gap between wrapped items */
}

.prod-nav-item {
    text-decoration: none;
    color: var(--dark-gray);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.6rem 1rem;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
}

.prod-nav-item:hover {
    background-color: rgba(247, 168, 27, 0.15);
    color: var(--dark-gray);
    transform: translateY(-2px);
}

.prod-nav-item.active {
    background-color: var(--secondary-orange);
    color: var(--white);
    font-weight: 600;
    box-shadow: 0 4px 8px rgba(247, 168, 27, 0.3);
}

.prod-nav-item:before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--secondary-orange);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.prod-nav-item:hover:before {
    width: 70%;
}

/* Mobile responsive styles */
@media screen and (max-width: 768px) {
    .prod-nav-items {
        justify-content: center; /* Center items on mobile */
    }
    
    .prod-nav-item {
        font-size: 0.85rem; /* Slightly smaller font on mobile */
        padding: 0.5rem 0.8rem; /* Slightly smaller padding */
        margin: 0.2rem; /* Add some margin between items */
    }
}

/* For very small screens */
@media screen and (max-width: 480px) {
    .prod-nav-container {
        padding: 0 1rem; /* Smaller container padding */
    }
    
    .prod-nav-items {
        gap: 0.3rem; /* Smaller gap */
    }
    
    .prod-nav-item {
        font-size: 0.75rem; /* Even smaller font */
        padding: 0.4rem 0.6rem; /* Smaller padding */
    }
}

/* Improved CTA Button */
.cta-button {
    background: linear-gradient(45deg, var(--primary-blue), var(--secondary-orange));
    color: var(--white);
    padding: 0.9rem 2.2rem;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.1rem;
    display: inline-block;
    transition: all 0.4s ease;
    box-shadow: 0 6px 12px rgba(0, 178, 216, 0.2);
    border: none;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.cta-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--secondary-orange), var(--primary-blue));
    transition: all 0.4s ease;
    z-index: -1;
}

.cta-button:hover:before {
    left: 0;
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 178, 216, 0.3);
    color: var(--white);
}

/* Enhanced Product Overview */
.product-overview {
    padding: 1.5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
}

.product-overview:before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 178, 216, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: -1;
}

.product-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    position: relative;
    transform: perspective(1000px) rotateY(5deg);
    transition: all 0.5s ease;
}

.product-image:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 178, 216, 0.2) 0%, rgba(247, 168, 27, 0.2) 100%);
    z-index: 1;
}

.product-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.6s ease;
}

.product-image:hover {
    transform: perspective(1000px) rotateY(0);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

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

.product-description h2 {
    font-size: 2.5rem;
    margin-bottom: 1.8rem;
    color: var(--primary-blue);
    position: relative;
    display: inline-block;
}

.product-description h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 4px;
    background: var(--secondary-orange);
    border-radius: 2px;
}

.product-description p {
    margin-bottom: 1.8rem;
    font-size: 1.15rem;
    line-height: 1.7;
}

.spec-highlight {
    display: flex;
    flex-wrap: wrap;
    margin-top: 2.5rem;
    gap: 1.2rem;
}

.spec-item {
    background-color: var(--light-gray);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 500;
    font-size: 0.95rem;
    border-left: 4px solid var(--secondary-orange);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.spec-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    background-color: rgba(247, 168, 27, 0.1);
}

/* Enhanced Tab Section */
.tabs-section {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="100" height="100" viewBox="0 0 100 100"><rect width="100" height="100" fill="white"/><path d="M0 50 L50 0 L100 50 L50 100 Z" fill="%230099cc" opacity="0.03"/><path d="M20 70 L70 20 L120 70 L70 120 Z" fill="%23ffa500" opacity="0.03"/></svg>'),
    linear-gradient(170deg, rgba(0,153,204,0.07) 0%, rgba(255,165,0,0.07) 100%);
    padding: 1.5rem 2rem;
    position: relative;
    overflow: hidden;
}

.tabs-section:before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 178, 216, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
}

.tabs-section:after {
    content: '';
    position: absolute;
    bottom: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(247, 168, 27, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    z-index: 0;
}

.tabs-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.section-heading {
    text-align: center;
    margin-bottom: 2rem;
}

.section-heading h2 {
    font-size: 2.8rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-heading h2::after {
    content: "";
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: var(--secondary-orange);
    border-radius: 2px;
}

/* Enhanced Tab Navigation */
.tab-nav {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.tab-button {
    background-color: var(--white);
    color: var(--dark-gray);
    border: none;
    padding: 1.1rem 2.2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.tab-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-blue), var(--secondary-orange));
    transition: all 0.3s ease;
    z-index: -1;
}

.tab-button:hover:before {
    left: 0;
}

.tab-button:hover {
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.tab-button.active {
    background: linear-gradient(45deg, var(--primary-blue), var(--secondary-orange));
    color: var(--white);
    box-shadow: 0 8px 15px rgba(0, 178, 216, 0.2);
}

/* Enhanced Tab Content */
.tab-content {
    display: none;
    animation: fadeIn 0.6s ease forwards;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced Features Section */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.feature-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    padding: 2.5rem 2rem;
    text-align: center;
    border-bottom: 5px solid transparent;
    position: relative;
}

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

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

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.1);
    border-bottom-color: var(--secondary-orange);
}

.feature-icon {
    background: linear-gradient(135deg, rgba(0, 178, 216, 0.1) 0%, rgba(247, 168, 27, 0.1) 100%);
    width: 90px;
    height: 90px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.8rem;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(0, 178, 216, 0.2) 0%, rgba(247, 168, 27, 0.2) 100%);
}

.feature-icon svg {
    width: 45px;
    height: 45px;
    fill: var(--primary-blue);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon svg {
    fill: var(--secondary-orange);
}

.feature-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1.2rem;
    color: var(--primary-blue);
    transition: all 0.3s ease;
}

.feature-card:hover h3 {
    color: var(--secondary-orange);
}

.feature-card p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

/* Enhanced Applications Section */
.applications-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.application-card {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    height: 280px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
    transition: all 0.4s ease;
}

.application-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(0deg, rgba(0, 178, 216, 0.8) 0%, rgba(247, 168, 27, 0.4) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.application-card:hover:before {
    opacity: 0.7;
}

.application-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.application-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
    padding: 2.5rem 1.8rem 1.8rem;
    color: var(--white);
    transform: translateY(50px);
    transition: all 0.4s ease;
    z-index: 2;
}

.application-card:hover .application-overlay {
    transform: translateY(0);
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
}

.application-card:hover img {
    transform: scale(1.15);
}

.application-overlay h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    position: relative;
    padding-bottom: 10px;
}

.application-overlay h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--secondary-orange);
    transition: all 0.3s ease;
}

.application-card:hover .application-overlay h3:after {
    width: 60px;
}

.application-overlay p {
    font-size: 0.95rem;
    opacity: 0.9;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.6;
}

/* Enhanced Specifications Table */
/* Enhanced Specifications Table */
.specs-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-top: 2.5rem;
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.specs-table th, .specs-table td {
    padding: 1.2rem 1.5rem;
    text-align: left;
}

.specs-table th {
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-orange));
    color: var(--white);
    font-weight: 600;
    font-size: 1.05rem;
}

.specs-table tr {
    transition: all 0.3s ease;
}

.specs-table tr:nth-child(even) {
    background-color: rgba(0, 178, 216, 0.05);
}

.specs-table tr:hover {
    background-color: rgba(247, 168, 27, 0.08);
    transform: translateX(5px);
}

.specs-table td {
    border-bottom: 1px solid #eee;
    font-size: 1rem;
}

.specs-note {
    margin-top: 1.5rem;
    font-style: italic;
    color: #666;
    position: relative;
    padding-left: 20px;
    font-size: 0.95rem;
}

.specs-note:before {
    content: '※';
    position: absolute;
    left: 0;
    color: var(--secondary-orange);
}

.specs-heading {
    margin-top: 3.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary-blue);
    font-size: 1.6rem;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.specs-heading:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--secondary-orange);
}

/* Enhanced Contact Section */
.contact-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-orange) 100%);
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-section:before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.contact-section:after {
    content: '';
    position: absolute;
    bottom: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-section h2 {
    font-size: 2.8rem;
    margin-bottom: 1.8rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: relative;
    display: inline-block;
}

.contact-section h2:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: var(--white);
    border-radius: 2px;
}

.contact-section p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.contact-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.contact-btn {
    padding: 1.1rem 2.2rem;
    border-radius: 50px;
    font-weight: bold;
    text-decoration: none;
    font-size: 1.05rem;
    display: inline-flex;
    align-items: center;
    transition: all 0.4s ease;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.contact-btn.primary {
    background-color: var(--white);
    color: var(--primary-blue);
}

.contact-btn.primary:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--primary-blue), var(--secondary-orange));
    transition: all 0.4s ease;
    z-index: -1;
}

.contact-btn.primary:hover:before {
    left: 0;
}

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

.contact-btn.secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.contact-btn.secondary:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    opacity: 0;
    transition: all 0.4s ease;
    z-index: -1;
}

.contact-btn.secondary:hover:before {
    opacity: 1;
}

.contact-btn.secondary:hover {
    color: var(--primary-blue);
}

.contact-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.contact-btn svg {
    margin-right: 0.8rem;
    width: 22px;
    height: 22px;
    transition: all 0.3s ease;
}

.contact-btn:hover svg {
    transform: scale(1.2);
}

/* Enhanced Animated Elements */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Enhanced Responsive Styles */
@media (max-width: 1024px) {
    .features-grid, .applications-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .product-overview {
        grid-template-columns: 1fr;
        gap: 3rem;
        padding: 4rem 2rem;
    }
    
    .product-image {
        order: -1;
        max-width: 650px;
        margin: 0 auto;
        transform: perspective(1000px) rotateY(0);
    }
    
    .tab-button {
        padding: 0.9rem 1.8rem;
        font-size: 1rem;
    }
    
    .section-heading h2 {
        font-size: 2.3rem;
    }
    
    .product-description h2 {
        font-size: 2.2rem;
    }
    
    .contact-section h2 {
        font-size: 2.3rem;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .applications-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .product-description h2 {
        font-size: 2rem;
    }
    
    .section-heading h2 {
        font-size: 2rem;
    }
    
    .specs-table {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .specs-table th, .specs-table td {
        white-space: nowrap;
    }
    
    .contact-section h2 {
        font-size: 2rem;
    }
    
    .contact-section p {
        font-size: 1.1rem;
        max-width: 90%;
    }
    
    .tab-nav {
        flex-wrap: wrap;
        gap: 1rem;
        justify-content: center;
    }
    
    .tab-button {
        width: calc(50% - 0.5rem);
        margin-bottom: 0;
        padding: 0.8rem 1rem;
        font-size: 0.95rem;
        text-align: center;
    }
    
    .product-overview {
        padding: 3rem 2rem;
    }
    
    .tabs-section {
        padding: 4rem 2rem;
    }
    
    .section-heading {
        margin-bottom: 3rem;
    }
    
    .feature-card {
        padding: 2rem 1.5rem;
    }
    
    /* Improved Mobile Navigation */
    .prod-nav-bar {
        padding: 0.8rem 0;
    }
    
    .prod-nav-container {
        padding: 0 1.5rem;
    }
    
}

@media (max-width: 576px) {
    .applications-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .spec-highlight {
        gap: 0.8rem;
    }
    
    .spec-item {
        font-size: 0.85rem;
        padding: 0.5rem 1rem;
    }
    
    .feature-card {
        padding: 1.8rem 1.3rem;
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.3rem;
    }
    
    .feature-icon svg {
        width: 35px;
        height: 35px;
    }
    
    .feature-card h3 {
        font-size: 1.2rem;
    }
    
    .application-card {
        height: 220px;
    }
    
    .tab-button {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .contact-buttons {
        flex-direction: column;
        gap: 1rem;
        max-width: 80%;
        margin: 0 auto;
    }
    
    .contact-btn {
        width: 100%;
        justify-content: center;
    }
    
    .product-description h2 {
        font-size: 1.8rem;
    }
    
    .section-heading h2 {
        font-size: 1.8rem;
    }
    
    .contact-section h2 {
        font-size: 1.8rem;
    }
    
    .contact-section p {
        font-size: 1rem;
    }
    
    .product-overview {
        padding: 2.5rem 1.5rem;
        gap: 2rem;
    }
    
    .tabs-section {
        padding: 3rem 1.5rem;
    }
    
    .product-description p {
        font-size: 1rem;
    }
    
    .prod-nav-container {
        padding: 0 1rem;
    }
    
    .prod-nav-item {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
    .specs-table th, .specs-table td {
        padding: 0.8rem 1rem;
        font-size: 0.9rem;
    }
    
    .specs-heading {
        font-size: 1.4rem;
    }
}

/* Enhanced Mobile Experience */
@media (max-width: 480px) {
    .tab-content {
        padding: 0 0.5rem;
    }
    
    .specs-table th, .specs-table td {
        padding: 0.8rem;
        font-size: 0.85rem;
    }
    
    .specs-note {
        margin-top: 1rem;
        font-size: 0.8rem;
        padding-left: 15px;
    }
    
    /* Add a subtle indicator that table is scrollable */
    .specs-table:after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 5px;
        background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(0,178,216,0.1) 100%);
        pointer-events: none;
    }
    
    .specs-heading {
    font-size: 1.4rem;
    margin-top: 3rem;
    margin-bottom: 1.2rem;
}
}

/* Additional mobile responsiveness styles */
@media (max-width: 480px) {
    .specs-note {
        font-size: 0.85rem;
        margin-top: 1rem;
    }
    
    .feature-card p {
        font-size: 0.9rem;
    }
    
    .application-overlay {
        padding: 2rem 1.5rem 1.5rem;
    }
    
    .application-overlay h3 {
        font-size: 1.2rem;
    }
    
    .application-overlay p {
        font-size: 0.9rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.8rem;
        font-size: 1rem;
    }
    
    .section-heading h2::after {
        width: 80px;
        height: 4px;
    }
}

/* Accessibility Improvements */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

/* Animation Delay Classes */
.delay-100 {
    transition-delay: 0.1s;
}

.delay-200 {
    transition-delay: 0.2s;
}

.delay-300 {
    transition-delay: 0.3s;
}

.delay-400 {
    transition-delay: 0.4s;
}

.delay-500 {
    transition-delay: 0.5s;
}

/* Print Styles */
@media print {
    .prod-nav-bar,
    .contact-section,
    .cta-button {
        display: none;
    }
    
    body {
        color: #000;
        background: #fff;
    }
    
    .product-image,
    .feature-card,
    .application-card,
    .specs-table {
        box-shadow: none;
        border: 1px solid #ddd;
    }
    
    .specs-table th {
        background: #f5f5f5;
        color: #333;
    }
    
    .section-heading h2::after,
    .product-description h2:after,
    .specs-heading:after,
    .application-overlay h3:after {
        display: none;
    }
}