/* CSS untuk memperbaiki tampilan video di mobile */

/* === VIDEO CONTRAST CONTROL VARIABLES === */

:root {
    /* Kontrol kontras untuk video ed-743909773 */
    --video-contrast-base: 1.3;
    --video-contrast-small: 1.5;
    --video-contrast-mini: 1.8;
    --video-saturation-base: 1;
    --video-saturation-small: 1;
    --video-saturation-mini: 1;
    --video-brightness-base: 1.1;
    --video-brightness-small: 1.2;
    --video-brightness-mini: 1.25;
}

/* Alternatif kontras tinggi - uncomment untuk menggunakan */
/*
:root {
    --video-contrast-base: 1.4;
    --video-contrast-small: 1.6;
    --video-contrast-mini: 1.8;
    --video-saturation-base: 1.2;
    --video-saturation-small: 1.3;
    --video-saturation-mini: 1.4;
    --video-brightness-base: 1.15;
    --video-brightness-small: 1.25;
    --video-brightness-mini: 1.3;


    --video-contrast-base: 1.3;
    --video-contrast-small: 1.5;
    --video-contrast-mini: 1.6;
    --video-saturation-base: 1.15;
    --video-saturation-small: 1.25;
    --video-saturation-mini: 1.3;
    --video-brightness-base: 1.1;
    --video-brightness-small: 1.2;
    --video-brightness-mini: 1.25;

}
*/

/* Mobile Header Background Color Change */
@media screen and (max-width: 768px) {
    /* Menu wrapper background color change untuk mobile */
    #ed-742282462 {
        background-color: #000000 !important;
    }
}

/* Logo Light Effect Animation - STANDBY MODE */
/* Untuk mengaktifkan efek, tambahkan class "logo-glow-active" pada #ed-743651017 */
#ed-743651017.logo-glow-active {
    position: relative !important;
    overflow: hidden !important;
}

#ed-743651017.logo-glow-active img {
    position: relative !important;
    z-index: 0 !important;
    transition: all 0.3s ease !important;
}

#ed-743651017.logo-glow-active:hover img {
    transform: scale(1.05) !important;
    filter: brightness(1.1) !important;
}

/* Glow effect around logo - INACTIVE by default */
#ed-743651017.logo-glow-active::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, 
        rgba(255, 215, 0, 0.3) 0%, 
        rgba(255, 215, 0, 0.1) 30%, 
        transparent 70%
    );
    transform: translate(-50%, -50%);
    opacity: 0;
    animation: logoGlow 4s ease-in-out infinite;
    z-index: -1;
    pointer-events: none;
}

@keyframes logoGlow {
    0%, 100% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.8);
    }
    50% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

/* Perbaikan untuk video background */
@media screen and (max-width: 768px) {
    /* Video background container fixes */
    .ed-video.wv-bg {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        overflow: hidden !important;
    }
    
    .ed-video.wv-bg video {
        width: 100% !important;
        height: auto !important;
        min-height: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
    }
    
    /* Perbaikan untuk parallax containers di mobile */
    .parallax .ed-video.wv-bg {
        position: relative !important;
    }
    
    .parallax .ed-video.wv-bg video {
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        width: 100vw !important;
        height: 56.25vw !important; /* 16:9 aspect ratio */
        min-height: 100vh !important;
    }
    
    /* Perbaikan untuk video dengan ID spesifik */
    #ed-793122055 video,
    #ed-743909773 video,
    #ed-980318076 video {
        width: 100% !important;
        height: auto !important;
        min-height: 300px !important;
        max-height: 80vh !important;
        object-fit: cover !important;
        object-position: center center !important;
    }
    
    /* Perbaikan khusus untuk video "we create parts for international companies" */
    #ed-793122055 {
        position: relative !important;
        width: 100% !important;
        min-height: 300px !important;
        overflow: hidden !important;
        /* Minimal transform untuk prevent blur */
        transform: translateZ(0) !important;
        will-change: transform !important;
    }
    
    #ed-793122055 video {
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center !important;
        /* Gunakan translate untuk center positioning seperti video ketiga */
        transform: translate(-50%, -50%) !important;
        
        /* UNSHARP MASK EFFECT - Teknik Profesional (dari video ketiga) */
        filter: 
            /* Base sharpening */
            contrast(1.2)
            brightness(1.05)
            saturate(1.1)
            /* Unsharp mask simulation */
            drop-shadow(0 0 1px rgba(255,255,255,0.8))
            drop-shadow(0 0 2px rgba(0,0,0,0.3))
            drop-shadow(0 0 0.5px rgba(255,255,255,0.9))
        !important;
        
        /* Alternative CSS untuk browser yang tidak support multi-drop-shadow */
        -webkit-filter: contrast(1.2) brightness(1.05) saturate(1.1) !important;
        
        /* Rendering optimization tanpa pixelation */
        image-rendering: auto !important;
        
        /* Hardware acceleration minimal untuk mencegah blur */
        will-change: transform !important;
        backface-visibility: hidden !important;
    }
    
    /* Container untuk video "we create parts" */
    #ed-742282705 {
        min-height: 350px !important;
        position: relative !important;
    }
    
    #ed-742282705 .background {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        overflow: hidden !important;
    }
    
    /* Container dengan video background */
    #ed-742282705,
    #ed-742282714,
    #ed-742282858 {
        min-height: 300px !important;
        overflow: hidden !important;
    }
    
    /* Video yang ada di dalam container parallax */
    .ed-container.parallax .background .ed-video.wv-bg {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
    }
    
    .ed-container.parallax .background .ed-video.wv-bg video {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
    }
    
    /* YouTube embed fixes */
    .ed-youtube.ar16_9 {
        padding-bottom: 56.25% !important; /* 16:9 aspect ratio */
        height: 0 !important;
        position: relative !important;
        overflow: hidden !important;
    }
    
    .ed-youtube iframe {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
    }
    
    /* Mengurangi opacity video background untuk performa */
    .ed-video.wv-bg video {
        opacity: 0.9 !important;
    }
    
    /* Memperbaiki container yang menggunakan flexbox */
    .ed-container .inner {
        position: relative !important;
        z-index: 10 !important;
    }
    
    /* Perbaikan untuk video yang overlap dengan konten */
    .ed-container.parallax .inner {
        background: rgba(0, 0, 0, 0.3) !important;
        backdrop-filter: blur(2px) !important;
    }
}

/* Perbaikan khusus untuk HP dengan layar kecil */
@media screen and (max-width: 480px) {
    .ed-video.wv-bg video {
        width: 100% !important;
        height: auto !important;
        min-height: 200px !important;
        max-height: 50vh !important;
    }
    
    /* Container video dengan tinggi minimal */
    #ed-742282705,
    #ed-742282714,
    #ed-742282858 {
        min-height: 250px !important;
    }
    
    /* Fix khusus untuk video "we create parts for international companies" di layar kecil */
    #ed-793122055 {
        min-height: 250px !important;
    }
    
    #ed-793122055 video {
        min-height: 250px !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        
        /* ENHANCED UNSHARP MASK untuk layar kecil (dari video ketiga) */
        filter: 
            contrast(1.3)
            brightness(1.1)
            saturate(1.15)
            /* Multiple shadow layers untuk sharpening effect */
            drop-shadow(0 0 0.5px rgba(255,255,255,1))
            drop-shadow(0 0 1px rgba(255,255,255,0.8))
            drop-shadow(0 0 2px rgba(0,0,0,0.4))
            drop-shadow(0 0 0.25px rgba(255,255,255,0.9))
        !important;
        
        /* Fallback untuk browser lama */
        -webkit-filter: contrast(1.3) brightness(1.1) saturate(1.15) !important;
    }
    
    /* Pastikan section container cukup tinggi */
    #ed-742282705 {
        min-height: 280px !important;
    }
    
    /* Menghilangkan parallax di mobile sangat kecil untuk performa */
    .parallax {
        transform: none !important;
    }
    
    .parallax .inner {
        transform: none !important;
    }
}

/* Perbaikan untuk orientasi landscape di mobile */
@media screen and (max-width: 768px) and (orientation: landscape) {
    .ed-video.wv-bg video {
        width: 100% !important;
        height: 100vh !important;
        object-fit: cover !important;
    }
}

/* Fallback untuk browser yang tidak support object-fit */
@media screen and (max-width: 768px) {
    @supports not (object-fit: cover) {
        .ed-video.wv-bg {
            display: block !important;
            overflow: hidden !important;
        }
        
        .ed-video.wv-bg video {
            width: 100% !important;
            height: auto !important;
            position: relative !important;
            top: 50% !important;
            transform: translateY(-50%) !important;
        }
    }
}

/* Perbaikan untuk teks di atas video "we create parts for international companies" */
@media screen and (max-width: 768px) {
    /* Pastikan container teks terlihat di atas video */
    #ed-742282693 {
        position: relative !important;
        z-index: 20 !important;
        background: rgba(0, 0, 0, 0.5) !important;
        backdrop-filter: blur(3px) !important;
        padding: 20px !important;
        border-radius: 10px !important;
        margin: 5px !important;
    }
    
    #ed-742282693 .inner {
        position: relative !important;
        z-index: 30 !important;
    }
    
    /* Styling untuk headline */
    #ed-742282696 h2 {
        color: white !important;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8) !important;
        font-size: 24px !important;
        line-height: 1.3 !important;
        margin: 0 !important;
    }
    
    /* Pastikan container utama memiliki positioning yang benar */
    #ed-742282690 {
        position: relative !important;
        min-height: auto !important;
    }
    
    #ed-742282690 .inner {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        min-height: auto !important;
        position: relative !important;
        z-index: 15 !important;
    }
}

/* Perbaikan untuk orientasi landscape di mobile */
@media screen and (max-width: 768px) and (orientation: landscape) {
    .ed-video.wv-bg video {
        width: 100% !important;
        height: 100vh !important;
        object-fit: cover !important;
    }
    
    /* Adjust text container untuk landscape */
    #ed-742282693 {
        margin: 5px !important;
        padding: 15px !important;
    }
    
    #ed-742282696 h2 {
        font-size: 20px !important;
    }
}

/* Perbaikan khusus untuk figure ed-743909773 (video rare material solutions) */
@media screen and (max-width: 768px) {
    /* Container utama untuk section rare material solutions */
    #ed-742282714 {
        position: relative !important;
        min-height: 400px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        overflow: hidden !important;
    }
    
    /* Background container */
    #ed-742282714 .background {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        height: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        overflow: hidden !important;
    }
    
    /* Figure video rare material solutions - VIDEO RESTORED */
    #ed-743909773 {
        position: relative !important;
        width: 100% !important;
        height: 100% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    /* Video dalam figure ed-743909773 - RESTORE VIDEO DISPLAY */
    #ed-743909773 video {
        /* Kembalikan video dengan optimasi rendering */
        display: block !important;
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        width: 100vw !important;
        height: 56.25vw !important; /* 16:9 aspect ratio */
        min-height: 400px !important;
        max-height: 80vh !important;
        object-fit: cover !important;
        object-position: center center !important;
        z-index: 1 !important;
    }
    
    /* SOLUSI 3: Alternative - Canvas rendering approach */
    #ed-743909773.use-canvas {
        background: none !important;
    }
    
    #ed-743909773.use-canvas video {
        display: block !important;
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) scale(1.02) !important;
        width: 100% !important;
        height: auto !important;
        min-height: 400px !important;
        max-height: 80vh !important;
        object-fit: cover !important;
        object-position: center center !important;
        z-index: 1 !important;
        /* Canvas-like rendering */
        image-rendering: pixelated !important;
        image-rendering: crisp-edges !important;
    }
    
    /* Content container untuk teks */
    #ed-742282720 {
        position: relative !important;
        z-index: 20 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        min-height: 400px !important;
    }
    
    #ed-742282720 .inner {
        background: rgba(0, 0, 0, 0.6) !important;
        backdrop-filter: blur(3px) !important;
        padding: 25px !important;
        border-radius: 15px !important;
        margin: 20px !important;
        max-width: 90% !important;
    }
    
    /* Styling untuk headline dan text */
    #ed-742282723 h3 {
        color: white !important;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8) !important;
        font-size: 22px !important;
        text-align: center !important;
        margin-bottom: 15px !important;
    }
    
    #ed-742282729 p {
        color: rgba(255, 255, 255, 0.95) !important;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7) !important;
        line-height: 1.5 !important;
        text-align: center !important;
        font-size: 16px !important;
    }
}

/* Perbaikan untuk layar mobile kecil */
@media screen and (max-width: 480px) {
    #ed-743909773 video {
        min-height: 300px !important;
        height: 50vh !important;
    }
    
    #ed-742282714 {
        min-height: 350px !important;
    }
    
    #ed-742282720 {
        min-height: 350px !important;
    }
    
    #ed-742282720 .inner {
        padding: 20px !important;
        margin: 15px !important;
    }
    
    #ed-742282723 h3 {
        font-size: 20px !important;
    }
    
    #ed-742282729 p {
        font-size: 16px !important;
    }
}

/* === UNSHARP MASK VIDEO SHARPENING ed-793122055 & ed-743909773 === */

/* Perbaikan untuk perangkat dengan pixel density tinggi - VIDEO PERTAMA */
@media screen and (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2) {
    #ed-793122055 video {
        /* Scaling khusus untuk retina display */
        transform: translate(-50%, -50%) scale(0.98) !important;
        
        /* Filter untuk retina clarity - ENHANCED */
        filter: contrast(1.25) saturate(1.1) brightness(1.08) !important;
    }
}

/* === TEKNIK ANTI-BLUR TAMBAHAN UNTUK ed-793122055 === */
@media screen and (max-width: 768px) {
    #ed-793122055 video {
        /* Teknik rendering tambahan untuk mengatasi blur */
        -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1) !important;
        -moz-transform: translate(-50%, -50%) scale(1) !important;
        -ms-transform: translate(-50%, -50%) scale(1) !important;
        -o-transform: translate(-50%, -50%) scale(1) !important;
        transform: translate(-50%, -50%) scale(1) !important;
        
        /* Optimasi rendering cross-browser */
        -webkit-image-rendering: -webkit-optimize-contrast !important;
        -moz-image-rendering: crisp-edges !important;
        -ms-image-rendering: -ms-crisp-edges !important;
        
        /* Mencegah blur dari CSS transform */
        -webkit-transform-style: preserve-3d !important;
        -moz-transform-style: preserve-3d !important;
        transform-style: preserve-3d !important;
        
        /* Filter sharpening yang lebih agresif */
        -webkit-filter: contrast(1.3) saturate(1.15) brightness(1.1) !important;
        -moz-filter: contrast(1.3) saturate(1.15) brightness(1.1) !important;
        filter: contrast(1.3) saturate(1.15) brightness(1.1) !important;
        
        /* Pixel perfect rendering */
        image-rendering: optimize-contrast !important;
        image-rendering: -moz-crisp-edges !important;
        image-rendering: -webkit-crisp-edges !important;
        
        /* Anti-aliasing control */
        -webkit-font-smoothing: none !important;
        -moz-osx-font-smoothing: unset !important;
    }
}

/* Kontrol kontras berdasarkan ukuran layar - MENGGUNAKAN CSS VARIABLES untuk VIDEO PERTAMA */
@media screen and (max-width: 480px) {
    #ed-793122055 video {
        /* Kontras maksimal untuk layar sangat kecil */
        filter: contrast(var(--video-contrast-small)) saturate(var(--video-saturation-small)) brightness(var(--video-brightness-small)) !important;
        -webkit-filter: contrast(var(--video-contrast-small)) saturate(var(--video-saturation-small)) brightness(var(--video-brightness-small)) !important;
    }
}

@media screen and (max-width: 320px) {
    #ed-793122055 video {
        /* Kontras ultra untuk layar mini */
        filter: contrast(var(--video-contrast-mini)) saturate(var(--video-saturation-mini)) brightness(var(--video-brightness-mini)) !important;
        -webkit-filter: contrast(var(--video-contrast-mini)) saturate(var(--video-saturation-mini)) brightness(var(--video-brightness-mini)) !important;
    }
}

/* === UNSHARP MASK VIDEO SHARPENING ed-743909773 === */
/* Teknik profesional untuk menajamkan video menggunakan CSS shadows */
@media screen and (max-width: 768px) {
    #ed-743909773 video {
        /* Basic positioning tanpa scale yang menyebabkan blur */
        transform: translate(-50%, -50%) !important;
        
        /* UNSHARP MASK EFFECT - Teknik Profesional */
        filter: 
            /* Base sharpening */
            contrast(1.2)
            brightness(1.05)
            saturate(1.1)
            /* Unsharp mask simulation */
            drop-shadow(0 0 1px rgba(255,255,255,0.8))
            drop-shadow(0 0 2px rgba(0,0,0,0.3))
            drop-shadow(0 0 0.5px rgba(255,255,255,0.9))
        !important;
        
        /* Alternative CSS untuk browser yang tidak support multi-drop-shadow */
        -webkit-filter: contrast(1.2) brightness(1.05) saturate(1.1) !important;
        
        /* Rendering optimization tanpa pixelation */
        image-rendering: auto !important;
        
        /* Hardware acceleration minimal untuk mencegah blur */
        will-change: transform !important;
        backface-visibility: hidden !important;
        
        /* Positioning precise */
        object-fit: cover !important;
        object-position: center !important;
        
        /* Video sizing yang tidak menyebabkan scaling blur */
        width: 100% !important;
        height: 100% !important;
        min-height: 400px !important;
        max-height: 80vh !important;
    }
    
    /* Container anti-blur */
    #ed-743909773 {
        /* Minimal transform untuk prevent blur */
        transform: translateZ(0) !important;
        will-change: transform !important;
    }
}

/* Unsharp mask untuk mobile kecil - ENHANCED */
@media screen and (max-width: 480px) {
    #ed-743909773 video {
        /* Ukuran optimal tanpa scaling blur */
        transform: translate(-50%, -50%) !important;
        width: 100% !important;
        height: 100% !important;
        max-height: 70vh !important;
        
        /* ENHANCED UNSHARP MASK untuk layar kecil */
        filter: 
            contrast(1.3)
            brightness(1.1)
            saturate(1.15)
            /* Multiple shadow layers untuk sharpening effect */
            drop-shadow(0 0 0.5px rgba(255,255,255,1))
            drop-shadow(0 0 1px rgba(255,255,255,0.8))
            drop-shadow(0 0 2px rgba(0,0,0,0.4))
            drop-shadow(0 0 0.25px rgba(255,255,255,0.9))
        !important;
        
        /* Fallback untuk browser lama */
        -webkit-filter: contrast(1.3) brightness(1.1) saturate(1.15) !important;
    }
}

/* Perbaikan untuk perangkat dengan pixel density tinggi */
@media screen and (max-width: 768px) and (-webkit-min-device-pixel-ratio: 2) {
    #ed-743909773 video {
        /* Scaling khusus untuk retina display */
        transform: translate(-50%, -50%) scale(0.98) !important;
        
        /* Filter untuk retina clarity - ENHANCED */
        filter: contrast(1.25) saturate(1.1) brightness(1.08) !important;
    }
}

/* === TEKNIK ANTI-BLUR TAMBAHAN UNTUK ed-743909773 === */
@media screen and (max-width: 768px) {
    #ed-743909773 video {
        /* Teknik rendering tambahan untuk mengatasi blur */
        -webkit-transform: translate(-50%, -50%) translateZ(0) scale(1) !important;
        -moz-transform: translate(-50%, -50%) scale(1) !important;
        -ms-transform: translate(-50%, -50%) scale(1) !important;
        -o-transform: translate(-50%, -50%) scale(1) !important;
        
        /* Optimasi rendering cross-browser */
        -webkit-image-rendering: -webkit-optimize-contrast !important;
        -moz-image-rendering: crisp-edges !important;
        -ms-image-rendering: -ms-crisp-edges !important;
        
        /* Mencegah blur dari CSS transform */
        -webkit-transform-style: preserve-3d !important;
        -moz-transform-style: preserve-3d !important;
        
        /* Filter sharpening yang lebih agresif */
        -webkit-filter: contrast(1.3) saturate(1.15) brightness(1.1) !important;
        -moz-filter: contrast(1.3) saturate(1.15) brightness(1.1) !important;
        
        /* Pixel perfect rendering */
        image-rendering: optimize-contrast !important;
        image-rendering: -moz-crisp-edges !important;
        image-rendering: -webkit-crisp-edges !important;
        
        /* Anti-aliasing control */
        -webkit-font-smoothing: none !important;
        -moz-osx-font-smoothing: unset !important;
    }
}

/* Kontrol kontras berdasarkan ukuran layar - MENGGUNAKAN CSS VARIABLES */
@media screen and (max-width: 480px) {
    #ed-743909773 video {
        /* Kontras maksimal untuk layar sangat kecil */
        filter: contrast(var(--video-contrast-small)) saturate(var(--video-saturation-small)) brightness(var(--video-brightness-small)) !important;
        -webkit-filter: contrast(var(--video-contrast-small)) saturate(var(--video-saturation-small)) brightness(var(--video-brightness-small)) !important;
    }
}

@media screen and (max-width: 320px) {
    #ed-743909773 video {
        /* Kontras ultra untuk layar mini */
        filter: contrast(var(--video-contrast-mini)) saturate(var(--video-saturation-mini)) brightness(var(--video-brightness-mini)) !important;
        -webkit-filter: contrast(var(--video-contrast-mini)) saturate(var(--video-saturation-mini)) brightness(var(--video-brightness-mini)) !important;
    }
}

/* Mobile Hamburger Menu Dropdown Styles */
@media screen and (max-width: 768px) {
    /* Menu wrapper fixed positioning */
    #ed-742282462 {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        z-index: 9999 !important;
        background-color: rgba(93, 65, 0, 0.95) !important;
        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
        padding: 2px 0 !important;
    }
    
    /* Mobile container fixed positioning */
    .mobile-cont,
    #ed-742282471 {
        position: fixed !important;
        top: 5px !important;
        right: 15px !important;
        display: flex !important;
        align-items: center !important;
        gap: 15px !important;
        z-index: 10000 !important;
        background: rgba(0, 0, 0, 0.1) !important;
        padding: 4px 8px !important;
        border-radius: 25px !important;
        backdrop-filter: blur(5px) !important;
    }
    
    /* Phone icon fixed positioning */
    #ed-742282474 {
        position: relative !important;
        margin: 0 !important;
        padding: 5px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    #ed-742282474 svg {
        width: 24px !important;
        height: 24px !important;
        fill: #ffffff !important;
        transition: all 0.3s ease !important;
    }
    
    #ed-742282474:hover svg {
        fill: #ffbe3e !important;
        transform: scale(1.1) !important;
    }
    
    /* Hamburger menu trigger fixed positioning */
    .menu-trigger,
    #ed-742282477 {
        position: relative !important;
        cursor: pointer !important;
        padding: 8px !important;
        margin: 0 !important;
        z-index: 10001 !important;
        background: rgba(255, 255, 255, 0.1) !important;
        border-radius: 6px !important;
        transition: all 0.3s ease !important;
    }
    
    .menu-trigger:hover,
    #ed-742282477:hover {
        background: rgba(255, 190, 62, 0.2) !important;
        transform: scale(1.05) !important;
    }
    
    /* Hide desktop menu on mobile */
    #ed-742282468 {
        display: none !important;
    }
    
    /* Hamburger menu trigger styling */
    .menu-trigger-box {
        width: 30px !important;
        height: 24px !important;
        position: relative !important;
        transform: rotate(0deg) !important;
        transition: 0.3s ease-in-out !important;
    }
    
    .menu-trigger-inner,
    .menu-trigger-inner:before,
    .menu-trigger-inner:after {
        display: block !important;
        position: absolute !important;
        height: 3px !important;
        width: 100% !important;
        background: #ffffff !important;
        border-radius: 2px !important;
        opacity: 1 !important;
        left: 0 !important;
        transform: rotate(0deg) !important;
        transition: 0.3s ease-in-out !important;
    }
    
    .menu-trigger-inner {
        top: 10px !important;
    }
    
    .menu-trigger-inner:before {
        content: "" !important;
        top: -10px !important;
    }
    
    .menu-trigger-inner:after {
        content: "" !important;
        top: 10px !important;
    }
    
    /* Hamburger animation when active */
    .menu-trigger.active .menu-trigger-inner {
        background: transparent !important;
    }
    
    .menu-trigger.active .menu-trigger-inner:before {
        transform: rotate(45deg) !important;
        top: 0 !important;
        background: #ffbe3e !important;
    }
    
    .menu-trigger.active .menu-trigger-inner:after {
        transform: rotate(-45deg) !important;
        top: 0 !important;
        background: #ffbe3e !important;
    }
    
    /* Body padding to prevent content overlap */
    body {
        padding-top: 30px !important;
    }
    
    /* Logo adjustment untuk mobile */
    #ed-743651017 {
        margin-top: 20px !important;
    }
    
    /* Mobile dropdown menu */
    .mobile-dropdown-menu {
        position: fixed !important;
        top: 20px !important;
        left: 0 !important;
        right: 0 !important;
        background: linear-gradient(135deg, rgba(93, 65, 0, 0.98) 0%, rgba(74, 52, 0, 0.98) 100%) !important;
        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;
        border-bottom: 2px solid rgba(255, 190, 62, 0.3) !important;
        transform: translateY(-100%) !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
        z-index: 9998 !important;
        box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3) !important;
        max-height: calc(100vh - 20px) !important;
        overflow-y: auto !important;
    }
    
    .mobile-dropdown-menu.active {
        transform: translateY(0) !important;
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    .mobile-dropdown-menu ul {
        list-style: none !important;
        padding: 20px 0 !important;
        margin: 0 !important;
    }
    
    .mobile-dropdown-menu li {
        margin: 0 !important;
        border-bottom: 1px solid rgba(255, 190, 62, 0.2) !important;
    }
    
    .mobile-dropdown-menu li:last-child {
        border-bottom: none !important;
    }
    
    .mobile-dropdown-menu a {
        display: block !important;
        padding: 15px 25px !important;
        color: #ffffff !important;
        text-decoration: none !important;
        font-size: 16px !important;
        font-weight: 500 !important;
        transition: all 0.3s ease !important;
        position: relative !important;
        overflow: hidden !important;
    }
    
    .mobile-dropdown-menu a:before {
        content: "" !important;
        position: absolute !important;
        top: 0 !important;
        left: -100% !important;
        width: 100% !important;
        height: 100% !important;
        background: linear-gradient(90deg, transparent, rgba(255, 190, 62, 0.2), transparent) !important;
        transition: left 0.5s !important;
    }
    
    .mobile-dropdown-menu a:hover:before {
        left: 100% !important;
    }
    
    .mobile-dropdown-menu a:hover {
        background: rgba(255, 190, 62, 0.1) !important;
        color: #ffbe3e !important;
        padding-left: 35px !important;
        transform: translateX(5px) !important;
    }
    
    /* Smooth scroll behavior */
    .mobile-dropdown-menu a[href^="#"] {
        scroll-behavior: smooth !important;
    }
    
    /* Menu overlay background */
    .mobile-menu-overlay {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        background: rgba(0, 0, 0, 0.5) !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transition: all 0.3s ease !important;
        z-index: 9997 !important;
    }
    
    .mobile-menu-overlay.active {
        opacity: 1 !important;
        visibility: visible !important;
    }
    
    /* Prevent body scroll when menu is open */
    body.menu-open {
        overflow: hidden !important;
    }
    
    /* Menu container positioning fix */
    #ed-742282462 {
        position: fixed !important;
        z-index: 9999 !important;
    }
    
    /* Fixed positioning untuk icons - selalu di atas */
    .mobile-cont,
    #ed-742282471 {
        position: fixed !important;
        top: 5px !important;
        right: 15px !important;
        z-index: 10002 !important;
        background: rgba(0, 0, 0, 0.2) !important;
        padding: 4px 8px !important;
        border-radius: 25px !important;
        backdrop-filter: blur(8px) !important;
        -webkit-backdrop-filter: blur(8px) !important;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
    }
    
    /* Phone icon always visible */
    #ed-742282474 {
        position: relative !important;
        margin: 0 !important;
        padding: 6px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 50% !important;
        transition: all 0.3s ease !important;
    }
    
    #ed-742282474:hover {
        background: rgba(255, 190, 62, 0.2) !important;
        transform: scale(1.1) !important;
    }
    
    /* Hamburger icon always visible */
    .menu-trigger,
    #ed-742282477 {
        position: relative !important;
        cursor: pointer !important;
        padding: 6px !important;
        margin: 0 !important;
        z-index: 10003 !important;
        background: rgba(255, 255, 255, 0.1) !important;
        border-radius: 8px !important;
        transition: all 0.3s ease !important;
        border: 1px solid rgba(255, 255, 255, 0.2) !important;
    }
    
    .menu-trigger:hover,
    #ed-742282477:hover {
        background: rgba(255, 190, 62, 0.3) !important;
        transform: scale(1.05) !important;
        box-shadow: 0 4px 12px rgba(255, 190, 62, 0.3) !important;
    }
    
    /* Enhanced visibility saat menu aktif */
    .menu-trigger.active,
    #ed-742282477.active {
        background: rgba(255, 190, 62, 0.4) !important;
        box-shadow: 0 4px 15px rgba(255, 190, 62, 0.4) !important;
        border-color: rgba(255, 190, 62, 0.6) !important;
    }
}

/* Desktop menu visibility */
@media screen and (min-width: 769px) {
    .mobile-cont {
        display: none !important;
    }
    
    #ed-742282468 {
        display: block !important;
    }
    
    .mobile-dropdown-menu,
    .mobile-menu-overlay {
        display: none !important;
    }
    
    /* Reset body padding di desktop */
    body {
        padding-top: 0 !important;
    }
}

/* Additional fixes untuk memastikan icons selalu terlihat */
@media screen and (max-width: 768px) {
    /* Prevent any element from covering the icons */
    .mobile-cont *,
    #ed-742282471 * {
        pointer-events: auto !important;
        position: relative !important;
        z-index: inherit !important;
    }
    
    /* Force visibility */
    .mobile-cont,
    #ed-742282471,
    #ed-742282474,
    #ed-742282477 {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Prevent layout shifts */
    .mobile-cont {
        width: auto !important;
        height: auto !important;
        min-width: 80px !important;
        min-height: 40px !important;
    }
    
    /* Enhanced contrast untuk better visibility */
    .mobile-cont {
        background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(93, 65, 0, 0.3) 100%) !important;
        backdrop-filter: blur(12px) !important;
        -webkit-backdrop-filter: blur(12px) !important;
    }
    
    /* Icon sizing consistency */
    #ed-742282474 svg,
    .menu-trigger-inner,
    .menu-trigger-inner:before,
    .menu-trigger-inner:after {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    /* Prevent overflow hidden issues */
    body,
    html,
    #ed-742282462,
    #ed-742282471 {
        overflow: visible !important;
    }
    
    /* Override any conflicting styles */
    .mobile-cont,
    #ed-742282471 {
        transform: none !important;
        clip: none !important;
        clip-path: none !important;
        mask: none !important;
    }
}

/* Contact Page Header Styling - Match main menu height (20px) */
#ed-980405422 {
    padding: 2px 0 !important;
    min-height: 20px !important;
    background: transparent !important;
}

#ed-980405422 .inner {
    min-height: 20px !important;
    padding: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Mobile responsive adjustments for contact header */
@media (max-width: 768px) {
    #ed-980405422 {
        padding: 2px 0 !important;
        min-height: 20px !important;
    }
    
    #ed-980405422 .inner {
        min-height: 20px !important;
    }
    
    /* Adjust body padding for contact page */
    body {
        padding-top: 30px !important;
    }
}



/* ===== THREE COLUMN LAYOUT FOR TEXT SECTION ===== */
/* Layout 3 kolom untuk section "we create parts..." */
#ed-742282690 > .inner {
    display: flex !important;
    align-items: stretch;
    justify-content: space-between;
    gap: 0;
}

#ed-742282690 .ed-element.ed-container {
    flex: 1 !important;
}

/* Text content tetap center di kolom tengah */
#ed-742282693 {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Mobile responsive untuk 3 kolom */
@media screen and (max-width: 768px) {
    #ed-742282690 > .inner {
        flex-direction: column;
    }
    
    /* Sembunyikan kolom kosong di mobile */
    #ed-742282690 .ed-element.ed-container:first-child,
    #ed-742282690 .ed-element.ed-container:last-child {
        display: none;
    }
    
    /* Content column mengambil full width di mobile */
    #ed-742282693 {
        flex: 1 1 100% !important;
    }
}

/* ===== IMAGE SLIDER FIX ===== */
/* Fix for slider not displaying images */
#ed-797808219 {
    display: block !important;
    min-height: 200px !important;
    margin: 20px 0 !important;
}

.ed-slider.wv-bg,
#ed-797808222 {
    display: block !important;
    height: 200px !important;
    width: 100% !important;
    position: relative !important;
}

/* Slider styling - works immediately without waiting for slick initialization */
.slider-container.slick-initialized {
    display: none !important; /* HIDDEN FOR DEPLOYMENT */
    height: 200px !important;
    align-items: center !important;
    justify-content: center !important;
    background: #f8f9fa !important;
    border-radius: 10px !important;
    padding: 10px !important;
    overflow: hidden !important;
    position: relative !important;
    border: 1px solid #dee2e6 !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
}

/* Create individual image containers using CSS - works immediately */
.slider-container::before {
    display: none !important; /* DISABLED FOR DEPLOYMENT */
}

.slider-container::after {
    display: none !important; /* DISABLED FOR DEPLOYMENT */
    left: calc(20% + 5px) !important;
    width: calc(20% - 15px) !important;
    height: calc(100% - 20px) !important;
    background: url('../images/0/16878087/close-up-of-a-100g-fine-gold-bar-against-a-red-reflective-surface-symbolizing-wealth-and-luxury-k28kk5Wik6cyJHcX38OSLw.jpeg') center/cover no-repeat !important;
    background-size: cover !important;
    border-radius: 6px !important;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2) !important;
    z-index: 1 !important;
    opacity: 1 !important;
    animation: slideInImage2 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s both !important;
}

/* Add more images using additional pseudo-elements on the slider container itself */
#ed-797808222::before {
    display: none !important; /* DISABLED FOR DEPLOYMENT */
    border-radius: 6px !important;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2) !important;
    z-index: 1 !important;
    opacity: 1 !important;
    animation: slideInImage3 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s both !important;
}

#ed-797808222::after {
    display: none !important; /* DISABLED FOR DEPLOYMENT */
}

/* Fifth image using the background container */
#ed-797808219 .background::before {
    display: none !important; /* DISABLED FOR DEPLOYMENT */
}

/* Smooth Animation keyframes for image slide-in effect */
@keyframes slideInImage1 {
    0% { 
        opacity: 0; 
        transform: translateX(50px) scale(0.65) rotate(3deg); 
        filter: blur(4px);
    }
    25% {
        opacity: 0.2;
        transform: translateX(35px) scale(0.8) rotate(2deg);
        filter: blur(2.5px);
    }
    50% {
        opacity: 0.5;
        transform: translateX(20px) scale(0.9) rotate(1deg);
        filter: blur(1.2px);
    }
    75% {
        opacity: 0.8;
        transform: translateX(6px) scale(0.97) rotate(0.3deg);
        filter: blur(0.4px);
    }
    100% { 
        opacity: 1; 
        transform: translateX(0) scale(1) rotate(0deg); 
        filter: blur(0);
    }
}

@keyframes slideInImage2 {
    0% { 
        opacity: 0; 
        transform: translateX(50px) scale(0.65) rotate(3deg); 
        filter: blur(4px);
    }
    25% {
        opacity: 0.2;
        transform: translateX(35px) scale(0.8) rotate(2deg);
        filter: blur(2.5px);
    }
    50% {
        opacity: 0.5;
        transform: translateX(20px) scale(0.9) rotate(1deg);
        filter: blur(1.2px);
    }
    75% {
        opacity: 0.8;
        transform: translateX(6px) scale(0.97) rotate(0.3deg);
        filter: blur(0.4px);
    }
    100% { 
        opacity: 1; 
        transform: translateX(0) scale(1) rotate(0deg); 
        filter: blur(0);
    }
}

@keyframes slideInImage3 {
    0% { 
        opacity: 0; 
        transform: translateX(50px) scale(0.65) rotate(3deg); 
        filter: blur(4px);
    }
    25% {
        opacity: 0.2;
        transform: translateX(35px) scale(0.8) rotate(2deg);
        filter: blur(2.5px);
    }
    50% {
        opacity: 0.5;
        transform: translateX(20px) scale(0.9) rotate(1deg);
        filter: blur(1.2px);
    }
    75% {
        opacity: 0.8;
        transform: translateX(6px) scale(0.97) rotate(0.3deg);
        filter: blur(0.4px);
    }
    100% { 
        opacity: 1; 
        transform: translateX(0) scale(1) rotate(0deg); 
        filter: blur(0);
    }
}

@keyframes slideInImage4 {
    0% { 
        opacity: 0; 
        transform: translateX(50px) scale(0.65) rotate(3deg); 
        filter: blur(4px);
    }
    25% {
        opacity: 0.2;
        transform: translateX(35px) scale(0.8) rotate(2deg);
        filter: blur(2.5px);
    }
    50% {
        opacity: 0.5;
        transform: translateX(20px) scale(0.9) rotate(1deg);
        filter: blur(1.2px);
    }
    75% {
        opacity: 0.8;
        transform: translateX(6px) scale(0.97) rotate(0.3deg);
        filter: blur(0.4px);
    }
    100% { 
        opacity: 1; 
        transform: translateX(0) scale(1) rotate(0deg); 
        filter: blur(0);
    }
}

@keyframes slideInImage5 {
    0% { 
        opacity: 0; 
        transform: translateX(50px) scale(0.65) rotate(3deg); 
        filter: blur(4px);
    }
    25% {
        opacity: 0.2;
        transform: translateX(35px) scale(0.8) rotate(2deg);
        filter: blur(2.5px);
    }
    50% {
        opacity: 0.5;
        transform: translateX(20px) scale(0.9) rotate(1deg);
        filter: blur(1.2px);
    }
    75% {
        opacity: 0.8;
        transform: translateX(6px) scale(0.97) rotate(0.3deg);
        filter: blur(0.4px);
    }
    100% { 
        opacity: 1; 
        transform: translateX(0) scale(1) rotate(0deg); 
        filter: blur(0);
    }
}

/* Force slider images to display */
.slick-track {
    display: flex !important;
    align-items: center !important;
    height: 100% !important;
}

.slick-slide {
    height: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.slick-slide img {
    max-width: 100% !important;
    max-height: 180px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain !important;
    border-radius: 8px !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
}

/* Enhanced slider container styling */
.ed-slider.wv-bg::before {
    content: "Product Gallery" !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #495057 !important;
    z-index: 1 !important;
    background: rgba(255, 255, 255, 0.9) !important;
    padding: 10px 20px !important;
    border-radius: 25px !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
}

/* Create sample image placeholders */
.slider-container.slick-initialized::before {
    content: "" !important;
    position: absolute !important;
    top: 20px !important;
    left: 20px !important;
    right: 20px !important;
    bottom: 20px !important;
    background: 
        linear-gradient(45deg, transparent 40%, rgba(255,190,62,0.1) 50%, transparent 60%),
        repeating-linear-gradient(
            90deg,
            #f8f9fa 0px,
            #f8f9fa 80px,
            #e9ecef 80px,
            #e9ecef 160px
        ) !important;
    border-radius: 10px !important;
    z-index: 0 !important;
    animation: slideAnimation 3s infinite linear !important;
}

@keyframes slideAnimation {
    0% { background-position: 0px 0px; }
    100% { background-position: 160px 0px; }
}

/* Mobile responsive for slider - Stack images vertically or show fewer */
@media screen and (max-width: 768px) {
    #ed-797808219 {
        min-height: 120px !important;
    }
    
    .ed-slider.wv-bg,
    #ed-797808222 {
        height: 120px !important;
    }
    
    .slider-container {
        height: 120px !important;
    }
    
    /* Mobile - show only 3 images (HTML approach) */
    .slider-img.img4,
    .slider-img.img5 {
        display: none !important;
    }
    
    /* Mobile - show only 3 images (CSS approach) */
    .slider-container::before {
        width: calc(33.33% - 10px) !important;
        left: 5px !important;
    }
    
    .slider-container::after {
        width: calc(33.33% - 10px) !important;
        left: calc(33.33% + 2px) !important;
    }
    
    #ed-797808222::before {
        width: calc(33.33% - 10px) !important;
        left: calc(66.66% + 2px) !important;
    }
    
    /* Hide last two images on mobile */
    #ed-797808222::after,
    #ed-797808219 .background::before {
        display: none !important;
    }
}

@media screen and (max-width: 480px) {
    /* Very small screens - show only 2 images (HTML approach) */
    .slider-img.img3,
    .slider-img.img4,
    .slider-img.img5 {
        display: none !important;
    }
    
    /* Very small screens - show only 2 images (CSS approach) */
    .slider-container::before {
        width: calc(50% - 10px) !important;
        left: 5px !important;
    }
    
    .slider-container::after {
        width: calc(50% - 10px) !important;
        left: calc(50% + 2px) !important;
    }
    
    /* Hide third image on very small screens */
    #ed-797808222::before {
        display: none !important;
    }
}

/* ===== MINIMIZE SPACING BETWEEN RAW MATERIALS AND SOLUTION SECTIONS ===== */
/* Reduce spacing between Solution for Industries section (#ed-742282585) and Rare material solutions section (#ed-742282711) */
#ed-742282585 {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Also reduce spacing for the services container that contains raw materials cards */
#ed-742282597 {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Reduce spacing for video section container (we create parts) */
#ed-742282705 {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Reduce spacing for "we create parts" text section */
#ed-742282690 {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

#ed-742282711.preset-columns-two-v2-default {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* ===== VIDEO SECTION 2 - TWO COLUMN LAYOUT WITH BLACK BACKGROUND ===== */
/* Container styling for new 2-column Video Section 2 */
#ed-742282711.preset-columns-two-v2-default {
    margin: 0;
    padding: 0;
}

/* Reduce margin for mobile and minimize spacing between sections */
@media screen and (max-width: 767px) {
    #ed-742282585 {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
    
    #ed-742282597 {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
    
    #ed-742282705 {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
    
    #ed-742282690 {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
    
    #ed-742282711.preset-columns-two-v2-default {
        margin: 0 !important;
        padding-top: 0 !important;
    }
}

#ed-742282711.preset-columns-two-v2-default > .inner {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    align-items: stretch;
}

/* Video column (left side) */
#ed-742282714.columns-box.full-width {
    flex: 1 1 50%;
    min-height: 500px;
    position: relative;
}

/* Content column (right side) with BLACK background */
#ed-742282720.columns-box {
    flex: 1 1 50%;
    background-color: #000000 !important;
    display: flex;
    align-items: center;
}

#ed-742282720 > .inner {
    padding: 2rem;
    width: 100%;
}

/* Black background for inner container */
#ed-742282721.preset-contact-form-v3-background {
    background-color: #000000 !important;
}

/* White text on black background */
#ed-742282723 h3,
#ed-742282729 p {
    color: #faf8f8 !important;
     
}

/* Mobile responsive for Video Section 2 */
@media screen and (max-width: 768px) {
    #ed-742282711.preset-columns-two-v2-default > .inner {
        flex-direction: column;
    }
    
    #ed-742282714.columns-box.full-width,
    #ed-742282720.columns-box {
        flex: 1 1 100%;
        min-height: 300px;
    }
    
    #ed-742282720 > .inner {
        padding: 0.5rem;
    }
    
    /* Reduce inner container padding on mobile for wider text area */
    #ed-742282721 > .inner {
        padding: 1rem 0.5rem !important;
    }
    
    /* Make text area as wide as "The head office..." text */
    #ed-742282720 > .inner {
        padding: 0 !important;
    }
    
    #ed-742282721 {
        padding: 0 !important;
        margin: 0 !important;
    }
    
    #ed-742282721 > .inner {
        padding: 1rem !important;
    }
    
    #ed-742282723,
    #ed-742282729 {
        padding: 0 !important;
        margin: 0 !important;
    }
    
    #ed-742282729 p {
        margin: 0 !important;
        padding: 0 !important;
        text-align: center;
    }
    
    /* Copy exact styling from "The head office..." text (ed-981929455) */
    #ed-742282720.columns-box .inner {
        padding: 1rem !important;
    }
    
    /* Remove all nested container padding to match ed-981929455 structure */
    #ed-742282720 .ed-element.ed-container {
        padding: 0 !important;
        margin: 0 !important;
    }
    
    #ed-742282720 .ed-element.ed-container > .inner {
        padding: 0 !important;
    }

/* ===== VIDEO COLUMN STYLING (NO PARALLAX) ===== */
/* Standard video column styling without parallax */
#ed-742282714 {
    position: relative;
    overflow: hidden;
}

#ed-742282714 .background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#ed-742282714 .inner {
    position: relative;
    z-index: 2;
    height: 100%;
}

/* Ensure video fills the background area properly */
#ed-742282714 .background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== FOOTER CENTER POSITIONING - SIMPLE APPROACH ===== */
/* Center all footer content without hiding columns */
.footer-heimdall-content .inner {
    display: flex !important;
    justify-content: center !important;
    align-items: flex-start !important;
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 20px !important;
}

/* Make all footer boxes visible and centered */
.footer-heimdall-box {
    opacity: 1 !important;
    pointer-events: all !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    margin: 0 20px !important;
}

/* Fix icon and content positioning in center column */
.footer-heimdall-box .footer-heimdall-icon {
    text-align: center !important;
    margin: 0 auto 1rem auto !important;
    padding: 0 !important;
    display: block !important;
    width: 100% !important;
}

.footer-heimdall-box .inner {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100% !important;
    text-align: center !important;
}

.footer-heimdall-box .ed-text {
    margin: 0.5rem 0 0 0 !important;
    text-align: center !important;
    width: 100% !important;
}

/* Fix specific footer icon - FORCE CENTER ALIGNMENT */
#ed-742283035 {
    text-align: center !important;
    margin: 0 auto 1rem auto !important;
    display: block !important;
    width: 100% !important;
    position: relative !important;
}

#ed-742283035 a {
    display: block !important;
    text-align: center !important;
    margin: 0 auto !important;
}

#ed-742283035 svg {
    margin: 0 auto !important;
    display: block !important;
    text-align: center !important;
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
}

/* Additional centering for icon container */
.footer-heimdall-icon a {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
}

/* Force perfect centering ONLY for icon elements */
.footer-heimdall-box figure,
.footer-heimdall-box .ed-icon {
    float: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
    position: relative !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
}

/* FORCE TEXT MENU VISIBILITY - HIGH PRIORITY */
.footer-heimdall-box .ed-text,
#ed-742283041 {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    text-align: center !important;
    width: 100% !important;
    margin: 1rem auto 0 auto !important;
    color: inherit !important;
    font-size: inherit !important;
    line-height: 1.5 !important;
}

.footer-heimdall-box .ed-text p,
#ed-742283041 p {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin: 0.5rem auto !important;
    text-align: center !important;
    color: inherit !important;
}

.footer-heimdall-box .ed-text a,
#ed-742283041 a {
    display: inline !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: inherit !important;
    text-decoration: underline !important;
}

/* Footer container center alignment */
#ed-742282993,
#ed-742283029 {
    text-align: center !important;
}

/* CRITICAL: Ensure menu text is never hidden */
.footer-heimdall-box .scroll {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* === CUSTOM ABSOLUTE CENTER MODEL FOR DESKTOP === */
@media screen and (min-width: 769px) {
    
    /* STEP 1: Reset entire footer to basic state */
    #ed-742282990 * {
        box-sizing: border-box !important;
        margin: 0 !important;
        padding: 0 !important;
        float: none !important;
        position: static !important;
        transform: none !important;
    }
    
    /* STEP 2: FIX PARENT CONTAINER CENTER */
    #ed-742282990 {
        width: 100vw !important;
        margin: 0 auto !important;
        padding: 40px 0 !important;
        text-align: center !important;
        display: block !important;
        position: relative !important;
        left: 0 !important;
        right: 0 !important;
    }
    
    #ed-742282993 {
        width: 100% !important;
        max-width: 1200px !important;
        margin: 0 auto !important;
        padding: 0 !important;
        text-align: center !important;
        display: block !important;
        position: relative !important;
    }
    
    /* STEP 3: FIX CONTENT CONTAINER CENTER */
    .footer-heimdall-content {
        width: 100% !important;
        margin: 0 auto !important;
        text-align: center !important;
        display: block !important;
    }
    
    .footer-heimdall-content .inner {
        width: 100% !important;
        margin: 0 auto !important;
        padding: 0 !important;
        text-align: center !important;
        display: block !important;
        position: relative !important;
    }
    
    .footer-heimdall-box {
        display: none !important;
    }
    
    /* STEP 4: FIX CENTER BOX WITH CONSISTENT TEXT-ALIGN */
    .footer-heimdall-box:nth-child(2) {
        display: block !important;
        width: 400px !important;
        margin: 0 auto !important;
        text-align: center !important;
        background: transparent !important;
        position: relative !important;
        left: 0 !important;
        right: 0 !important;
    }
    
    .footer-heimdall-box:nth-child(2) .inner {
        display: block !important;
        width: 100% !important;
        margin: 0 auto !important;
        padding: 0 !important;
        text-align: center !important;
        position: relative !important;
    }
    
    /* FIX ALL CHILD ELEMENTS TEXT-ALIGN */
    .footer-heimdall-box:nth-child(2) * {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
        box-sizing: border-box !important;
    }
    
    /* STEP 5: AGGRESSIVE ELEMENT CENTER WITH CONSISTENT TEXT-ALIGN */
    #ed-742283014 {
        width: auto !important;
        max-width: 180px !important;
        display: table !important;
        text-align: center !important;
        margin: 0 auto 20px auto !important;
        padding: 0 !important;
        overflow: visible !important;
    }
    
    #ed-742283014 a {
        display: inline-block !important;
        width: 180px !important;
        height: auto !important;
        margin: 0 auto !important;
        text-align: center !important;
        overflow: hidden !important;
    }
    
    #ed-742283014 img {
        width: 180px !important;
        height: auto !important;
        display: block !important;
        margin: 0 auto !important;
        text-align: center !important;
    }
    
    /* EXTREME FIX: Force link area to exact logo size */
    #ed-742283014 a {
        display: table !important;
        width: auto !important;
        height: auto !important;
        margin: 0 auto !important;
        padding: 0 !important;
        border: 0 !important;
        background: none !important;
        position: relative !important;
        float: none !important;
        clear: both !important;
    }
    
    /* Removed debug border */
    
    #ed-742283014 img {
        border: 2px solid blue !important;
        background-color: rgba(0, 0, 255, 0.2) !important;
        display: block !important;
        width: 180px !important;
        height: auto !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    #ed-742283035 {
        width: 100% !important;
        display: block !important;
        text-align: center !important;
        margin: 0 auto 20px auto !important;
        padding: 0 !important;
    }
    
    #ed-742283035 a {
        display: block !important;
        width: 48px !important;
        margin: 0 auto !important;
        text-align: center !important;
    }
    
    #ed-742283035 svg {
        width: 48px !important;
        height: 48px !important;
        display: block !important;
        margin: 0 auto !important;
    }
    
    #ed-742283041 {
        width: 100% !important;
        text-align: center !important;
        margin: 0 auto !important;
        padding: 0 !important;
        display: block !important;
    }
    
    #ed-742283041 p {
        text-align: center !important;
        margin: 8px auto !important;
        width: 100% !important;
        display: block !important;
    }
    
    #ed-742283041 a {
        text-align: center !important;
        display: inline !important;
    }
}

/* MOBILE LAYOUT - Perfect Screen Center */
@media screen and (max-width: 768px) {
    .footer-heimdall-content {
        width: 100vw !important;
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .footer-heimdall-content .inner {
        display: flex !important;
        justify-content: center !important;
        flex-direction: column !important;
        align-items: center !important;
        padding: 20px !important;
        text-align: center !important;
        width: 100% !important;
        margin: 0 auto !important;
    }
    
    /* Hide first and third boxes on mobile */
    .footer-heimdall-box:first-child,
    .footer-heimdall-box:last-child {
        display: none !important;
    }
    
    /* Center box - full width center alignment */
    .footer-heimdall-box:nth-child(2) {
        width: 100% !important;
        max-width: none !important;
        margin: 0 auto !important;
        text-align: center !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }
    
    /* Perfect center for all mobile elements */
    .footer-heimdall-box:nth-child(2) * {
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    /* CRITICAL: Force visibility and perfect center on mobile */
    #ed-742283014,
    #ed-742283035,
    #ed-742283041,
    .footer-heimdall-box .ed-text,
    .footer-heimdall-box .ed-text p,
    .footer-heimdall-box .ed-text a {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        color: inherit !important;
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }
    
    .footer-heimdall-box .ed-text a {
        display: inline !important;
    }
}

/* Universal footer fixes for ALL screen sizes */
.footer-heimdall-box .inner {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
}

/* Override any potential hiding CSS */
#ed-742283041 * {
    display: revert !important;
    visibility: visible !important;
    opacity: 1 !important;
}

/* FORCE LOGO VISIBILITY - CRITICAL FIX */
#ed-742283014,
#ed-742283014 img,
#ed-742283014 a {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: auto !important;
    height: auto !important;
}

#ed-742283014 img {
    max-width: 180px !important;
    height: auto !important;
    margin: 0 auto !important;
}

/* Ensure logo container is visible */
.footer-heimdall-box .ed-image {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    text-align: center !important;
}

/* Force logo to load immediately without lazy loading issues */
.footer-heimdall-box .ed-image img {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    margin: 0 auto !important;
}

/* ===== PERFECT CENTER ALIGNMENT FOR ALL SCREEN SIZES ===== */
/* Ensure all footer elements are perfectly centered */
.footer-heimdall-box .inner {
    width: 100% !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}

/* Logo perfect center */
#ed-742283014 {
    width: 100% !important;
    text-align: center !important;
    margin-bottom: 15px !important;
}

/* Icon perfect center */
#ed-742283035 {
    width: 100% !important;
    text-align: center !important;
    margin-bottom: 15px !important;
}

/* Menu text perfect center */
#ed-742283041 {
    width: 100% !important;
    text-align: center !important;
}

/* AGGRESSIVE CENTER OVERRIDE - Remove all positioning conflicts */
.footer-heimdall-box * {
    float: none !important;
    position: relative !important;
    left: 0 !important;
    right: 0 !important;
    transform: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

/* DESKTOP SPECIFIC OVERRIDE */
@media screen and (min-width: 769px) {
    /* NUCLEAR OPTION: Reset everything in logo area */
    #ed-742283014,
    #ed-742283014 *,
    #ed-742283014 a,
    #ed-742283014 img {
        box-sizing: content-box !important;
        margin: 0 !important;
        padding: 0 !important;
        border: 0 !important;
        outline: 0 !important;
        font-size: 100% !important;
        vertical-align: baseline !important;
        background: transparent !important;
        float: none !important;
        position: static !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        bottom: auto !important;
    }
    
    /* Re-apply only necessary styles */
    #ed-742283014 {
        display: table !important;
        margin: 0 auto 20px auto !important;
    }
    
    #ed-742283014 a {
        display: table-cell !important;
    }
    
    #ed-742283014 img {
        display: block !important;
        width: 180px !important;
        height: auto !important;
        border: 2px solid blue !important;
        background: rgba(0, 0, 255, 0.2) !important;
    }
}

/* === STYLE FOR "WE CREATE PARTS" SECTION === */
/* CSS khusus untuk section "we create parts for international companies" agar memiliki dekorasi seperti RAW MATERIALS section */

#ed-742282690 {
    background-color: rgba(255, 190, 62, 0.345) !important;
    background-size: auto !important;
}

/* Memastikan background full-width di desktop seperti RAW MATERIALS section */
@media screen and (min-width: 768px) {
    #ed-742282690 {
        background-color: rgba(255, 190, 62, 0.345) !important;
        background-size: auto !important;
        padding: 4px 0 !important;
        border-radius: 0 !important;
        width: 100% !important;
        margin: 0 !important;
    }
}

@media screen and (max-width: 767px) {
    #ed-742282690 {
        background-color: rgba(255, 190, 62, 0.345) !important;
        background-size: auto !important;
        padding: 2px 12px !important;
        border-radius: 0 !important;
        margin-top: 0 !important;
        position: relative !important;
        z-index: 1 !important;
    }
    
    /* Pastikan tidak ada background coklat yang tumpang tindih */
    #ed-742282690 * {
        background-color: transparent !important;
    }
    
    /* Override untuk memastikan text tetap putih dan terlihat */
    #ed-742282690 h3 {
        background-color: transparent !important;
    }
}

/* Memastikan teks putih dan wrapping yang baik */
#ed-742282690 h3 {
    color: white !important;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3) !important;
    line-height: 1.3 !important;
    word-wrap: break-word !important;
    hyphens: auto !important;
}

/* Mengatur proporsi kolom untuk desktop */
@media screen and (min-width: 768px) {
    #ed-742282690 .inner {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
    }
    
    /* Kolom kiri dan kanan diperkecil lebih */
    #ed-742282690 .inner > div:first-child,
    #ed-742282690 .inner > div:last-child {
        flex: 0.2 !important;
    }
    
    /* Kolom tengah diperbesar lebih */
    #ed-742282693 {
        flex: 3.6 !important;
    }
}

/* Fallback display for images without animation */
.slider-container::before,
.slider-container::after,
#ed-797808222::before,
#ed-797808222::after,
#ed-797808219 .background::before {
    display: block !important;
    visibility: visible !important;
}

/* Debugging - make slider very visible */
.slider-container {
    border: 2px solid #007bff !important;
    background: linear-gradient(45deg, #f8f9fa, #e9ecef) !important;
    min-height: 200px !important;
}

/* Clean slider images - no debug borders */

/* Add position indicator for img5 */
.slider-img.img5::after {
    content: "IMG5 POSITION" !important;
    position: absolute !important;
    top: -25px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background: purple !important;
    color: white !important;
    padding: 2px 6px !important;
    font-size: 10px !important;
    font-weight: bold !important;
    border-radius: 3px !important;
    z-index: 1000 !important;
    white-space: nowrap !important;
}

/* Individual image positioning fixes for Flexbox */
.slider-img.img1,
.slider-img.img2,
.slider-img.img3,
.slider-img.img4,
.slider-img.img5 {
    flex: 1 1 0% !important;
    align-self: stretch !important;
    order: initial !important;
}

.slider-img.img1 { order: 1 !important; }
.slider-img.img2 { order: 2 !important; }
.slider-img.img3 { 
    order: 3 !important;
    /* Specific positioning fix for gears image */
    object-position: center center !important;
    transform-origin: center center !important;
    /* Ensure proper vertical alignment */
    align-self: center !important;
    margin-top: auto !important;
    margin-bottom: auto !important;
}
.slider-img.img4 { order: 4 !important; }
.slider-img.img5 { 
    order: 5 !important; 
    /* Position identification for img5 */
    position: relative !important;
}

/* Force visibility for debugging */
.slider-img {
    display: none !important; /* HIDDEN FOR DEPLOYMENT */
    visibility: hidden !important;
    animation: none !important; /* DISABLE ALL ANIMATIONS FOR DEPLOYMENT */
}

/* DISABLE ALL SLIDER PSEUDO-ELEMENTS FOR DEPLOYMENT */
.slider-container::before,
.slider-container::after,
#ed-797808222::before,
#ed-797808222::after,
#ed-797808219 .background::before {
    display: none !important;
    content: none !important;
    animation: none !important;
}

/* Fallback simple animations */
@keyframes fallbackSlideIn {
    0% { opacity: 0; transform: translateX(-20px); }
    100% { opacity: 1; transform: translateX(0); }
}

.fallback-animate-1 { animation: fallbackSlideIn 0.8s ease-out 0.1s both !important; }
.fallback-animate-2 { animation: fallbackSlideIn 0.8s ease-out 0.3s both !important; }
.fallback-animate-3 { animation: fallbackSlideIn 0.8s ease-out 0.5s both !important; }
.fallback-animate-4 { animation: fallbackSlideIn 0.8s ease-out 0.7s both !important; }
.fallback-animate-5 { animation: fallbackSlideIn 0.8s ease-out 0.9s both !important; }

/* Alternative approach - CSS-only trigger */
.slider-images-container:hover .slider-img {
    opacity: 1 !important;
    transform: translateX(0) scale(1) !important;
    transition: all 0.8s ease-out !important;
}

.slider-images-container:hover .slider-img.img1 { transition-delay: 0.1s !important; }
.slider-images-container:hover .slider-img.img2 { transition-delay: 0.3s !important; }
.slider-images-container:hover .slider-img.img3 { transition-delay: 0.5s !important; }
.slider-images-container:hover .slider-img.img4 { transition-delay: 0.7s !important; }
.slider-images-container:hover .slider-img.img5 { transition-delay: 0.9s !important; }

/* Force all images to be visible after page load */
.slider-images-container.force-visible .slider-img {
    opacity: 1 !important;
    transform: scale(1) !important;
}

/* Immediate visibility for debugging */
.debug-visible .slider-img {
    opacity: 0.7 !important;
    transform: scale(0.95) !important;
    transition: all 2s ease !important;
}

.debug-visible .slider-img.img1 { opacity: 1 !important; background-color: rgba(255,0,0,0.1) !important; }
.debug-visible .slider-img.img2 { opacity: 1 !important; background-color: rgba(0,255,0,0.1) !important; }
.debug-visible .slider-img.img3 { opacity: 1 !important; background-color: rgba(0,0,255,0.1) !important; }
.debug-visible .slider-img.img4 { opacity: 1 !important; background-color: rgba(255,165,0,0.1) !important; }
.debug-visible .slider-img.img5 { opacity: 1 !important; background-color: rgba(128,0,128,0.1) !important; }

/* Animation restart trigger class */
.slider-container.animate-restart .slider-img {
    animation-name: none !important;
}

.slider-container.animate-restart .slider-img.img1 {
    animation: slideInImage1 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s both !important;
}
.slider-container.animate-restart .slider-img.img2 {
    animation: slideInImage2 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s both !important;
}
.slider-container.animate-restart .slider-img.img3 {
    animation: slideInImage3 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s both !important;
}
.slider-container.animate-restart .slider-img.img4 {
    animation: slideInImage4 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.7s both !important;
}
.slider-container.animate-restart .slider-img.img5 {
    animation: slideInImage5 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.9s both !important;
}

/* Force slider containers to be visible */
#ed-797808219 {
    display: block !important;
    visibility: visible !important;
}

#ed-797808222 {
    display: block !important;
    visibility: visible !important;
}

/* Alternative approach - add visible content to slider */
.slider-container:empty::before {
    content: "🖼️ Loading Images..." !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    font-size: 16px !important;
    color: #666 !important;
    z-index: 0 !important;
}

/* Backup approach - use HTML img elements via CSS content */
.slider-container.backup-images::before {
    content: url('../images/0/17740261/space-Nj_ZzqZHqJ0Q1cBLv8WSFw.jpg') !important;
    position: absolute !important;
    top: 10px !important;
    left: 10px !important;
    width: calc(20% - 15px) !important;
    height: calc(100% - 20px) !important;
    object-fit: cover !important;
    border-radius: 6px !important;
    z-index: 1 !important;
}

/* Force background images to show */
.slider-container::before,
.slider-container::after,
#ed-797808222::before,
#ed-797808222::after,
#ed-797808219 .background::before {
    background-attachment: scroll !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
    background-size: cover !important;
    min-width: 50px !important;
    min-height: 50px !important;
}

/* HTML Images approach - more reliable with proper alignment */
.slider-images-container {
    position: absolute !important;
    top: 10px !important;
    left: 10px !important;
    right: 10px !important;
    bottom: 10px !important;
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: nowrap !important;
    align-items: center !important;
    justify-content: space-evenly !important;
    gap: 8px !important;
    z-index: 5 !important;
    /* Ensure consistent baseline */
    align-content: center !important;
}

.slider-img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center center !important;
    border-radius: 6px !important;
    box-shadow: 0 2px 6px rgba(0,0,0,0.2) !important;
    opacity: 0 !important;
    transform: scale(0.8) !important;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    display: block !important;
}

/* Uniform transitions for all images (same duration as img5) */
.slider-img.img1 { 
    animation-delay: 0.1s !important; 
    transition: all 2.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.1s !important;
}
.slider-img.img2 { 
    animation-delay: 0.4s !important; 
    transition: all 2.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.4s !important;
}
.slider-img.img3 { 
    animation-delay: 0.7s !important; 
    transition: all 2.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.7s !important;
}
.slider-img.img4 { 
    animation-delay: 1.0s !important; 
    transition: all 2.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) 1.0s !important;
}
.slider-img.img5 { 
    animation-delay: 1.3s !important; 
    transition: all 2.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) 1.3s !important;
}

/* Ensure smooth completion and proper alignment */
.slider-img {
    animation-fill-mode: both !important;
    animation-iteration-count: 1 !important;
    animation-direction: normal !important;
    backface-visibility: hidden !important;
    -webkit-backface-visibility: hidden !important;
    /* Ensure consistent sizing and alignment */
    min-height: 120px !important;
    max-height: 180px !important;
    aspect-ratio: 1 / 1 !important;
    position: relative !important;
}

/* Override aspect ratio for better fit */
@supports not (aspect-ratio: 1 / 1) {
    .slider-img {
        height: 150px !important;
        width: auto !important;
        max-width: 100% !important;
    }
}

/* Auto-trigger animations on load */
.slider-images-container.loaded .slider-img {
    opacity: 1 !important;
    transform: scale(1) !important;
}

/* Uniform animation for all images (same as img5) */
.slider-images-container .slider-img.img1 { 
    animation: slideInImage1 2.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.1s both !important; 
}
.slider-images-container .slider-img.img2 { 
    animation: slideInImage2 2.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.4s both !important; 
}
.slider-images-container .slider-img.img3 { 
    animation: slideInImage3 2.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) 0.7s both !important; 
}
.slider-images-container .slider-img.img4 { 
    animation: slideInImage4 2.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) 1.0s both !important; 
}
.slider-images-container .slider-img.img5 { 
    animation: slideInImage5 2.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) 1.3s both !important; 
}

/* Ensure final state is stable after animation */
.slider-img {
    animation-fill-mode: forwards !important;
    backface-visibility: hidden !important;
    -webkit-backface-visibility: hidden !important;
    transform-style: preserve-3d !important;
    will-change: transform, opacity !important;
}

/* Post-animation state lock - with higher specificity */
.slider-images-container .slider-img.img1,
.slider-images-container .slider-img.img2,
.slider-images-container .slider-img.img3,
.slider-images-container .slider-img.img4,
.slider-images-container .slider-img.img5 {
    /* Initial state before animation */
    opacity: 0 !important;
    transform: translateX(-40px) scale(0.8) !important;
}

/* Ensure animations start properly */
.slider-images-container .slider-img.img1:not(.no-animate),
.slider-images-container .slider-img.img2:not(.no-animate),
.slider-images-container .slider-img.img3:not(.no-animate),
.slider-images-container .slider-img.img4:not(.no-animate),
.slider-images-container .slider-img.img5:not(.no-animate) {
    animation-play-state: running !important;
    animation-fill-mode: both !important;
}

/* Apply same stability to CSS pseudo-elements */
.slider-container::before,
.slider-container::after,
#ed-797808222::before,
#ed-797808222::after,
#ed-797808219 .background::before {
    animation-fill-mode: forwards !important;
    backface-visibility: hidden !important;
    -webkit-backface-visibility: hidden !important;
    transform-style: preserve-3d !important;
}

/* Hover effects for HTML images */
@media screen and (min-width: 769px) {
    .slider-img:hover {
        transform: scale(1.05) !important;
        z-index: 10 !important;
        box-shadow: 0 8px 25px rgba(0,0,0,0.3) !important;
        transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
    }
}

/* Hover effect for desktop - updated selectors */
@media screen and (min-width: 769px) {
    .slider-container::before:hover,
    .slider-container::after:hover,
    #ed-797808222::before:hover,
    #ed-797808222::after:hover,
    #ed-797808219 .background::before:hover {
        transform: scale(1.05) !important;
        z-index: 10 !important;
        box-shadow: 0 8px 25px rgba(0,0,0,0.3) !important;
        transition: all 0.3s ease !important;
    }
}

/* ========================================
   CODEMYUI INFINITE SCROLLING IMAGE SLIDER
   ======================================== */

/* FORCE VISIBILITY FOR ALL PARENT CONTAINERS */
#ed-797808219 .background {
    display: block !important;
    visibility: visible !important;
    min-height: 200px !important;
}

/* Disable all old slider components for deployment */
.slider-container.slick-initialized,
.slider-images-container,
.slider-img,
.slider-container::before,
.slider-container::after,
#ed-797808222::before,
#ed-797808222::after,
#ed-797808219 .background::before {
    display: none !important;
    animation: none !important;
    content: none !important;
}

/* New CodeMyUI Infinite Slider */
#ed-797808222 .slider {
    display: block !important;
    position: relative !important;
    width: 100% !important;
    height: 200px !important;
    overflow: hidden !important;
    background: transparent !important;
}

.slider-track {
    display: flex !important;
    width: 4020px !important; 
    height: 180px !important; 
    gap: 2px !important; 
    position: relative !important;
    animation: slideImages 20s linear infinite !important;
}

#ed-797808222 .slider-track {
    display: flex !important;
    width: 4020px !important; 
    height: 200px !important; 
    gap: 2px !important; 
    animation: slideImages 20s linear infinite !important;
}

#ed-797808222 .slider-track img {
    width: 400px !important;
    height: 180px !important;
    object-fit: cover !important;
    flex-shrink: 0 !important;
    border-radius: 8px !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
}

/* Pause animation on hover for debugging - DISABLED FOR NOW */
/* #ed-797808222 .slider:hover .slider-track {
    animation-play-state: paused !important;
} */

/* Simple test animation */
@keyframes slideTest {
    0% { 
        transform: translateX(0px);
    }
    50% { 
        transform: translateX(-500px);
    }
    100% { 
        transform: translateX(-1000px);
    }
}

@keyframes slideImages {
    from { 
        transform: translateX(0);
    }
    to { 
        transform: translateX(-2010px); /* Move by 5 images width + gaps */
    }
}

/* Background image untuk bagian "we create..." - ULTRA SPECIFIC */
#ed-742282693 {
    background: url('../images/bg/hitam dan emas.jpg') center/cover no-repeat !important;
    position: relative !important;
    min-height: 300px !important;
    padding: 40px 20px !important;
}

/* Debug border removed for production */

/* Overlay untuk meningkatkan kontras text */
#ed-742282693::after {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    background: rgba(0, 0, 0, 0.4) !important;
    z-index: 1 !important;
    pointer-events: none !important;
}

/* Pastikan text di atas overlay */
#ed-742282693 .inner {
    position: relative !important;
    z-index: 10 !important;
}

/* Pastikan headline juga di atas */
#ed-742282696 {
    position: relative !important;
    z-index: 11 !important;
}

/* Responsif untuk mobile */
@media screen and (max-width: 768px) {
    #ed-742282693 {
        background-attachment: scroll !important;
        min-height: 250px !important;
        padding: 30px 15px !important;
    }
}
}

