/* Basic Reset and General Styles */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
    overflow-x: hidden;
}

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

/* Color Variables */
:root {
    --primary-color: #2c3e50;
    --secondary-color: #3498db;
    --accent-color: #e74c3c;
    --text-color: #333;
    --light-gray: #f8f8f8;
    --white: #ffffff;
    --shadow-color: rgba(0, 0, 0, 0.1);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 600;
    line-height: 1.2;
}

h1 { font-size: 2.5rem; }
@media (max-width: 768px) { h1 { font-size: 2rem; } }

h2 { font-size: 2rem; }
@media (max-width: 768px) { h2 { font-size: 1.75rem; } }

h3 { font-size: 1.5rem; }
@media (max-width: 768px) { h3 { font-size: 1.25rem; } }

p {
    margin-bottom: 1rem;
    color: #666;
}

/* Buttons */
.button {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
}

.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px var(--shadow-color);
}

.primary-button {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
}

.secondary-button {
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

/* Header Styles */
.main-header {
    background-color: var(--white);
    padding: 15px 0;
    box-shadow: 0 2px 10px var(--shadow-color);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.main-header.scrolled {
    box-shadow: 0 5px 15px var(--shadow-color);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.logo:hover {
    color: var(--secondary-color);
}

/* Navigation */
.main-nav {
    display: flex;
    align-items: center;
}

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

.nav-list li a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-list li a:hover {
    color: var(--secondary-color);
}

/* Mobile Navigation */
.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .mobile-nav-toggle {
        display: block;
    }

    .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 5px 15px var(--shadow-color);
    }

    .nav-list[data-visible="true"] {
        display: flex;
    }

    .nav-list li {
        margin: 0.5rem 0;
    }

    .nav-list li a {
        padding: 0.5rem 1rem;
        display: block;
    }
}

/* Main Content Styles */
main {
    margin-top: 80px;
}

/* Product Detail Page Styles */
.product-detail-page {
    padding: 2rem 0;
}

.product-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    align-items: start;
}

/* Hero Features Styling */
.hero-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-item i {
    color: var(--primary-color);
    width: 20px;
    height: 20px;
    font-size: 18px;
}

.feature-item span {
    flex: 1;
}

.product-image {
    position: relative;
    width: 100%;
    padding-top: 75%; /* 4:3 Aspect Ratio (change this value as needed) */
    overflow: hidden;
}

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

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

/* Product Information Styles */
.product-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.product-content {
    background: var(--white);
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px var(--shadow-color);
}

.product-specs {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.product-specs li {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin: 1rem 0;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.product-specs li:last-child {
    border-bottom: none;
}

.product-specs i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

.spec-table {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 1.5rem;
    margin: 2rem 0;
    padding: 1rem;
    background: var(--white);
    border-radius: 10px;
    box-shadow: 0 2px 4px var(--shadow-color);
}

.spec-row {
    display: flex;
    align-items: flex-start;
    padding: 1rem;
    border-bottom: 1px solid #eee;
}

.spec-row:last-child {
    border-bottom: none;
}

.spec-label {
    font-weight: 600;
    color: var(--primary-color);
    min-width: 150px;
    padding-right: 1rem;
}

.spec-value {
    color: var(--text-color);
    flex: 1;
    word-break: break-word;
}

.spec-value ul {
    margin: 0.5rem 0;
    padding-left: 1.5rem;
}

.spec-value li {
    margin: 0.25rem 0;
    color: var(--text-color);
}

.cta-section {
    text-align: center;
    margin-top: 2rem;
}

.cta-text {
    margin-top: 1rem;
    color: var(--text-color);
    font-size: 1.1rem;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .product-features {
        grid-template-columns: 1fr 1fr;
    }
    
    .service-features {
        display: block !important;
        width: 100% !important;
    }
    
    .service-features li {
        display: block !important;
        width: 100% !important;
    }
}

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

/* Page Header */
.page-header {
    text-align: center;
    padding: 4rem 0;
    background-color: var(--white);
    box-shadow: 0 5px 15px var(--shadow-color);
    margin-bottom: 3rem;
}

.page-title {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.page-description {
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

/* Product & Service Cards */
.product-card, .service-card {
    background-color: var(--white);
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.product-card .product-content {
    margin-top: 1.5rem;
}

.product-card h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.product-card p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

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

.product-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.4;
    color: var(--text-color);
}

.product-features i {
    margin-right: 0.5rem;
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* Product Description Styles */
.product-info {
    margin-top: 2rem;
}

.product-info h2 {
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.product-info p {
    margin-bottom: 1.25rem;
    color: var(--text-color);
    line-height: 1.8;
}

.product-info ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.product-info li {
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.product-info li::before,
.product-specs li::before {
    content: '';
    display: inline-block;
    margin-right: 0.5rem;
}

.product-specs li i {
    color: var(--primary-color);
    margin-right: 0.5rem;
    vertical-align: middle;
}

/* Product Features Highlight */
.product-features li {
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    line-height: 1.4;
}

/* Analytics and Conversion Styles */
.exit-intent-popup {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.exit-intent-popup.show {
    opacity: 1;
    visibility: visible;
}

.exit-intent-content {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
    display: block;
    margin: 0 auto;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.exit-intent-content::before {
    content: '';
    display: block;
    padding-top: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.exit-intent-content {
    transition: all 0.3s ease;
}

.exit-intent-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

/* Ensure proper block structure */
.exit-intent-content {
    display: block;
    box-sizing: border-box;
}

/* Ensure proper block structure */
.exit-intent-content::before {
    content: '';
    display: block;
    padding-top: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.exit-intent-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.exit-intent-content p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.exit-intent-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.exit-intent-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1rem;
    cursor: pointer;
    padding: 0.5rem;
}

.exit-intent-close:hover {
    color: var(--primary-color);
}

/* Analytics Tracking Elements */
.analytics-tracker {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    z-index: 9999;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    cursor: pointer;
    display: none;
}

.analytics-tracker.show {
    display: block;
}

/* Form Optimization Styles */
.contact-form-wrapper {
    position: relative;
}

.form-field {
    margin-bottom: 1rem;
    position: relative;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--light-gray);
    border-radius: 5px;
    transition: border-color 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

.form-field .error-message {
    color: #dc3545;
    font-size: 0.85rem;
    display: none;
}

.form-field .error-message.show {
    display: block;
}

/* Scroll Depth Indicators */
.scroll-depth-indicator {
    position: fixed;
    bottom: 1rem;
    right: 1rem;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    display: none;
    z-index: 9999;
}

.scroll-depth-indicator.show {
    display: block;
}

/* Product Interaction Styles */
.product-card:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
    transition: all 0.3s ease;
}

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

.product-card:hover .product-features {
    list-style: none;
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .product-features {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .product-features li {
        flex: 1;
        min-width: 45%;
        margin-bottom: 0.5rem;
    }
}

.product-features li i {
    color: var(--primary-color);
    margin-right: 0.75rem;
    font-size: 1.1rem;
}

/* Call-to-Action Buttons */
.button.primary-button {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 5px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.button.primary-button:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Product Image Hover Effect */
.product-image {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.product-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(0, 0, 0, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-image:hover::after {
    opacity: 1;
}

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

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

/* Product Title and Description */
.product-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    line-height: 1.3;
}

.product-content p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-size: 1rem;
}

/* Product Specifications */
.spec-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
    background: var(--light-gray);
    padding: 1rem;
    border-radius: 8px;
}

.spec-row {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.spec-row:hover {
    background-color: var(--white);
}

.spec-label {
    font-weight: 600;
    color: var(--primary-color);
}

.spec-value {
    color: #555;
    flex: 1;
}

/* Filter Buttons */
.filter-button {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    background-color: var(--light-gray);
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    margin: 0.25rem;
}

.filter-button:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

.filter-button.active {
    background-color: var(--primary-color);
    color: var(--white);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.product-card:hover, .service-card:hover {
    transform: translateY(-5px);
}

.product-content, .service-content {
    padding: 1rem 0;
}

.product-features, .service-features {
    list-style: none;
    padding: 1rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

@media (min-width: 768px) {
    .product-features, .service-features {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: space-between;
    }
    .product-features li, .service-features li {
        flex: 1;
        min-width: 45%;
        margin-bottom: 0.5rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }
}

.product-features li, .service-features li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.product-card:hover .product-features {
    color: var(--primary-color);
}

.spec-table {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
}
    .spec-table {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
        justify-content: center;
    }

.filter-button {
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 25px;
    background-color: var(--light-gray);
    color: var(--text-color);
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-button.active {
    background-color: var(--secondary-color);
    color: var(--white);
}

/* Grid Layouts */
.products-grid, .services-grid, .categories-grid, .features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

/* Category Items */
.category-item {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.category-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

/* Feature Items */
.feature-item {
    text-align: center;
    padding: 1rem;
}

.feature-item i {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
    background-color: var(--white);
    padding: 4rem 0;
    text-align: center;
    margin-top: 4rem;
}

.section-title {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.section-description {
    color: #666;
    max-width: 800px;
    margin: 0 auto 2rem;
}

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

/* Footer */
.main-footer {
    background-color: var(--primary-color);
    color: var(--white);
    text-align: center;
    padding: 2rem 0;
    margin-top: 4rem;
}

.main-footer p {
    margin-bottom: 0.5rem;
}

/* Animations */
.animate__animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

/* Media Queries */
@media (max-width: 768px) {
    .products-grid, .services-grid, .categories-grid, .features-grid {
        grid-template-columns: 1fr;
    }

    .cta-buttons {
        flex-direction: column;
    }

    .page-header {
        padding: 2rem 0;
    }
}

.logo {
    font-size: 2rem;
    color: #2196F3; /* Primary color */
    text-decoration: none;
}

.main-nav {
    display: flex;
    align-items: center;
}

.nav-list {
    list-style: none;
    display: flex;
}

.nav-list li {
    margin-left: 20px;
}

.nav-list a {
    text-decoration: none;
    color: #555;
    font-weight: bold;
    transition: color 0.3s ease;
}

.nav-list a:hover {
    color: #2196F3;
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
    color: #555;
}

.mobile-nav-toggle i {
    font-size: 2rem;
}

.visually-hidden {
    position: absolute !important;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
    white-space: nowrap;
}

/* Hero Section Styles */
.hero {
    padding: 80px 0;
    background-color: #e0f7fa; /* Light secondary color */
}

.hero .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.hero-content {
    flex: 1;
    text-align: left;
}

.hero-title {
    font-size: 3rem;
    color: #2196F3;
    margin-bottom: 20px;
}

.hero-description {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 30px;
}

.hero-image {
flex: 1;
max-width: 500px;
}

.hero-image img {
width: 100%;
height: auto;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.product-image {
position: relative;
}

.product-image img {
width: 100%;
height: auto;
border-radius: 8px;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Product Overlay Styles */
.product-overlay {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.7);
display: flex;
align-items: center;
justify-content: center;
color: white;
text-align: center;
opacity: 0;
transition: opacity 0.3s ease;
}

.product-overlay:hover {
opacity: 1;
}

.overlay-content {
text-align: center;
padding: 2rem;
}

.overlay-content h3 {
margin-bottom: 0.5rem;
color: white;
}

.overlay-content p {
color: rgba(255, 255, 255, 0.8);
}

/* Buttons */
.button {
display: inline-block;
padding: 12px 24px;
text-decoration: none;
border-radius: 5px;
font-weight: bold;
transition: background-color 0.3s ease;
border: none;
cursor: pointer;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease;
    border: none;
    cursor: pointer;
}

.primary-button {
    background-color: #2196F3;
    color: #fff;
}

.primary-button:hover {
    background-color: #1976D2;
}

.secondary-button {
    background-color: #fff;
    color: #2196F3;
    border: 2px solid #2196F3;
}

.secondary-button:hover {
    background-color: #e0f7fa;
}

/* Sections - Products, Services, Contact */
.products-section, .services-section, .contact-section {
    padding: 60px 0;
    text-align: center;
}

.section-title {
    font-size: 2.5rem;
    color: #2196F3;
    margin-bottom: 20px;
}

.section-description {
    color: #777;
    margin-bottom: 30px;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}
.product-grid .product-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.product-item {
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    padding: 20px;
}

.product-item img {
    max-width: 100%;
    height: auto;
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
}

.product-item h3 {
    color: #333;
    margin-bottom: 10px;
}

.product-item p {
    color: #777;
    margin-bottom: 15px;
}

.view-all {
    margin-top: 30px;
}

.view-all a {
    color: #2196F3;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.view-all a:hover {
    color: #1976D2;
}

/* Services List */
.services-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 30px;
}

.services-list li {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    font-weight: bold;
    color: #555;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.services-list li i {
    font-size: 2rem;
    color: #2196F3;
    margin-bottom: 10px;
}

/* Contact Section */
.contact-details {
    margin-top: 30px;
    line-height: 1.8;
    color: #555;
    text-align: center;
    margin-bottom: 30px;
}

.contact-exit-intent-content {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    max-width: 90%;
    width: 500px;
    text-align: center;
}

.contact-form h3 {
    color: #2196F3;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #333;
    font-weight: bold;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
}

.map-embed {
    margin-top: 30px;
    border-radius: 8px;
    overflow: hidden;
}

/* Footer Styles */
.main-footer {
    background-color: #333;
    color: #fff;
    padding: 30px 0;
    text-align: center;
    font-size: 0.9rem;
    margin-top: 60px;
}

.main-footer a {
    color: #e0f7fa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.main-footer a:hover {
    color: #fff;
}

/* Responsive Design */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        text-align: center;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .nav-list {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #fff;
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        display: none; /* Initially hidden */
    }

    .nav-list[data-visible="true"] {
        display: flex;
    }

    .nav-list li {
        margin-left: 0;
        margin-bottom: 15px;
        width: 100%;
    }

    .nav-list a {
        display: block;
        padding: 10px 0;
        border-bottom: 1px solid #eee;
    }

    .nav-list li:last-child a {
        border-bottom: none;
    }

    .mobile-nav-toggle {
        display: block;
    }

    .services-list {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

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

.product-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--shadow-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.product-image {
    width: 100%;
    height: 250px; /* Fixed height for consistency */
    overflow: hidden;
    position: relative;
}

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

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

.product-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Product Grid and Cards */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
    padding: 0 1rem;
}

.product-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Product Image - Directly style the img tag */
.product-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

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

/* Product Content */
.product-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-content h3 {
    color: var(--primary-color);
    margin: 0 0 1rem 0;
    font-size: 1.25rem;
}

.product-content p {
    color: #666;
    margin: 0 0 1.5rem 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Product Features List */
.product-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.product-features li {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.product-features i {
    color: var(--primary-color);
    margin-right: 0.5rem;
    font-size: 0.8rem;
}

/* Product Actions */
.product-actions {
    margin-top: auto;
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

/* Filter Buttons */
.product-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1.5rem 0;
    justify-content: center;
}

.filter-button {
    padding: 0.5rem 1rem;
    border: 1px solid var(--primary-color);
    background: white;
    color: var(--primary-color);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-button:hover,
.filter-button.active {
    background: var(--primary-color);
    color: white;
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .product-card img {
        height: 220px;
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .product-card img {
        height: 200px;
    }
    
    .product-content {
        padding: 1.25rem;
    }
    
    .product-filters {
        gap: 0.5rem;
    }
    
    .filter-button {
        padding: 0.4rem 0.8rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }
    
    .product-card img {
        height: 180px;
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .product-actions .button {
        width: 100%;
        text-align: center;
    }
    
    .filter-button {
        padding: 0.35rem 0.7rem;
        font-size: 0.85rem;
    }
}

/* ======================
   Product Images
   ====================== */
/* Reset any conflicting styles */
.product-card img,
.products-grid .product-card img,
.products-section .product-card img,
.product-image {
    width: 100% !important;
    height: 250px !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .product-card img,
    .products-grid .product-card img,
    .products-section .product-card img,
    .product-image {
        height: 220px !important;
    }
}

@media (max-width: 768px) {
    .product-card img,
    .products-grid .product-card img,
    .products-section .product-card img,
    .product-image {
        height: 200px !important;
    }
}

@media (max-width: 480px) {
    .product-card img,
    .products-grid .product-card img,
    .products-section .product-card img,
    .product-image {
        height: 180px !important;
    }
}

/* Ensure product cards maintain layout */
.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.product-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
}

.product-actions {
    margin-top: auto;
}

/* Remove any conflicting styles */
.product-image-container,
.img-container,
.image-wrapper {
    all: unset;
}

/* Make sure images aren't being hidden */
.product-card img {
    visibility: visible !important;
    opacity: 1 !important;
}
