.elementor-20 .elementor-element.elementor-element-ef62f85{--display:flex;}/* Start custom CSS for html, class: .elementor-element-4f27717 */* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    overflow: hidden;
}

.container {
    height: 100vh;
    width: 100vw;
    background: linear-gradient(135deg, #1e3a8a 0%, #312e81 50%, #1e40af 100%);
    position: relative;
    overflow: hidden;
}

/* Animated Background Elements */
.bg-animations {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 1;
}

.bg-blob {
    position: absolute;
    border-radius: 50%;
    mix-blend-mode: multiply;
    filter: blur(60px);
    opacity: 0.2;
    animation: pulse 4s ease-in-out infinite;
}

.bg-blob-1 {
    top: -160px;
    right: -160px;
    width: 384px;
    height: 384px;
    background: #60a5fa;
    animation-delay: 0s;
}

.bg-blob-2 {
    bottom: -160px;
    left: -160px;
    width: 384px;
    height: 384px;
    background: #22d3ee;
    animation-delay: 2s;
}

.bg-blob-3 {
    top: 33.333333%;
    left: 33.333333%;
    width: 320px;
    height: 320px;
    background: #818cf8;
    opacity: 0.15;
    animation-delay: 4s;
}

.bg-blob-4 {
    bottom: 33.333333%;
    right: 33.333333%;
    width: 288px;
    height: 288px;
    background: #0ea5e9;
    opacity: 0.15;
    animation-delay: 1s;
}

/* Desktop Layout */
.desktop-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: 100%;
    position: relative;
    z-index: 10;
}

.mobile-layout {
    display: none;
}

.logo-section {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(16px);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.7s ease;
}

.logo-section:first-child {
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.logo-section:hover {
    background: rgba(255, 255, 255, 0.1);
}

.logo-bg-overlay {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.7s ease;
}

.logo-section-1 .logo-bg-overlay {
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.1) 0%, rgba(34, 211, 238, 0.1) 100%);
}

.logo-section-2 .logo-bg-overlay {
    background: linear-gradient(135deg, rgba(129, 140, 248, 0.1) 0%, rgba(59, 130, 246, 0.1) 100%);
}

.logo-section:hover .logo-bg-overlay {
    opacity: 1;
}

.logo-box {
    position: relative;
    border: 3px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(24px);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 64px;
    width: 320px;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(1);
    transition: all 0.7s ease;
}

.logo-section:hover .logo-box {
    transform: scale(1.05);
    border-color: rgba(255, 255, 255, 0.4);
}

.logo-section-1:hover .logo-box {
    box-shadow: 0 25px 50px -12px rgba(59, 130, 246, 0.3);
    border-color: rgba(147, 197, 253, 0.5);
}

.logo-section-2:hover .logo-box {
    box-shadow: 0 25px 50px -12px rgba(129, 140, 248, 0.3);
    border-color: rgba(165, 180, 252, 0.5);
}

.logo-text {
    font-size: 3rem;
    font-weight: bold;
    color: white;
    letter-spacing: 0.05em;
    transition: color 0.5s ease;
}

.logo-section-1:hover .logo-text {
    color: #93c5fd;
}

.logo-section-2:hover .logo-text {
    color: #a5b4fc;
}

/* Decorative Dots */
.decorative-dots {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.dot {
    position: absolute;
    border-radius: 50%;
}

.logo-section-1 .dot:nth-child(1) {
    top: 80px;
    left: 80px;
    width: 16px;
    height: 16px;
    background: rgba(147, 197, 253, 0.3);
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.logo-section-1 .dot:nth-child(2) {
    bottom: 128px;
    right: 128px;
    width: 12px;
    height: 12px;
    background: rgba(34, 211, 238, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.logo-section-1 .dot:nth-child(3) {
    top: 33.333333%;
    right: 80px;
    width: 8px;
    height: 8px;
    background: rgba(129, 140, 248, 0.5);
    animation: bounce 1s infinite;
}

.logo-section-2 .dot:nth-child(1) {
    top: 128px;
    right: 80px;
    width: 16px;
    height: 16px;
    background: rgba(165, 180, 252, 0.3);
    animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.logo-section-2 .dot:nth-child(2) {
    bottom: 80px;
    left: 128px;
    width: 12px;
    height: 12px;
    background: rgba(96, 165, 250, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

.logo-section-2 .dot:nth-child(3) {
    bottom: 33.333333%;
    left: 80px;
    width: 8px;
    height: 8px;
    background: rgba(14, 165, 233, 0.5);
    animation: bounce 1s infinite;
}

/* Mobile Layout */
@media (max-width: 768px) {
    .desktop-layout {
        display: none;
    }
    
    .mobile-layout {
        display: grid;
        grid-template-rows: 1fr 1fr;
        height: 100%;
        position: relative;
        z-index: 10;
    }
    
    .logo-section-mobile {
        position: relative;
        background: rgba(255, 255, 255, 0.05);
        backdrop-filter: blur(16px);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.7s ease;
    }
    
    .logo-section-mobile:first-child {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .logo-section-mobile:hover {
        background: rgba(255, 255, 255, 0.1);
    }
    
    .logo-section-mobile:hover .logo-bg-overlay {
        opacity: 1;
    }
    
    .logo-box-mobile {
        position: relative;
        border: 3px solid rgba(255, 255, 255, 0.2);
        backdrop-filter: blur(24px);
        background: rgba(255, 255, 255, 0.05);
        border-radius: 24px;
        padding: 48px;
        width: 256px;
        height: 256px;
        display: flex;
        align-items: center;
        justify-content: center;
        transform: scale(1);
        transition: all 0.7s ease;
    }
    
    .logo-section-mobile:hover .logo-box-mobile {
        transform: scale(1.05);
        border-color: rgba(255, 255, 255, 0.4);
    }
    
    .logo-section-mobile.logo-section-1:hover .logo-box-mobile {
        box-shadow: 0 25px 50px -12px rgba(59, 130, 246, 0.3);
        border-color: rgba(147, 197, 253, 0.5);
    }
    
    .logo-section-mobile.logo-section-2:hover .logo-box-mobile {
        box-shadow: 0 25px 50px -12px rgba(129, 140, 248, 0.3);
        border-color: rgba(165, 180, 252, 0.5);
    }
    
    .logo-text-mobile {
        font-size: 2.25rem;
        font-weight: bold;
        color: white;
        letter-spacing: 0.05em;
        transition: color 0.5s ease;
    }
    
    .logo-section-mobile.logo-section-1:hover .logo-text-mobile {
        color: #93c5fd;
    }
    
    .logo-section-mobile.logo-section-2:hover .logo-text-mobile {
        color: #a5b4fc;
    }
    
    .decorative-dots-mobile {
        position: absolute;
        inset: 0;
        pointer-events: none;
    }
    
    .logo-section-mobile .dot:nth-child(1) {
        top: 40px;
        left: 40px;
        width: 12px;
        height: 12px;
        background: rgba(147, 197, 253, 0.3);
        animation: ping 2s cubic-bezier(0, 0, 0.2, 1) infinite;
    }
    
    .logo-section-mobile .dot:nth-child(2) {
        bottom: 80px;
        right: 80px;
        width: 8px;
        height: 8px;
        background: rgba(34, 211, 238, 0.4);
        animation: pulse 2s ease-in-out infinite;
    }
}

/* Floating Particles */
.particles-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 5;
}

.particle {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: pulse 3s ease-in-out infinite;
}

/* Grid Overlay */
.grid-overlay {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    pointer-events: none;
    z-index: 5;
    background-image: radial-gradient(circle, #ffffff 1px, transparent 1px);
    background-size: 50px 50px;
}

/* Animations */
@keyframes pulse {
    0%, 100% {
        opacity: 0.2;
        transform: scale(1);
    }
    50% {
        opacity: 0.4;
        transform: scale(1.05);
    }
}

@keyframes ping {
    75%, 100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(-25%);
        animation-timing-function: cubic-bezier(0.8, 0, 1, 1);
    }
    50% {
        transform: none;
        animation-timing-function: cubic-bezier(0, 0, 0.2, 1);
    }
}/* End custom CSS */