.elementor-1609 .elementor-element.elementor-element-643f7fb{--display:flex;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-2044501 *//* --- BASE STYLES --- */
* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Roboto, sans-serif; }
body { background: #020617; }

/* --- HEADER --- */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 6%;
    height: 95px;
    background: #020617;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(56, 189, 248, 0.2);
}

/* --- SPINNING LOGO --- */
.logo { display: flex; align-items: center; gap: 15px; text-decoration: none; color: white; }
.logo img { 
    height: 60px; width: 60px; border-radius: 50%; border: 2px solid #38bdf8; 
    background: #fff; padding: 2px;
    animation: rotateLogo 10s linear infinite; 
    transition: 0.3s;
}
.logo:hover img { animation-duration: 3s; box-shadow: 0 0 20px rgba(56, 189, 248, 0.5); }

@keyframes rotateLogo {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.logo span { font-weight: 800; font-size: 1.7rem; letter-spacing: 1px; }

/* --- NAVBAR --- */
.navbar ul { display: flex; list-style: none; gap: 15px; align-items: center; }
.nav-item { position: relative; display: flex; align-items: center; }

.navbar a {
    color: #cbd5e1;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 5px;
    transition: 0.3s;
}
.navbar a:hover { color: #38bdf8; }

.arrow-toggle {
    cursor: pointer;
    padding: 10px 8px;
    color: #38bdf8;
    font-size: 14px;
    transition: transform 0.3s ease;
}
.active-link .arrow-toggle { transform: rotate(180deg); }

/* --- DROPDOWNS (Mega Menus) --- */
.mega-menu, .product-menu, .blog-menu {
    position: absolute; left: 0; top: 95px; width: 100%; background: #020617;
    padding: 45px 10%; display: none; grid-template-columns: repeat(4, 1fr);
    gap: 30px; border-top: 1px solid rgba(56, 189, 248, 0.2);
    box-shadow: 0 30px 50px rgba(0,0,0,0.8); z-index: 999;
    animation: slideIn 0.3s ease;
}
.product-menu, .blog-menu { grid-template-columns: repeat(3, 1fr); }

.mega-menu.active, .product-menu.active, .blog-menu.active { display: grid; }

@keyframes slideIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.mega-col h4 { color: #38bdf8; margin-bottom: 15px; font-size: 13px; text-transform: uppercase; letter-spacing: 1px; }
.mega-col a { display: block; margin: 10px 0; color: #94a3b8; font-size: 14px; text-decoration: none; transition: 0.2s; }
.mega-col a:hover { color: white; transform: translateX(5px); }

/* --- MOBILE --- */
.menu-toggle { display: none; font-size: 32px; cursor: pointer; color: #38bdf8; }

@media(max-width: 1000px) {
    .menu-toggle { display: block; }
    .navbar {
        position: fixed; top: 95px; left: -100%; width: 100%; height: calc(100vh - 95px);
        background: #020617; transition: 0.4s; overflow-y: auto;
    }
    .navbar.active { left: 0; }
    .navbar ul { flex-direction: column; padding: 25px; align-items: flex-start; gap: 5px; }
    .navbar ul li { width: 100%; border-bottom: 1px solid rgba(255,255,255,0.05); }
    .nav-item { width: 100%; justify-content: space-between; }
    .mega-menu, .product-menu, .blog-menu { position: relative; top: 0; grid-template-columns: 1fr; background: #0f172a; padding: 20px; box-shadow: none; border: none; }
}/* End custom CSS */