.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-9f199f8 */.df-navbar-section {
    background-color: #000000;
    border-bottom: 1px solid #1f1f26;
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.df-nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo Size Fix for Desktop (Yahan height badha di hai) */
.df-logo-box img {
    height: 70px; /* Desktop par logo size bada karne ke liye yahan change karein */
    width: auto;
    display: block;
    object-fit: contain;
}

.df-nav-menu ul {
    list-style: none;
    display: flex;
    gap: 30px;
    margin: 0;
    padding: 0;
    align-items: center;
}

.df-nav-menu ul li a {
    text-decoration: none;
    color: #e0e0e6;
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.df-nav-menu ul li a:hover {
    color: #00c6ff;
    text-shadow: 0 0 10px rgba(0, 198, 255, 0.4);
}

/* Mobile Menu Toggle Icon */
.df-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 28px;
    height: 20px;
    cursor: pointer;
}

.df-menu-toggle span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Responsive Styles for Mobile Devices */
@media (max-width: 768px) {
    .df-nav-container {
        padding: 12px 20px;
    }

    /* Logo Size Fix for Mobile */
    .df-logo-box img {
        height: 65px; /* Mobile par logo size set karne ke liye yahan change karein */
    }

    .df-menu-toggle {
        display: flex;
    }

    .df-nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #111115;
        border-bottom: 1px solid #22222a;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease-in-out;
        box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    }

    .df-nav-menu.active {
        max-height: 300px;
    }

    .df-nav-menu ul {
        flex-direction: column;
        gap: 0;
        padding: 10px 0;
    }

    .df-nav-menu ul li {
        width: 100%;
        text-align: center;
    }

    .df-nav-menu ul li a {
        display: block;
        padding: 15px;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    /* Hamburger Animation to 'X' */
    .df-menu-toggle.open span:nth-child(1) {
        transform: translateY(8.5px) rotate(45deg);
    }
    .df-menu-toggle.open span:nth-child(2) {
        opacity: 0;
    }
    .df-menu-toggle.open span:nth-child(3) {
        transform: translateY(-8.5px) rotate(-45deg);
    }
}/* End custom CSS */