.elementor-580 .elementor-element.elementor-element-aa6e075{--display:flex;}.elementor-580 .elementor-element.elementor-element-aa6e075:not(.elementor-motion-effects-element-type-background), .elementor-580 .elementor-element.elementor-element-aa6e075 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#000000;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}@media(min-width:768px){.elementor-580 .elementor-element.elementor-element-aa6e075{--content-width:1600px;}}/* Start custom CSS for html, class: .elementor-element-700f519 *//* --- Root Variables & Theme --- */
:root {
    --primary-bg: #000000;
    --accent-purple: #5F2E8E; 
    --dark-purple: #3e1e5e;   
    --text-white: #ffffff;
    --glass-bg: rgba(10, 10, 10, 0.98); 
}

/* --- Global Header Styling --- */
.pro-header {
    background: var(--primary-bg);
    width: 100%;
    border-bottom: 1px solid #1a1a1a;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 2000;
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 25px;
}

/* --- Logo Styling --- */
.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
}

.logo img {
    height: 40px;
    filter: brightness(0) invert(1);
}

.logo-text {
    color: white;
    font-weight: 800;
    font-size: 20px;
    letter-spacing: 1px;
}

.purple { color: var(--accent-purple); }

/* --- Desktop Navigation --- */
.nav-desktop {
    display: flex;
    gap: 25px;
}

.nav-desktop a {
    color: #bbb;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: 0.3s;
}

.nav-desktop a:hover {
    color: var(--accent-purple);
}

.actions-desktop {
    display: flex;
    gap: 15px;
}

/* --- Button Components --- */
.btn-fill {
    background: linear-gradient(135deg, var(--dark-purple), var(--accent-purple));
    color: white !important;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(95, 46, 142, 0.4); 
    transition: all 0.3s ease;
    display: inline-block;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-fill:hover {
    box-shadow: 0 0 20px rgba(95, 46, 142, 0.7);
    transform: translateY(-2px);
}

.btn-outline {
    border: 1.5px solid var(--accent-purple);
    color: #ffffff !important;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-block;
    cursor: pointer;
    text-align: center;
}

.btn-outline:hover {
    background: rgba(95, 46, 142, 0.2);
}

/* --- Mobile Menu Overlay (Fully Centered) --- */
.nav-mobile {
    position: fixed;
    top: -110vh; /* Hidden off-screen */
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--glass-bg);
    display: flex;
    flex-direction: column;
    align-items: center;    /* Horizontal Center */
    justify-content: center;  /* Vertical Center */
    gap: 20px;
    transition: top 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 1000;
    text-align: center;
}

.nav-mobile.open {
    top: 0;
}

.nav-mobile a {
    color: white;
    font-size: 28px;
    text-decoration: none;
    font-weight: 700;
    width: 100%;
    padding: 10px 0;
    transition: 0.3s;
}

.nav-mobile a:hover {
    color: var(--accent-purple);
}

.mobile-actions {
    display: flex;
    flex-direction: column;
    align-items: center; /* Centers the button width-wise */
    gap: 15px;
    margin-top: 30px;
    width: 100%;
}

/* Uniform button width for centered mobile design */
.mobile-actions .btn-fill, 
.mobile-actions .btn-outline {
    width: 85%;
    max-width: 320px;
}

/* --- Mobile Trigger (Hamburger) --- */
.mobile-trigger {
    display: none;
    cursor: pointer;
    z-index: 2100;
    padding: 10px;
}

.bar {
    width: 30px;
    height: 2px;
    background-color: white;
    margin: 6px 0;
    transition: 0.4s;
}

/* --- Responsive Breakpoints --- */
@media (max-width: 1024px) {
    .nav-desktop, 
    .actions-desktop {
        display: none;
    }

    .mobile-trigger {
        display: block;
    }

    /* Animation: Hamburger to 'X' */
    .mobile-trigger.active .bar:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }
    .mobile-trigger.active .bar:nth-child(2) {
        opacity: 0;
    }
    .mobile-trigger.active .bar:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -7px);
    }
}/* End custom CSS */


