.advanced-technology-section {
    padding: 80px 20px;
    background-color: #f8f8f8;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

.advanced-technology-section .container {
    max-width: 1400px;
    margin: 0 auto;
}

.advanced-technology-section .section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight:  700;
    margin-bottom: 10px;
    color: #000;
    letter-spacing: -0.5px;
}

.advanced-technology-section .title-underline {
    width: 60px;
    height: 3px;
    background-color:  #8b0045;
    margin: 0 auto 60px;
}

.advanced-technology-section .features-grid {
    display: grid;
    grid-template-columns:  repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.advanced-technology-section .feature-card {
    background:  #fff;
    border-radius: 10px;
    padding: 35px 25px;
    border-left: 5px solid #8b0045;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    min-height: 220px;
    display: flex;
    flex-direction: column;
}

.advanced-technology-section .feature-card:hover {
    transform:  translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.advanced-technology-section .feature-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
}

.advanced-technology-section .feature-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.advanced-technology-section .feature-title {
    font-size: 1.05rem;
    font-weight:  700;
    color: #000;
    line-height: 1.4;
    margin:  0;
}

.advanced-technology-section .feature-description {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.7;
    margin:  0;
}

/* Force 4 columns on larger screens */
@media (min-width: 1024px) {
    .advanced-technology-section .features-grid {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}

/* 2 columns on tablets */
@media (max-width: 1023px) and (min-width: 768px) {
    .advanced-technology-section .features-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* 1 column on mobile */
@media (max-width:  767px) {
    .advanced-technology-section {
        padding: 50px 15px;
    }
    
    .advanced-technology-section .section-title {
        font-size: 2rem;
    }
    
    .advanced-technology-section .features-grid {
        grid-template-columns: 1fr ! important;
        gap: 20px;
    }
    
    .advanced-technology-section .feature-card {
        min-height: auto;
    }
}

.comparison-section {
    padding: 80px 20px;
    background-color: #fff;
}

.comparison-section .notop {
    padding-top: 40px;
}

.comparison-section .container {
    max-width: 1400px;
    margin: 0 auto;
}

.comparison-section .section-title {
    text-align: center;
    font-size: 2.8rem;
    font-weight:  700;
    margin-bottom: 10px;
    color: #000;
    letter-spacing: -0.5px;
    position: relative;
    padding-bottom: 20px;
}

.comparison-section .section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color:  #8b0045;
}

.comparison-table {
    margin-top: 60px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
    background:  #fff;
    font-size: 0.9rem;
    min-width: 1200px;
}

.comparison-table table thead {
    background-color: #2d2d2d;
    color: #fff;
}

.comparison-table table thead th {
    padding: 18px 12px;
    font-weight:  600;
    text-align: center;
    border:  1px solid #ddd;
    font-size: 1rem;
}

.comparison-table table tbody tr:nth-child(odd) {
    background-color:  #f9f9f9;
}

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

.comparison-table table tbody td {
    padding: 15px 12px;
    border:  1px solid #ddd;
    text-align: center;
    color: #333;
}

.comparison-table table tbody td:first-child {
    background-color: #f5f5f5;
    font-weight: 600;
    text-align: left;
    color: #000;
    min-width: 200px;
}

.comparison-table table tbody td strong,
.comparison-table table tbody td b {
    font-weight: 600;
    color: #000;
}

/* Blue text styling for certain values */
.comparison-table table tbody td .blue-text {
    color: #0066cc;
}

/* Responsive scrollbar styling */
.comparison-table::-webkit-scrollbar {
    height: 8px;
}

.comparison-table::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.comparison-table::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.comparison-table::-webkit-scrollbar-thumb:hover {
    background: #555;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .comparison-section {
        padding: 50px 15px;
    }
    
    .comparison-section .section-title {
        font-size: 2rem;
    }
    
    .comparison-table {
        margin-top: 40px;
    }
    
    .comparison-table table {
        font-size: 0.8rem;
    }
    
    .comparison-table table thead th {
        padding: 12px 8px;
        font-size: 0.85rem;
    }
    
    .comparison-table table tbody td {
        padding: 10px 8px;
    }
}


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

        /* Gallery */
        .gallery {
            padding: 60px 0;
            background:  white;
        }

        .gallery h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 40px;
        }

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

        .gallery-item {
            overflow: hidden;
            border-radius: 10px;
            cursor: pointer;
            position: relative;
            aspect-ratio: 4/3;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

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

        .gallery-item:hover img {
            transform: scale(1.1);
        }

        /* Modal */
        .modal {
            display: none;
            position:  fixed;
            z-index:  1000;
            left:  0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0,0,0,0.9);
        }

        .modal-content {
            margin: auto;
            display: block;
            max-width: 90%;
            max-height: 90%;
            position: relative;
            top: 50%;
            transform: translateY(-50%);
        }

        .close {
            position: absolute;
            top: 20px;
            right: 40px;
            color: #f1f1f1;
            font-size: 40px;
            font-weight: bold;
            cursor: pointer;
            z-index: 1001;
        }

        .close:hover {
            color:  #4CAF50;
        }

        /* Responsive */
        @media (max-width: 768px) {
            .gallery h2 {
                font-size: 2rem;
            }

            .gallery-grid {
                grid-template-columns: 1fr;
            }

            .close {
                top: 10px;
                right: 20px;
                font-size: 30px;
            }
        }



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

        .feature-card ul {
            list-style: none;
            padding-left: 0;
        }

        .feature-card li {
            padding: 8px 0;
            padding-left: 25px;
            position: relative;
        }
        
        .feature-card li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #5A003B;
            font-weight: bold;
        }

        .comparison-section {
            background: #f8f9fa;
        }

        .comparison-table {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            overflow-x: auto !important;
            -webkit-overflow-scrolling: touch !important;
        }

        /* Custom scrollbar styling */
        .comparison-table::-webkit-scrollbar {
            height: 8px;
        }

        .comparison-table::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }

        .comparison-table::-webkit-scrollbar-thumb {
            background: #888;
            border-radius: 10px;
        }

        .comparison-table::-webkit-scrollbar-thumb:hover {
            background: #555;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            min-width: 800px;
        }

        th, td {
            padding: 12px 8px;
            text-align: left;
            border-bottom: 1px solid #e0e0e0;
            white-space: nowrap;
        }

        th {
            background: #1a1a1a;
            color: white;
            font-weight: 600;
        }

        td:first-child,
        th:first-child {
            font-weight: 600;
        }

        .highlight {
            background: #e8f8ff;
            font-weight: bold;
        }

        .specs-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 40px;
        }

        .spec-item {
            background: white;
            padding: 25px;
            border-radius: 10px;
            border-left: 4px solid #5A003B;
            box-shadow: 0 3px 15px rgba(0,0,0,0.08);
        }

        .spec-label {
            font-weight: bold;
            color: #1a1a1a;
            margin-bottom: 8px;
            font-size: 1.1rem;
        }

        .spec-value {
            color: #666;
        }

      .applications-section {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15); /* ← Reduced shadow */
    margin-top: 30px;
    margin-bottom: 30px; /* ADD THIS for spacing at bottom */
    text-align: center;
}
        .applications-title {
            color: #ee0979;
            font-size: 2.2em;
            margin-bottom: 30px;
        }
        .applications-subtitle {
            color: #666;
            font-size: 1.1em;
            margin-bottom: 25px;
        }
        .app-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 25px;
        }
        .app-item {
            background: linear-gradient(135deg, #ee097915, #ff6a0015);
            padding: 25px 20px;
            border-radius: 12px;
            font-weight: bold;
            color: #ee0979;
            border: 2px solid #ee097930;
            font-size: 1.1em;
        }

        /* IMPROVED PRODUCT QUALITY SECTION */
        .quality-comparison-section {
            background: white;
            padding: 15px;
        }
        
        .comparison-title {
            color: #1a1a1a;
            font-size: 2.5em;
            margin-bottom: 40px;
            text-align: center;
        }
        
        .comparison-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 20px;
            max-width: 1200px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .comparison-box {
            padding: 30px;
            border-radius: 15px;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        
        .comparison-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        
        .comparison-box.good {
            background: linear-gradient(135deg, #00b09b15, #96c93d15);
            border: 3px solid #00b09b;
        }
        
        .comparison-box.bad {
            background: linear-gradient(135deg, #ee097915, #ff6a0015);
            border: 3px solid #ee0979;
        }
        
        .comparison-box-title {
            font-size: 1.5em;
            font-weight: bold;
            margin-bottom: 20px;
            text-align: center;
        }
        
        .comparison-box.good .comparison-box-title {
            color: #00b09b;
        }
        
        .comparison-box.bad .comparison-box-title {
            color: #ee0979;
        }
        
        .comparison-list {
            list-style: none;
            padding: 0;
        }
        
        .comparison-list li {
            padding: 12px 0;
            padding-left: 35px;
            position: relative;
            line-height: 1.6;
            font-size: 1rem;
        }
        
        .comparison-list.good li::before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #00b09b;
            font-size: 1.5em;
            font-weight: bold;
        }
        
        .comparison-list.bad li::before {
            content: '✗';
            position: absolute;
            left: 0;
            color: #ee0979;
            font-size: 1.5em;
            font-weight: bold;
        }

        .cta-section {
            background: #1a1a1a;
            color: white;
            padding: 80px 20px;
            text-align: center;
        }

        .cta-button {
            display: inline-block;
            padding: 15px 40px;
            background: #5A003B;
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            font-size: 1.1rem;
            transition: transform 0.3s, box-shadow 0.3s;
            margin: 10px;
        }

        .cta-button:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 20px rgba(90, 0, 59, 0.4);
        }

        .warranty-badge {
            display: inline-block;
            background: #ff6b6b;
            color: white;
            padding: 30px 40px;
            border-radius: 15px;
            font-size: 1.5rem;
            font-weight: bold;
            margin-top: 20px;
            box-shadow: 0 5px 20px rgba(255,107,107,0.3);
        }

        footer {
            background: #ffff;
            color: black;
            padding: 40px 20px;
            text-align: center;
        }

        .footer-contact {
            margin-top: 20px;
            line-height: 2;
        }

        .footer-contact a {
            color: #5A003B;
            text-decoration: none;
        }

        /* RESPONSIVE DESIGN */
        @media (max-width: 1024px) {
            .comparison-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            
            .comparison-box {
                max-width: 600px;
                margin: 0 auto;
            }
        }

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

            .hero .subtitle {
                font-size: 1.2rem;
            }

            .section-title {
                font-size: 2rem;
            }
            
            .comparison-title {
                font-size: 1.8em;
            }

            .features-grid {
                grid-template-columns: 1fr;
            }

            .model-badge {
                font-size: 1rem;
                padding: 10px 20px;
            }
            
            .comparison-box {
                padding: 25px 20px;
            }
            
            .comparison-box-title {
                font-size: 1.3em;
            }
            
            .comparison-list li {
                font-size: 0.95rem;
                padding-left: 30px;
            }

            /* Mobile table improvements */
            .comparison-table {
                padding: 15px;
                border-radius: 10px;
            }

            table {
                min-width: 1000px;
                font-size: 0.85rem;
            }

            th, td {
                padding: 8px 6px;
            }

            /* Add scroll indicator */
            .comparison-table::after {
                content: '← Scroll to see more →';
                display: block;
                text-align: center;
                color: #777;
                font-size: 0.85rem;
                margin-top: 15px;
                font-style: italic;
            }
        }

        @media (max-width: 480px) {
            .section {
                padding: 40px 15px;
            }
            
            .quality-comparison-section {
                padding: 40px 15px;
            }
            
            .comparison-title {
                font-size: 1.5em;
                margin-bottom: 25px;
            }
            
            .comparison-box {
                padding: 20px 15px;
            }
            
            .comparison-box-title {
                font-size: 1.2em;
                margin-bottom: 15px;
            }
            
            .comparison-list li {
                font-size: 0.9rem;
                padding: 10px 0;
                padding-left: 28px;
            }
            
            .comparison-list.good li::before,
            .comparison-list.bad li::before {
                font-size: 1.3em;
            }
        }

        .notop {
            padding-top: 15px;
            padding-bottom: 15px;


        }
