
         /* ****************************************************************** */
        /***************************** section 3 ******************************/
        /* ****************************************************************** */
     #section3 {
            position: relative;
            z-index: 10; /* Reduced from 1000 */
            padding: 20px;
            color: #333;
        }

        #section3 .section3-container {
            display: flex;
            flex-direction: column;
            max-width: 1200px;
            margin: 0 auto;
            background-color: #dfdfdf;
            box-shadow: 0 4px 12px rgba(0,0,0,0.1);
            border-radius: 10px;
            overflow: hidden;
        }

        @media (min-width: 768px) {
            #section3 .section3-container {
                flex-direction: row;
                min-height: 500px;
            }
        }

        #section3 .section3-image-wrapper {
            flex: 1;
            position: relative;
            padding: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-bottom: 1px solid #e0e0e0;
            background-color: #dfdfdf;
            min-height: 400px;
        }

        @media (min-width: 768px) {
            #section3 .section3-image-wrapper {
                border-bottom: none;
                border-right: 1px solid #e0e0e0;
                min-height: 500px;
            }
        }

        #section3 .section3-image-container {
            position: relative;
            width: 100%;
            max-width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        #section3 .section3-product-image {
            width: 100%;
            max-width: 400px;
            height: auto;
            display: block;
            object-fit: contain;
            transition: transform 0.3s ease;
        }

        @media (max-width: 767px) {
            #section3 .section3-product-image {
                max-width: 320px;
            }
        }

       
        #section3 .section3-spot-container {
            position: absolute;
            z-index: 5;
        }

        #section3 .section3-spot {
            position: relative;
            width: 16px;
            height: 16px;
            background-color: #005ae0;
            border: 3px solid white;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 2px 8px rgba(0,0,0,0.3);
        }

        @media (max-width: 767px) {
            #section3 .section3-spot {
                width: 20px;
                height: 20px;
            }
        }

        

        #section3 .section3-spot-title {
    position: absolute;
    font-size: 12px;
    font-weight: 600;
    color: #333;
    /* REMOVE or CHANGE this line: white-space: nowrap; */
    white-space: normal; /* Allow text to wrap */
    max-width: 150px; /* Adjust this value as needed to control wrapping */
    text-align: center; /* Center the wrapped text if desired */
    padding: 4px 8px;
    pointer-events: auto;
    opacity: 1;
    transition: all 0.2s ease;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 4px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    z-index: 1;
}

        @media (max-width: 767px) {
            #section3 .section3-spot-title {
                font-size: 11px;
                padding: 3px 6px;
            }
        }

       

        #section3 .section3-info-panel {
            flex: 1;
            padding: 25px;
            background-color: #ffffff;
            min-height: 300px;
            display: flex;
            flex-direction: column;
            position: relative;
        }

        @media (max-width: 767px) {
            #section3 .section3-info-panel {
                padding: 20px;
                min-height: 250px;
            }
        }

        #section3 .section3-info-content {
            display: none;
            animation: section3-fadeIn 0.3s ease;
        }

        #section3 .section3-info-content.section3-active {
            display: block;
        }

        @keyframes section3-fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

        #section3 .section3-default-message {
            text-align: center;
            padding: 30px 20px;
            color: #666;
            display: none;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            flex: 1;
        }

        @media (max-width: 767px) {
            #section3 .section3-default-message {
                padding: 20px 15px;
            }
        }

        #section3 .section3-default-message.section3-active {
            display: flex;
        }

        #section3 h2 {
            color: #005ae0;
            margin-bottom: 15px;
            font-weight: 600;
        }

        #section3 .section3-info-content h2 {
            margin-bottom: 15px;
            font-size: 20px;
            position: relative;
            padding-bottom: 8px;
        }

        @media (max-width: 767px) {
            #section3 .section3-info-content h2 {
                font-size: 18px;
            }
        }

        #section3 .section3-info-content h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: #005ae0;
            border-radius: 3px;
        }

        #section3 .section3-info-content p {
            color: #333;
            margin-bottom: 15px;
            font-size: 14px;
            line-height: 1.6;
            text-align: justify;
        }

        @media (max-width: 767px) {
            #section3 .section3-info-content p {
                font-size: 13px;
                text-align: left;
            }
        }

        #section3 .section3-specs-list {
            margin-top: 15px;
            padding-left: 20px;
        }

        #section3 .section3-specs-list li {
            margin-bottom: 8px;
            color: #666;
            font-size: 13px;
            line-height: 1.4;
        }

        @media (max-width: 767px) {
            #section3 .section3-specs-list li {
                font-size: 12px;
            }
        }

        #section3 .section3-default-message p {
            max-width: 300px;
            margin: 0 auto 20px;
        }

        #section3 .section3-features-highlight {
            background-color: #fff9c4;
            padding: 15px;
            border-radius: 6px;
            margin-top: 20px;
            border-left: 4px solid #005ae0;
        }

        #section3 .section3-features-highlight h3 {
            color: #0d0085;
            margin-bottom: 10px;
            font-size: 16px;
        }

        @media (max-width: 767px) {
            #section3 .section3-features-highlight h3 {
                font-size: 14px;
            }
        }

        #section3 .section3-features-highlight ul {
            padding-left: 20px;
        }

        #section3 .section3-features-highlight li {
            margin-bottom: 6px;
            font-size: 13px;
        }

        @media (max-width: 767px) {
            #section3 .section3-features-highlight li {
                font-size: 12px;
            }
        }

        #section3 .section3-navigation-buttons {
            display: flex;
            justify-content: space-between;
            margin-top: auto;
            padding-top: 20px;
            gap: 10px;
        }

        #section3 .section3-nav-button {
            padding: 10px 16px;
            background-color: #005ae0;
            color: white;
            border: none;
            border-radius: 4px;
            cursor: pointer;
            font-size: 13px;
            transition: all 0.3s;
            flex: 1;
            max-width: 120px;
        }

        @media (max-width: 767px) {
            #section3 .section3-nav-button {
                padding: 8px 12px;
                font-size: 12px;
            }
        }

       

        #section3 .section3-nav-button:disabled {
            background-color: #cccccc;
            cursor: not-allowed;
            transform: none;
        }

        #section3 .section3-technical-note {
            font-size: 11px;
            color: #888;
            margin-top: 10px;
            font-style: italic;
        }

        #section3 .section3-part-number {
            display: inline-block;
            background-color: #f0f0f0;
            padding: 4px 8px;
            border-radius: 3px;
            font-family: 'Courier New', monospace;
            font-size: 12px;
            margin-top: 8px;
            font-weight: 600;
        }

        #section3 .section3-title {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            line-height: 1.2;
            text-align: center;
            color: white;
        }

        @media (max-width: 767px) {
            #section3 .section3-title {
                font-size: 1.4rem;
                margin-bottom: 1rem;
            }
        }

        #section3 .section3-eyebrow {
            font-size: 0.9rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-bottom: 1rem;
            color: var(--accent-blue);

            text-align: center;
        }

        @media (max-width: 767px) {
            #section3 .section3-eyebrow {
                font-size: 0.8rem;
                letter-spacing: 1px;
            }
        }

        #section3 .section3-spot.section3-active {
    background-color: red; /* Or any shade of red you prefer, e.g., #FF0000 */
    border-color: red; /* Optional: Change border color to match, or a lighter shade */
    box-shadow: 0 0 0 5px rgba(255, 0, 0, 0.4); /* Optional: Add a subtle glow/halo */
}

    

