.elementor-51379 .elementor-element.elementor-element-cc0fa4e{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.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-48642bc *//* ===============================
   Header Specific Styles
================================ */

/* Glass Navigation */
.glass-nav {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

/* ===============================
   Logo Banner (UPDATED)
================================ */

.clip-logo-arrow {
    position: relative;
    background: #fff; /* solid black background */
    clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
    z-index: 1;
}

/* Gradient border that follows clip-path */
.clip-logo-arrow::before {
    content: "";
    position: absolute;
    inset: 0;
    background: #000;
    clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
    padding: 2px; /* border thickness */
    z-index: -1;
}

/* ===============================
   Mobile Responsiveness
================================ */

@media (max-width: 768px) {
    .logo-banner-container {
        width: 120px !important;
        height: 140px !important;
        padding-bottom: 5px !important;
    }

    .logo-banner-container img {
        width: 80% !important;
    }
}

/* ===============================
   Mobile Menu Overlay
================================ */

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 200;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    padding: 100px 40px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-menu-overlay.active {
    right: 0;
}

.mobile-menu-link {
    font-size: 1.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    margin-bottom: 2rem;
    font-family: 'Oswald', sans-serif;
    transition: color 0.3s ease;
}

.mobile-menu-link:hover {
    color: #0085ca;
}

/* Blur background when menu is active */
.menu-open-blur {
    filter: blur(5px);
    pointer-events: none;
}

/* Hamburger Icon Animation */
.mobile-toggle-btn.active i::before {
    content: "\f00d";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
}

/* Overflow Hidden Utility */
.overflow-hidden {
    overflow: hidden;
}

/* ===============================
   Premium Button
================================ */

.btn-premium {
    background: linear-gradient(to right, #0085ca, #3b82f6);
    color: white;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    padding: 12px 30px;
    border-radius: 12px;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 133, 202, 0.4);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-premium::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, #3b82f6, #0085ca);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.btn-premium:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 25px rgba(0, 133, 202, 0.6);
}

.btn-premium:hover::before {
    opacity: 1;
}

.btn-premium:active {
    transform: translateY(1px) scale(0.98);
}/* End custom CSS */