.elementor-352 .elementor-element.elementor-element-89687e2{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-352 .elementor-element.elementor-element-89687e2:not(.elementor-motion-effects-element-type-background), .elementor-352 .elementor-element.elementor-element-89687e2 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#101010;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}@media(max-width:767px){.elementor-352 .elementor-element.elementor-element-89687e2{--width:500px;--min-height:52px;}}/* Start custom CSS for html, class: .elementor-element-96bca45 *//* --- HEADER FINAL STYLING --- */

/* Basic Header Style */
.main-header {
    background-color: #000000;
    padding: 10px 0; /* Padding thori kam ki hai */
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo */
.logo img {
    max-height: 55px; /* Logo thora sa bara kiya hai */
    display: block;
}

/* Right side ka poora hissa (Menu + Icons) */
.main-nav {
    display: flex;
    align-items: center;
}

/* Menu ke links (UL tag) */
.nav-links {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
}

/* Har ek menu link (Home, Products, etc.) */
.nav-links a {
    color: #ED562B;
    text-decoration: none;
    font-size: 16px;
    font-weight: bold;
    white-space: nowrap; /* Yeh "About Us" ko tootne se rokega */
    padding: 20px 15px; /* Achi spacing ke liye padding */
    border-top: 3px solid transparent; /* Hover effect ke liye transparent border */
    transition: all 0.3s ease;
}

/* Menu link par mouse le jaane ka effect */
.nav-links a:hover {
    color: #ffffff;
    border-top-color: #ED562B; /* Upar orange line show hogi */
}

/* Social icons ka section */
.social-icons {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-left: 20px; /* Menu se faasla */
    border-left: 1px solid #444; /* Menu aur icons ke beech vertical line */
    margin-left: 20px;
}

.social-icons a {
    color: #ED562B;
    font-size: 20px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    color: #ffffff;
    transform: translateY(-2px); /* Icon thora upar move hoga */
}

/* Hamburger Menu Icon */
.hamburger-menu {
    display: none;
    cursor: pointer;
}

.hamburger-menu .bar {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    margin: 5px 0;
}

/* --- RESPONSIVE STYLING --- */
@media (max-width: 1024px) {
    .main-nav {
        display: none;
        position: fixed;
        top: 85px; /* Header height ke hisab se adjust karein */
        left: 0;
        width: 100%;
        height: calc(100vh - 85px);
        background-color: rgba(0, 0, 0, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 50px;
    }

    .main-nav.active {
        display: flex;
    }

    .nav-links {
        flex-direction: column;
        text-align: center;
        gap: 20px;
        padding: 0;
    }
    
    .nav-links a {
        padding: 10px 20px;
        border-top: none; /* Mobile par border effect nahi hoga */
        font-size: 24px;
    }

    .social-icons {
        margin-left: 0;
        padding-left: 0;
        border-left: none; /* Mobile par vertical line nahi hogi */
        gap: 30px;
    }
    
    .social-icons a {
        font-size: 28px;
    }

    .hamburger-menu {
        display: block;
    }
}/* End custom CSS */