/* Custom Styles for Orbital Horizon - Applied to all pages */

/* WhatsApp Button Styling - High specificity */
body .floating-whatsapp {
    position: fixed !important;
    bottom: 20px !important;
    right: 20px !important;
    width: 60px !important;
    height: 60px !important;
    background: #25D366 !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: white !important;
    font-size: 30px !important;
    text-decoration: none !important;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.4) !important;
    z-index: 9999 !important;
    transition: all 0.3s ease !important;
    animation: whatsapp-pulse 2s infinite !important;
}

body .floating-whatsapp:hover {
    transform: scale(1.1) !important;
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.6) !important;
    color: white !important;
    text-decoration: none !important;
}

body .floating-whatsapp i {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    height: 100% !important;
}

@keyframes whatsapp-pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* ===== HERO SLIDER STYLES - Minimal interference ===== */

/* Only target specific hero classes to avoid conflicts */
.oh-hero-slide {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.oh-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
}

.oh-hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 2;
}

.oh-hero-content {
    position: relative;
    z-index: 3;
    color: white;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.oh-hero-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.oh-hero-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
    line-height: 1.6;
}

.oh-hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.oh-hero-buttons .btn {
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.oh-hero-buttons .btn-primary {
    background-color: #E74C3C;
    border-color: #E74C3C;
    color: white;
}

.oh-hero-buttons .btn-primary:hover {
    background-color: #C0392B;
    border-color: #C0392B;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.oh-hero-buttons .btn-secondary {
    background-color: transparent;
    border-color: white;
    color: white;
}

.oh-hero-buttons .btn-secondary:hover {
    background-color: white;
    color: #333;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* ===== PRODUCTS PAGE SPECIFIC STYLES ===== */

/* Product Range Section */
.product-range {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.range-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.range-info {
    flex: 1;
    min-width: 300px;
}

.range-quote {
    flex: 1;
    min-width: 300px;
}

.range-quote blockquote {
    font-style: italic;
    font-size: 1.2rem;
    border-left: 4px solid #007bff;
    padding-left: 20px;
    margin: 0;
}

/* Enhanced Features Section */
.enhanced-features {
    padding: 80px 0;
}

.features-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.feature-detail {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-detail .feature-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: #007bff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

/* Quality Assurance Section */
.quality-assurance {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 30px;
}

.cert-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.cert-item:hover {
    transform: translateY(-5px);
}

.cert-item i {
    color: #E74C3C !important;
    font-size: 2rem;
    margin-top: 5px;
}

.cert-text h4 {
    margin: 0 0 5px 0;
    color: #333;
}

.cert-text p {
    margin: 0;
    color: #666;
}

/* Detailed Product Specifications Grid */
.detailed-products-grid {
    padding: 80px 0;
}

.products-grid-2x2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.product-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-card .product-image {
    height: 250px;
    overflow: hidden;
}

.product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-card .product-info {
    padding: 25px;
}

.product-card .product-info h3 {
    margin-top: 0;
    color: #333;
}

.product-card .product-info ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

.product-card .product-info li {
    margin-bottom: 8px;
}

/* Instant Water Heater Detail */
.instant-heater-detail {
    background: white;
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.instant-content {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.instant-image {
    flex: 1;
    min-width: 300px;
}

.instant-image img {
    width: 100%;
    border-radius: 8px;
}

.instant-info {
    flex: 2;
    min-width: 300px;
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 10px;
    margin: 20px 0;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #eee;
}

.spec-label {
    font-weight: bold;
}
/* Technical Specifications Image Section with Hover Zoom IN */
.tech-specs-image {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.specs-image-container {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
}

.specs-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: all 0.5s ease;
    transform-origin: center center;
    cursor: zoom-in;
}

.specs-image-container:hover .specs-image {
    transform: scale(1.20); /* Smooth zoom IN effect */
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

/* Optional: Add a zoom indicator */
.specs-image-container::after {
    content: '🔍 Hover to zoom in';
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.specs-image-container:hover::after {
    opacity: 1;
}

.image-caption {
    margin-top: 20px;
    font-style: italic;
    color: #666;
}

/* Responsive adjustments for zoom effect */
@media (max-width: 768px) {
    .specs-image-container:hover .specs-image {
        transform: scale(1.03); /* Slight zoom on mobile */
    }
    
    .specs-image-container::after {
        font-size: 0.8rem;
        padding: 4px 12px;
    }
}

/* ===== GALLERY PAGE SPECIFIC STYLES ===== */

.gallery-item {
    display: block;
    margin-bottom: 30px;
}

.filter-buttons {
    margin-bottom: 40px;
}

.filter-btn {
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    padding: 10px 20px;
    margin: 0 5px 10px;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn:hover,
.filter-btn.active {
    background: #E74C3C;
    color: white;
    border-color: #E74C3C;
}

.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
}

.lightbox-caption {
    color: white;
    text-align: center;
    margin-top: 15px;
    font-size: 1.1rem;
}

.loading-spinner {
    display: none;
}

.gallery-card {
    transition: transform 0.3s ease;
}

.gallery-card:hover {
    transform: translateY(-5px);
}

/* ===== COMMON STYLES ===== */

/* Feature Icons Color Update */
.feature-icon {
    color: #E74C3C;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 2.5rem;
}

/* Saudi Made Section Styling */
.saudi-made-prominent {
    background: white !important;
    padding: 40px 30px !important;
    border-radius: 10px !important;
    text-align: center !important;
    margin-bottom: 50px !important;
    position: relative !important;
    overflow: hidden !important;
    border: 1px solid #e0e0e0 !important;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05) !important;
}

.saudi-made-prominent h3 {
    font-size: 2.2rem !important;
    margin-bottom: 15px !important;
    font-weight: bold !important;
    color: #333 !important;
}

.saudi-made-prominent p {
    font-size: 1.2rem !important;
    margin-bottom: 20px !important;
    color: #666 !important;
}

.vision-2030-tag {
    display: inline-block !important;
    background: #E74C3C !important;
    color: white !important;
    padding: 10px 20px !important;
    border-radius: 25px !important;
    font-size: 1rem !important;
    border: none !important;
}

.vision-2030-tag i {
    color: #ffd700 !important;
}

/* Decorative elements for Saudi Made section */
.saudi-made-prominent::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #E74C3C, #C0392B);
}

/* Update all Font Awesome icons to use #E74C3C */
.faq-question .fa-chevron-down,
.category-content .fa-check,
.feature-detail .feature-icon i,
.contact-card  .contact-icon i,
.mv-card  .mv-icon i,
.support-option .support-icon i,
.range-info .fa-check,
.instant-info .fa-check {
    color: #ffff !important;
}

/* WhatsApp icon exception - keep it #E74C3C */
.cert-item i,
.header-social a i,
.about-list .fa-check,
.header-contact .contact-item i,
.product-link .fa-arrow-right,
.footer-contact i,
.floating-whatsapp i {
    color: #E74C3C !important;
}
/* Specific styling for header contact icons */
.header-contact .contact-item i {
    font-size: 1.5rem;
    margin-right: 10px;
}

/* Specific styling for social icons */
.header-social a i {
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.header-social a:hover i {
    transform: scale(1.2);
}

/* Specific styling for about list checkmarks */
.about-list .fa-check {
    margin-right: 10px;
}

/* Specific styling for product link arrows */
.product-link .fa-arrow-right {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.product-link:hover .fa-arrow-right {
    transform: translateX(3px);
}

/* Specific styling for footer contact icons */
.footer-contact i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

/* Specific styling for checkmarks in lists */
.category-content .fa-check,
.range-info .fa-check,
.instant-info .fa-check {
    margin-right: 10px;
}

/* Additional utility classes for other pages */
.saudi-made-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

/* Ensure consistent button styling */
.btn-primary {
    background-color: #E74C3C;
    border-color: #E74C3C;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #C0392B;
    border-color: #C0392B;
    transform: translateY(-2px);
}

/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 992px) {
    .cert-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid-2x2 {
        grid-template-columns: 1fr;
    }
    
    .oh-hero-content h1 {
        font-size: 2.8rem;
    }
    
    .oh-hero-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .range-content {
        flex-direction: column;
    }
    
    .instant-content {
        flex-direction: column;
    }
    
    .feature-detail {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-detail .feature-icon {
        align-self: center;
    }
    
    .oh-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .oh-hero-content p {
        font-size: 1rem;
    }
    
    .oh-hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .oh-hero-buttons .btn {
        width: 200px;
    }
    
    .oh-hero-slide {
        height: 80vh;
        min-height: 500px;
    }
    
    .filter-buttons {
        text-align: center;
    }
    
    .filter-btn {
        margin: 5px;
    }
}

@media (max-width: 576px) {
    .oh-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .oh-hero-slide {
        height: 70vh;
        min-height: 400px;
    }
    
    .saudi-made-prominent h3 {
        font-size: 1.8rem !important;
    }
    
    .saudi-made-prominent p {
        font-size: 1rem !important;
    }
    
    .products-grid-2x2 {
        gap: 20px;
    }
    
    .product-card .product-info {
        padding: 20px;
    }
}
/* Search Bar Styles */
.search-container {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.search-toggle {
    background: none;
    border: none;
    color: #333;
    font-size: 18px;
    cursor: pointer;
    padding: 5px;
    transition: color 0.3s;
}

.search-toggle:hover {
    color: #007bff;
}

.search-form {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    padding: 15px;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    width: 300px;
    z-index: 1000;
    display: none;
}

.search-form.active {
    display: block;
}

.search-input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}

.search-input:focus {
    border-color: #007bff;
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 4px 4px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1001;
    display: none;
}

.search-results.active {
    display: block;
}

.search-result-item {
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background-color 0.2s;
}

.search-result-item:hover {
    background-color: #f5f5f5;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item h4 {
    margin: 0 0 5px 0;
    font-size: 14px;
    color: #333;
}

.search-result-item p {
    margin: 0;
    font-size: 12px;
    color: #666;
}

.no-results {
    padding: 10px 15px;
    color: #666;
    font-style: italic;
}

/* Clickable contact info styles */
.clickable-contact {
    cursor: pointer;
    transition: color 0.3s, transform 0.2s;
}

.clickable-contact:hover {
    color: #007bff;
    transform: translateY(-2px);
}

.contact-item .clickable-contact strong {
    transition: color 0.3s;
}

.contact-item:hover .clickable-contact strong {
    color: #007bff;
}

.footer-contact a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: #007bff;
    text-decoration: underline;
}

/* Navigation Search Styles */
.nav-search {
    display: flex;
    align-items: center;
    margin-left: auto;
    padding: 0 15px;
}

.nav-search-toggle {
    background: none;
    border: none;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    padding: 8px 12px;
    transition: color 0.3s;
}

.nav-search-toggle:hover {
    color: #007bff;
}

.nav-search-form {
    position: absolute;
    top: 100%;
    right: 15px;
    background: white;
    padding: 15px;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    width: 300px;
    z-index: 1000;
    display: none;
}

.nav-search-form.active {
    display: block;
}

/* Responsive styles */
@media (max-width: 768px) {
    .search-form, .nav-search-form {
        width: 250px;
        right: -50px;
    }
    
    .nav-search {
        margin-left: 0;
        padding: 10px 0;
    }
    
    .nav-search-form {
        right: 15px;
        left: 15px;
        width: auto;
    }
}

@media (max-width: 576px) {
    .search-form, .nav-search-form {
        width: 200px;
        right: -80px;
    }
}
/* Navigation Search Styles */
.nav-search-item {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-search-toggle {
    background: none;
    border: none;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    padding: 8px 12px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-search-toggle:hover {
    color: #007bff;
}

.nav-search-form {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    padding: 15px;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    width: 300px;
    z-index: 1000;
    display: none;
}

.nav-search-form.active {
    display: block;
}

/* Search Input & Results Styles */
.search-input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}

.search-input:focus {
    border-color: #007bff;
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 4px 4px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1001;
    display: none;
}

.search-results.active {
    display: block;
}

.search-result-item {
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background-color 0.2s;
}

.search-result-item:hover {
    background-color: #f5f5f5;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item h4 {
    margin: 0 0 5px 0;
    font-size: 14px;
    color: #333;
}

.search-result-item p {
    margin: 0;
    font-size: 12px;
    color: #666;
}

.no-results {
    padding: 10px 15px;
    color: #666;
    font-style: italic;
}

/* Clickable contact info styles */
.clickable-contact {
    cursor: pointer;
    transition: color 0.3s, transform 0.2s;
}

.clickable-contact:hover {
    color: #007bff;
    transform: translateY(-2px);
}

.contact-item .clickable-contact strong {
    transition: color 0.3s;
}

.contact-item:hover .clickable-contact strong {
    color: #007bff;
}

.footer-contact a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: #007bff;
    text-decoration: underline;
}

/* Responsive styles */
@media (max-width: 768px) {
    .nav-search-form {
        right: 15px;
        left: 15px;
        width: auto;
    }
    
    .nav-search-item {
        order: 99; /* Move search to bottom on mobile */
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }
}
/* Navigation Search Styles */
.nav-search-item {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-search-toggle {
    background: none;
    border: none;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    padding: 8px 12px;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-search-toggle:hover {
    color: #007bff;
}

.nav-search-form {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    padding: 15px;
    border-radius: 4px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    width: 300px;
    z-index: 1000;
    display: none;
}

.nav-search-form.active {
    display: block;
}

/* Search Input & Results Styles */
.search-input {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    outline: none;
    transition: border-color 0.3s;
}

.search-input:focus {
    border-color: #007bff;
}

.search-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 4px 4px;
    max-height: 300px;
    overflow-y: auto;
    z-index: 1001;
    display: none;
}

.search-results.active {
    display: block;
}

.search-result-item {
    padding: 10px 15px;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: background-color 0.2s;
}

.search-result-item:hover {
    background-color: #f5f5f5;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item h4 {
    margin: 0 0 5px 0;
    font-size: 14px;
    color: #333;
}

.search-result-item p {
    margin: 0;
    font-size: 12px;
    color: #666;
}

.no-results {
    padding: 10px 15px;
    color: #666;
    font-style: italic;
}

/* Clickable contact info styles */
.clickable-contact {
    cursor: pointer;
    transition: color 0.3s, transform 0.2s;
}

.clickable-contact:hover {
    color: #007bff;
    transform: translateY(-2px);
}

.contact-item .clickable-contact strong {
    transition: color 0.3s;
}

.contact-item:hover .clickable-contact strong {
    color: #007bff;
}

.footer-contact a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-contact a:hover {
    color: #007bff;
    text-decoration: underline;
}

/* Responsive styles */
@media (max-width: 768px) {
    .nav-search-form {
        right: 15px;
        left: 15px;
        width: auto;
    }
    
    .nav-search-item {
        order: 99;
        width: 100%;
        justify-content: center;
        margin-top: 10px;
    }
}
/* Factory Slider Styles */
.factory-slider {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.factory-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.factory-slide.active {
    opacity: 1;
}

.factory-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.factory-slider-controls {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.factory-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: background 0.3s;
}

.factory-slider-dot.active {
    background: #fff;
}

.factory-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
    z-index: 10;
}

.factory-slider-nav:hover {
    background: rgba(0, 0, 0, 0.8);
}

.factory-slider-prev {
    left: 20px;
}

.factory-slider-next {
    right: 20px;
}

/* Remove the factory-slide-content styles since we're removing text */

/* Production Process Grid - Matching Environmental Responsibility Style */
.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 3px solid #E74C3C;
    border: 1px solid #eaeaea;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #E74C3C, #E74C3C);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
}

/* Technology & Innovation - Matching Environmental Responsibility Style */
.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.mv-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 3px solid #E74C3C;
    border: 1px solid #eaeaea;
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #E74C3C, #E74C3C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.mv-card:hover .mv-icon {
    transform: scale(1.1) rotate(5deg);
}

.mv-icon i {
    font-size: 36px;
    color: white;
}

/* Quality Standards - Matching Environmental Responsibility Style */
.certifications {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.certification {
    background: #fff;
    padding: 25px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    border-top: 2px solid #E74C3C;
    border: 1px solid #eaeaea;
}

.certification:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.certification i {
    font-size: 40px;
    color: #007bff;
    transition: all 0.3s ease;
}

.certification:hover i {
    transform: scale(1.2) rotate(10deg);
    color: #0056b3;
}

/* Animation Classes */
.animate-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-fade-in.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
}

.animate-scale-in.animated {
    opacity: 1;
    transform: scale(1);
}

.animate-slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.animate-slide-in-left.animated {
    opacity: 1;
    transform: translateX(0);
}

.animate-slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.animate-slide-in-right.animated {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 992px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    .certifications {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .process-steps, .mv-grid, .certifications {
        grid-template-columns: 1fr;
    }
}
/* Production Process Grid */
.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #E74C3C, #E74C3C);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
}

/* Animation Classes */
.animate-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-fade-in.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
}

.animate-scale-in.animated {
    opacity: 1;
    transform: scale(1);
}

.animate-slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.animate-slide-in-left.animated {
    opacity: 1;
    transform: translateX(0);
}

.animate-slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.animate-slide-in-right.animated {
    opacity: 1;
    transform: translateX(0);
}

/* Technology & Innovation Animation */
.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.mv-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #E74C3C, #E74C3C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.mv-card:hover .mv-icon {
    transform: scale(1.1) rotate(5deg);
}

.mv-icon i {
    font-size: 36px;
    color: white;
}

/* Quality Standards Animation */
.certifications {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.certification {
    background: #fff;
    padding: 25px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.certification:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.certification i {
    font-size: 40px;
    color: #007bff;
    transition: all 0.3s ease;
}

.certification:hover i {
    transform: scale(1.2) rotate(10deg);
    color: #0056b3;
}

/* Responsive Design */
@media (max-width: 992px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    .certifications {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .process-steps, .mv-grid, .certifications {
        grid-template-columns: 1fr;
    }
}
/* Production Process Grid - Matching Environmental Responsibility Style */
.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eaeaea;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #E74C3C, #E74C3C);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
}

/* Technology & Innovation - Matching Environmental Responsibility Style */
.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.mv-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #eaeaea;
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #E74C3C, #E74C3C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.mv-card:hover .mv-icon {
    transform: scale(1.1) rotate(5deg);
}

.mv-icon i {
    font-size: 36px;
    color: white;
}

/* Quality Standards - Matching Environmental Responsibility Style */
.certifications {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.certification {
    background: #fff;
    padding: 25px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    border: 1px solid #eaeaea;
}

.certification:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.certification i {
    font-size: 40px;
    color: #007bff;
    transition: all 0.3s ease;
}

.certification:hover i {
    transform: scale(1.2) rotate(10deg);
    color: #0056b3;
}

/* Animation Classes */
.animate-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-fade-in.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
}

.animate-scale-in.animated {
    opacity: 1;
    transform: scale(1);
}

.animate-slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.animate-slide-in-left.animated {
    opacity: 1;
    transform: translateX(0);
}

.animate-slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.animate-slide-in-right.animated {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 992px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    .certifications {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .process-steps, .mv-grid, .certifications {
        grid-template-columns: 1fr;
    }
}
/* Production Process Grid - Matching Environmental Responsibility Style */
.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 3px solid #E74C3C;
    border: 1px solid #eaeaea;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #E74C3C, #E74C3C);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
}

/* Technology & Innovation - Matching Environmental Responsibility Style */
.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.mv-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 3px solid #E74C3C;
    border: 1px solid #eaeaea;
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #E74C3C, #E74C3C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.mv-card:hover .mv-icon {
    transform: scale(1.1) rotate(5deg);
}

.mv-icon i {
    font-size: 36px;
    color: white;
}

/* Quality Standards - Matching Environmental Responsibility Style */
.certifications {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.certification {
    background: #fff;
    padding: 25px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    border-top: 2px solid #E74C3C;
    border: 1px solid #eaeaea;
}

.certification:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.certification i {
    font-size: 40px;
    color: #007bff;
    transition: all 0.3s ease;
}

.certification:hover i {
    transform: scale(1.2) rotate(10deg);
    color: #0056b3;
}

/* Animation Classes */
.animate-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-fade-in.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
}

.animate-scale-in.animated {
    opacity: 1;
    transform: scale(1);
}

.animate-slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.animate-slide-in-left.animated {
    opacity: 1;
    transform: translateX(0);
}

.animate-slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.animate-slide-in-right.animated {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 992px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    .certifications {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .process-steps, .mv-grid, .certifications {
        grid-template-columns: 1fr;
    }
}
/* Production Process Grid - 3x3 Layout */
.process-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 3px solid #E74C3C;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #E74C3C, #E74C3C);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin: 0 auto 20px;
}

/* Technology & Innovation Grid */
.mv-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.mv-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border-top: 3px solid #E74C3C;
}

.mv-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #E74C3C, #E74C3C);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.mv-card:hover .mv-icon {
    transform: scale(1.1) rotate(5deg);
}

.mv-icon i {
    font-size: 36px;
    color: white;
}

/* Quality Standards Grid - Updated for logos */
.quality-standards .certifications {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.quality-standards .certification {
    background: #fff;
    padding: 25px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    border-top: 2px solid #E74C3C;
}

.quality-standards .certification:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.quality-standards .certification img {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
}

.quality-standards .certification:hover img {
    transform: scale(1.1);
}

.quality-standards .certification span {
    display: block !important;
    font-weight: 600;
    color: #333;
    font-size: 14px;
    margin-top: 10px;
}

/* Animation Classes */
.animate-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.animate-fade-in.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-scale-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
}

.animate-scale-in.animated {
    opacity: 1;
    transform: scale(1);
}

.animate-slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.6s ease;
}

.animate-slide-in-left.animated {
    opacity: 1;
    transform: translateX(0);
}

.animate-slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.6s ease;
}

.animate-slide-in-right.animated {
    opacity: 1;
    transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 992px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
    }
    .quality-standards .certifications {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .process-steps, .mv-grid, .quality-standards .certifications {
        grid-template-columns: 1fr;
    }
}
/* Quality Standards Grid - Updated for logos with descriptions */
.quality-standards .certifications {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 40px;
}

.quality-standards .certification {
    background: #fff;
    padding: 25px 20px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    border-top: 3px solid #E74C3C;
}

.quality-standards .certification:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.quality-standards .certification img {
    height: 60px;
    width: auto;
    transition: all 0.3s ease;
}

.quality-standards .certification:hover img {
    transform: scale(1.1);
}

.quality-standards .certification span {
    display: block !important;
    font-weight: 600;
    color: #333;
    font-size: 14px;
    margin-top: 5px;
}

.quality-standards .certification p {
    display: block !important;
    color: #666;
    font-size: 12px;
    line-height: 1.4;
    margin: 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 992px) {
    .quality-standards .certifications {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .quality-standards .certifications {
        grid-template-columns: 1fr;
    }
}