.elementor-3540 .elementor-element.elementor-element-c3c139e > .elementor-container{max-width:1600px;}.elementor-3540 .elementor-element.elementor-element-c3c139e{box-shadow:0px 0px 55px 0px rgba(0, 0, 0, 0.16);}.elementor-3540 .elementor-element.elementor-element-4bf6bfe{width:var( --container-widget-width, 118.729% );max-width:118.729%;--container-widget-width:118.729%;--container-widget-flex-grow:0;}.elementor-3540 .elementor-element.elementor-element-dd959b1 > .elementor-container{max-width:1600px;}.elementor-3540 .elementor-element.elementor-element-d8bbb1c{width:var( --container-widget-width, 118.729% );max-width:118.729%;--container-widget-width:118.729%;--container-widget-flex-grow:0;}.elementor-3540 .elementor-element.elementor-element-e9ed495{box-shadow:0px 0px 48px 4px rgba(0, 0, 0, 0.05);}@media(max-width:1110px){.elementor-3540 .elementor-element.elementor-element-e9ed495 > .elementor-container{max-width:791px;}}/* Start custom CSS for html, class: .elementor-element-4bf6bfe *//* Root Variables */
:root {
    --desktop-primary: #6B21A8;
    --desktop-primary-light: #8B5CF6;
    --desktop-primary-dark: #581C87;
    --desktop-accent: #FF5C00;
    --desktop-accent-hover: #FF7A29;
    --desktop-text: #1E293B;
    --desktop-text-light: #64748B;
    --desktop-card-bg: rgba(255, 255, 255, 0.85);
    --desktop-card-shadow: 0 10px 30px rgba(107, 33, 168, 0.1);
    --animation-timing: cubic-bezier(0.16, 1, 0.3, 1);
}

/* Animation Keyframes */
@keyframes floatLogo {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(2px, -2px) rotate(0.5deg); }
    50% { transform: translate(0, -4px) rotate(-0.5deg); }
    75% { transform: translate(-2px, -2px) rotate(0.25deg); }
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.95) translateY(-10px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes shine {
    0% {
        transform: translateX(-100%) skewX(-15deg);
    }
    100% {
        transform: translateX(200%) skewX(-15deg);
    }
}

@keyframes pulseButton {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.02);
    }
}

/* Main Container */
.topbar {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Container */
.topbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.25rem;
    height: 5rem;
}

/* Logo Styles */
.topbar-logo {
    flex-shrink: 0;
    animation: floatLogo 8s ease-in-out infinite;
    transition: all 0.3s var(--animation-timing);
    position: relative;
}

.topbar-logo::after {
    content: '';
    position: absolute;
    inset: -10px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, rgba(139, 92, 246, 0) 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 50%;
    z-index: -1;
}

.topbar-logo:hover {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.topbar-logo:hover::after {
    opacity: 1;
}

.topbar-logo img {
    height: 3.5rem;
    width: auto;
    filter: drop-shadow(0 4px 6px rgba(107, 33, 168, 0.2));
    transition: filter 0.3s ease;
    display: block;
}

.topbar-logo:hover img {
    filter: drop-shadow(0 6px 12px rgba(107, 33, 168, 0.3));
}

/* Links Container */
.topbar-links {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    margin: 0 2rem;
}

/* Individual Links */
.topbar-link {
    color: var(--desktop-text);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.5rem 0;
    position: relative;
    transition: all 0.3s var(--animation-timing);
    animation: fadeInScale 0.5s var(--animation-timing);
    animation-fill-mode: both;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

.topbar-link:nth-child(1) { animation-delay: 0.2s; }
.topbar-link:nth-child(2) { animation-delay: 0.3s; }
.topbar-link:nth-child(3) { animation-delay: 0.4s; }

.topbar-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--desktop-primary-light), var(--desktop-primary));
    transform: scaleX(0);
    transition: transform 0.3s var(--animation-timing);
    transform-origin: right;
    opacity: 0.8;
}

.topbar-link:hover {
    color: var(--desktop-primary);
    transform: translateY(-1px);
}

.topbar-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Actions Container */
.topbar-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: fadeInScale 0.5s var(--animation-timing);
    animation-delay: 0.5s;
    animation-fill-mode: both;
}

/* Button Styles */
.topbar-button {
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s var(--animation-timing);
    position: relative;
    overflow: hidden;
    z-index: 1;
    letter-spacing: 0.02em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

.topbar-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.2) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transition: all 0.6s ease;
    z-index: -1;
}

.topbar-button:hover::before {
    animation: shine 1s ease-in-out;
}

/* Primary Button */
.topbar-button.primary {
    background: linear-gradient(135deg, var(--desktop-accent), var(--desktop-accent-hover));
    color: white;
    box-shadow: 0 4px 15px rgba(255, 92, 0, 0.25);
}

.topbar-button.primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(255, 92, 0, 0.35);
    animation: pulseButton 2s infinite;
}

/* Outline Button */
.topbar-button.outline {
    border: 2px solid var(--desktop-primary);
    color: var(--desktop-primary);
    background: transparent;
    box-shadow: 0 4px 15px rgba(107, 33, 168, 0.1);
}

.topbar-button.outline:hover {
    background: rgba(107, 33, 168, 0.05);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(107, 33, 168, 0.2);
    border-color: var(--desktop-primary-light);
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-d8bbb1c *//* Root Variables */
:root {
    --mobile-primary: #6B21A8;
    --mobile-primary-light: #8B5CF6;
    --mobile-primary-dark: #581C87;
    --mobile-accent: #FF5C00;
    --mobile-accent-hover: #FF7A29;
    --mobile-text: #1E293B;
    --mobile-text-light: #64748B;
    --mobile-card-bg: rgba(255, 255, 255, 0.85);
    --mobile-card-shadow: 0 10px 30px rgba(107, 33, 168, 0.1);
    --animation-timing: cubic-bezier(0.16, 1, 0.3, 1);
    --mobile-height-xl: 4rem;    /* 768px */
    --mobile-height-lg: 3.5rem;  /* 600px */
    --mobile-height-md: 3rem;    /* 425px */
    --mobile-height-sm: 2.75rem; /* 375px */
    --mobile-height-xs: 2.5rem;  /* 320px */
}

/* Main Container */
.topbar-mobile {
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border-bottom: 1px solid rgba(107, 33, 168, 0.1);
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Container */
.topbar-mobile-container {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 768px;
    margin: 0 auto;
    padding: 0.75rem 1rem;
}

/* Logo Styles */
.topbar-mobile-logo {
    display: flex;
    justify-content: center;
    padding: 0.25rem 0;
}

.topbar-mobile-logo img {
    height: 2.5rem;
    width: auto;
    filter: drop-shadow(0 2px 4px rgba(107, 33, 168, 0.2));
    transition: filter 0.3s ease;
}

/* Links Container */
.topbar-mobile-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 0.25rem 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

.topbar-mobile-links::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

/* Individual Links */
.topbar-mobile-link {
    color: var(--mobile-text);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    padding: 0.25rem 0;
    position: relative;
    transition: all 0.3s var(--animation-timing);
    white-space: nowrap;
}

.topbar-mobile-link::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--mobile-primary-light), var(--mobile-primary));
    transform: scaleX(0);
    transition: transform 0.3s var(--animation-timing);
    transform-origin: right;
    opacity: 0.8;
}

.topbar-mobile-link:hover {
    color: var(--mobile-primary);
}

.topbar-mobile-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Actions Container */
.topbar-mobile-actions {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.25rem 0;
}

/* Button Styles */
.topbar-mobile-button {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.8125rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s var(--animation-timing);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.02em;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
}

/* Primary Button */
.topbar-mobile-button.primary {
    background: linear-gradient(135deg, var(--mobile-accent), var(--mobile-accent-hover));
    color: white;
    box-shadow: 0 2px 8px rgba(255, 92, 0, 0.25);
}

.topbar-mobile-button.primary:active {
    transform: translateY(1px);
    box-shadow: 0 1px 4px rgba(255, 92, 0, 0.35);
}

/* Outline Button */
.topbar-mobile-button.outline {
    border: 1.5px solid var(--mobile-primary);
    color: var(--mobile-primary);
    background: transparent;
    box-shadow: 0 2px 8px rgba(107, 33, 168, 0.1);
}

.topbar-mobile-button.outline:active {
    background: rgba(107, 33, 168, 0.05);
    transform: translateY(1px);
    box-shadow: 0 1px 4px rgba(107, 33, 168, 0.2);
}

/* Responsive Styles */
@media (max-width: 768px) {
    .topbar-mobile-container {
        padding: 0.75rem;
    }
}

@media (max-width: 600px) {
    .topbar-mobile-container {
        padding: 0.625rem;
        gap: 0.625rem;
    }
    
    .topbar-mobile-logo img {
        height: 2.25rem;
    }
    
    .topbar-mobile-link {
        font-size: 0.8125rem;
    }
    
    .topbar-mobile-button {
        padding: 0.4375rem 0.875rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 425px) {
    .topbar-mobile-container {
        padding: 0.5rem;
        gap: 0.5rem;
    }
    
    .topbar-mobile-logo img {
        height: 2rem;
    }
    
    .topbar-mobile-links {
        gap: 0.875rem;
    }
    
    .topbar-mobile-link {
        font-size: 0.75rem;
    }
    
    .topbar-mobile-button {
        padding: 0.375rem 0.75rem;
        font-size: 0.75rem;
    }
}

@media (max-width: 375px) {
    .topbar-mobile-container {
        padding: 0.5rem 0.375rem;
        gap: 0.375rem;
    }
    
    .topbar-mobile-logo img {
        height: 1.875rem;
    }
    
    .topbar-mobile-links {
        gap: 0.75rem;
    }
    
    .topbar-mobile-button {
        padding: 0.375rem 0.625rem;
        font-size: 0.6875rem;
    }
}

@media (max-width: 320px) {
    .topbar-mobile-container {
        padding: 0.375rem;
        gap: 0.375rem;
    }
    
    .topbar-mobile-logo img {
        height: 1.75rem;
    }
    
    .topbar-mobile-links {
        gap: 0.625rem;
    }
    
    .topbar-mobile-link {
        font-size: 0.6875rem;
    }
    
    .topbar-mobile-button {
        padding: 0.3125rem 0.5625rem;
        font-size: 0.6875rem;
    }
}/* End custom CSS */