/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: #0a0a0a;
    color: #ffffff;
    overflow-x: hidden;
    position: relative;
}

/* Animated Background */
.background-animation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #16213e 100%);
}

.globe-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.earth-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    mix-blend-mode: screen;
}


.circuit-lines {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(90deg, transparent 49%, rgba(0, 255, 255, 0.1) 50%, transparent 51%),
        linear-gradient(0deg, transparent 49%, rgba(0, 255, 255, 0.1) 50%, transparent 51%);
    background-size: 50px 50px;
    animation: circuitMove 20s linear infinite;
}

@keyframes circuitMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.rotating-globe {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(0, 255, 255, 0.3), transparent 70%);
    border: 2px solid rgba(0, 255, 255, 0.5);
    animation: rotate 30s linear infinite;
}

.rotating-globe::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: 
        radial-gradient(circle at 50% 50%, transparent 40%, rgba(0, 255, 255, 0.1) 41%, transparent 42%),
        linear-gradient(45deg, transparent 45%, rgba(0, 255, 255, 0.2) 46%, transparent 47%),
        linear-gradient(-45deg, transparent 45%, rgba(0, 255, 255, 0.2) 46%, transparent 47%);
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    clip-path: inset(90px 0 0 0);
}

.particles::before,
.particles::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(0, 255, 255, 0.8);
    border-radius: 50%;
    box-shadow: 
        0 0 10px rgba(0, 255, 255, 0.8),
        100px 100px 0 0px rgba(0, 255, 255, 0.6),
        200px 50px 0 0px rgba(0, 255, 255, 0.4),
        300px 150px 0 0px rgba(0, 255, 255, 0.7),
        400px 80px 0 0px rgba(0, 255, 255, 0.5),
        500px 200px 0 0px rgba(0, 255, 255, 0.6),
        600px 120px 0 0px rgba(0, 255, 255, 0.4),
        700px 180px 0 0px rgba(0, 255, 255, 0.8);
    animation: particleFloat 15s ease-in-out infinite;
}

.particles::after {
    animation-delay: -7s;
    opacity: 0.7;
}

@keyframes particleFloat {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(180deg); }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 4px 0;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 255, 255, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: inherit;
    cursor: default;
}

.logo:link,
.logo:visited,
.logo:hover,
.logo:active {
    text-decoration: none;
    color: inherit;
}

.logo-image {
    width: 60px;
    height: 60px;
    object-fit: contain;
    display: block;
}

.globe-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(0, 255, 255, 0.8), transparent 70%);
    border: 2px solid rgba(0, 255, 255, 0.7);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.brand-name {
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #00ffff;
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background: #00ffff;
    animation: underlineGlow 1.5s ease-in-out infinite;
}

.dropdown {
    position: relative;
}

.dropdown-toggle::after {
    content: "\25BE";
    margin-left: 6px;
    font-size: 0.8rem;
    transition: transform 0.2s ease;
}

.dropdown.open .dropdown-toggle::after,
.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    min-width: 220px;
    background: rgba(10, 10, 10, 0.95);
    border: 1px solid rgba(0, 255, 255, 0.3);
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0, 255, 255, 0.25);
    padding: 6px 0;
    z-index: 1100;
    list-style: none;
    margin: 0;
}

.dropdown-menu li { list-style: none; }

.dropdown-menu li a {
    display: block;
    padding: 10px 14px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.2s ease;
}

.dropdown-menu li a:hover {
    background: rgba(0, 255, 255, 0.1);
    color: #00ffff;
}

.dropdown:hover .dropdown-menu,
.dropdown.open .dropdown-menu {
    display: block;
}

@keyframes underlineGlow {
    0%, 100% { box-shadow: 0 0 5px rgba(0, 255, 255, 0.5); }
    50% { box-shadow: 0 0 15px rgba(0, 255, 255, 0.8); }
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    position: relative;
    padding-top: 100px;
}

.hero-content {
    text-align: left;
    max-width: 900px;
    padding: 0 2rem;
    position: absolute;
    right: 8%;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.headline {
    margin-bottom: 3rem;
}

.line1,
.line2 {
    font-weight: 600;
    margin-bottom: 0.5rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
}

.line1 { font-size: 2.5rem; }
.line2 { font-size: 3.5rem; }

.line1 {
    animation-delay: 0.5s;
}

.line2 {
    animation-delay: 0.7s;
}

.line3,
.line4 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
}

.line3 {
    animation-delay: 0.9s;
    white-space: nowrap;
}

.line4 {
    animation-delay: 1.1s;
    color: #00ffff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* CTA Buttons */
.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 1.3s;
}

.supported-by {
    margin-top: 1.6rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 1.5s;
}

.supported-label {
    font-size: 1.2rem;
    font-weight: normal;
    color: #eaffff;
    letter-spacing: 0.4px;
}

.supported-logos {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.supported-logo {
    height: 80px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(0,255,255,0.15));
    opacity: 0.98;
}

.btn {
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: #ffffff;
    color: #0a0a0a;
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.4);
}

.btn-secondary {
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    border: 2px solid #00ffff;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.btn-secondary:hover {
    background: rgba(0, 255, 255, 0.1);
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.5);
    transform: translateY(-2px);
}

.login-btn {
    position: fixed !important;
    top: 100px;
    right: 2rem !important;
    left: initial !important;
    z-index: 900;
    padding: 0.6rem 1.25rem;
    border: 2px solid #00ffff;
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    border-radius: 32px;
    box-shadow: 0 0 12px rgba(0, 255, 255, 0.25);
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    width: max-content;
}

.login-btn:hover {
    background: rgba(0, 255, 255, 0.1);
    box-shadow: 0 0 18px rgba(0, 255, 255, 0.45);
}

/* Interactive Elements */
.interactive-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-element {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 2px solid rgba(0, 255, 255, 0.3);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

.element-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.element-2 {
    top: 60%;
    right: 15%;
    animation-delay: -2s;
}

.element-3 {
    bottom: 20%;
    left: 20%;
    animation-delay: -4s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-30px) rotate(180deg); }
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(90deg, rgba(0, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(0deg, rgba(0, 255, 255, 0.05) 1px, transparent 1px);
    background-size: 30px 30px;
    animation: gridMove 10s linear infinite;
}

@keyframes gridMove {
    0% { transform: translate(0, 0); }
    100% { transform: translate(30px, 30px); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav-menu {
        gap: 1rem;
    }

    .dropdown-menu {
        position: static;
        min-width: initial;
        margin-top: 4px;
        box-shadow: none;
        padding: 4px 0;
        display: none;
    }

    .dropdown.open .dropdown-menu {
        display: block;
    }
    
    .line1 { font-size: 2rem; }
    .line2 { font-size: 2.5rem; }
    
    .line3,
    .line4 {
        font-size: 2.5rem;
    }
    .line3 { white-space: normal; }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 250px;
    }

    .supported-by { align-items: center; }
}

    .login-btn {
        top: 76px;
        right: 1rem;
        padding: 0.5rem 1rem;
    }

    .particles {
        clip-path: inset(76px 0 0 0);
    }
    
    .rotating-globe {
        width: 150px;
        height: 150px;
        top: 10%;
        right: 5%;
    }
/**}**/

@media (max-width: 480px) {
    .hero { justify-content: center; }
    .hero-content {
        position: relative;
        right: auto;
        top: auto;
        transform: none;
        padding: 0 1rem;
        text-align: center;
    }
    
    .line1 { font-size: 1.5rem; }
    .line2 { font-size: 2rem; }
    
    .line3,
    .line4 {
        font-size: 2rem;
    }
    .line3 { white-space: normal; }
    
    .btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
        width: 200px;
    }

    .supported-by { flex-direction: column; gap: 0.3rem; }
    .supported-label { font-size: 1.1rem; }
    .supported-logo { height: 36px; }

    .login-btn {
        top: 72px;
        right: 0.75rem;
        padding: 0.5rem 0.9rem;
    }

    .particles {
        clip-path: inset(72px 0 0 0);
    }
}

/* Additional Animations */
@keyframes glow {
    0%, 100% { box-shadow: 0 0 5px rgba(0, 255, 255, 0.5); }
    50% { box-shadow: 0 0 20px rgba(0, 255, 255, 0.8), 0 0 30px rgba(0, 255, 255, 0.6); }
}

/* Interactive hover effects */
.btn:hover {
    animation: glow 1.5s ease-in-out infinite;
}

/* Mouse tracking effect for interactive elements */
.interactive-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid #00ffff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: all 0.1s ease;
    mix-blend-mode: difference;
}

.site-footer {
    margin-top: 80px;
    background: rgba(10, 10, 10, 0.95);
    border-top: 1px solid rgba(0, 255, 255, 0.25);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 1rem;
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: 40px;
}

.footer-brand .tagline {
    margin-top: 12px;
    color: #cfd8dc;
    max-width: 560px;
}

.social-links { margin-top: 14px; display: flex; gap: 12px; }
.social-links a { color: #b0bec5; display: inline-flex; align-items: center; }
.social-links a:hover { color: #00ffff; }
.social-icon { width: 22px; height: 22px; }

.footer-columns {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 24px;
}

.footer-col h4 {
    font-size: 1.05rem;
    margin-bottom: 12px;
    color: #00ffff;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin: 8px 0; }
.footer-col ul li a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.2s ease;
}
.footer-col ul li a:hover { color: #00ffff; }

.footer-bottom {
    border-top: 1px solid rgba(0, 255, 255, 0.15);
    background: rgba(10, 10, 10, 0.9);
}
.footer-bottom-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 14px 1rem;
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    font-size: 0.9rem;
    color: #b0bec5;
}

@media (max-width: 768px) {
    .footer-container { grid-template-columns: 1fr; gap: 24px; }
    .footer-columns { grid-template-columns: 1fr; }
    .footer-bottom-container { flex-direction: column; align-items: flex-start; }
}
