/* SmartB - Combined Stylesheet */
/* Remove any default backgrounds */
html, body {
    background: none !important;
    margin: 0;
    padding: 0;
    min-height: 100vh;
}

:root {
    --primary-blue: #2563eb;
    --primary-blue-dark: #1d4ed8;
    --primary-blue-light: #3b82f6;
    --accent-blue: #60a5fa;
    --gradient-start: #2563eb;
    --gradient-end: #1e40af;
    --bg-primary: #ffffff;
    --bg-secondary: #f9fafb;
    --text-primary: #111827;
    --text-secondary: #6b7280;
}

.dark {
    --primary-blue: #60a5fa;
    --primary-blue-dark: #3b82f6;
    --primary-blue-light: #93c5fd;
    --accent-blue: #dbeafe;
    --gradient-start: #60a5fa;
    --gradient-end: #3b82f6;
    --bg-primary: #111827;
    --bg-secondary: #1f2937;
    --text-primary: #f9fafb;
    --text-secondary: #d1d5db;
}

[data-theme="dark"] {
    --primary-blue: #60a5fa;
    --primary-blue-dark: #3b82f6;
    --primary-blue-light: #93c5fd;
    --accent-blue: #dbeafe;
    --gradient-start: #60a5fa;
    --gradient-end: #3b82f6;
    --bg-primary: #111827;
    --bg-secondary: #1f2937;
    --text-primary: #f9fafb;
    --text-secondary: #d1d5db;
}

.theme-transition {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* Glowing Border Effect for BuilderB */
.glow-border {
    position: relative;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.glow-border::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #8b5cf6, #3b82f6, #06b6d4, #8b5cf6);
    background-size: 400% 400%;
    border-radius: inherit;
    z-index: -1;
    animation: glow-rotate 3s ease-in-out infinite;
    opacity: 0.7;
}

.glow-border:hover::before {
    opacity: 1;
    animation-duration: 1.5s;
}

@keyframes glow-rotate {
    0% {
        background-position: 0% 50%;
        filter: blur(0px);
    }
    25% {
        background-position: 100% 50%;
        filter: blur(1px);
    }
    50% {
        background-position: 100% 100%;
        filter: blur(2px);
    }
    75% {
        background-position: 0% 100%;
        filter: blur(1px);
    }
    100% {
        background-position: 0% 50%;
        filter: blur(0px);
    }
}

/* Additional glow effect */
.glow-border {
    box-shadow: 
        0 0 10px rgba(139, 92, 246, 0.3),
        0 0 20px rgba(139, 92, 246, 0.2),
        0 0 30px rgba(139, 92, 246, 0.1);
}

.glow-border:hover {
    box-shadow: 
        0 0 15px rgba(139, 92, 246, 0.5),
        0 0 30px rgba(139, 92, 246, 0.3),
        0 0 45px rgba(139, 92, 246, 0.2);
    transform: translateY(-1px);
}

/* Orange Glowing Border Effect for BuilderB */
.glow-border-orange {
    position: relative;
    border: 2px solid transparent;
    background-clip: padding-box;
}

.glow-border-orange::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #ea580c, #dc2626, #f97316, #ea580c);
    background-size: 400% 400%;
    border-radius: inherit;
    z-index: -1;
    animation: glow-rotate-orange 3s ease-in-out infinite;
    opacity: 0.7;
}

.glow-border-orange:hover::before {
    opacity: 1;
    animation-duration: 1.5s;
}

@keyframes glow-rotate-orange {
    0% {
        background-position: 0% 50%;
        filter: blur(0px);
    }
    25% {
        background-position: 100% 50%;
        filter: blur(1px);
    }
    50% {
        background-position: 100% 100%;
        filter: blur(2px);
    }
    75% {
        background-position: 0% 100%;
        filter: blur(1px);
    }
    100% {
        background-position: 0% 50%;
        filter: blur(0px);
    }
}

/* Orange glow effect */
.glow-border-orange {
    box-shadow: 
        0 0 10px rgba(234, 88, 12, 0.4),
        0 0 20px rgba(234, 88, 12, 0.3),
        0 0 30px rgba(234, 88, 12, 0.2);
}

.glow-border-orange:hover {
    box-shadow: 
        0 0 15px rgba(234, 88, 12, 0.6),
        0 0 30px rgba(234, 88, 12, 0.4),
        0 0 45px rgba(234, 88, 12, 0.3);
    transform: translateY(-1px);
}

.gradient-bg {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
}

.gradient-text {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

.animate-pulse-slow {
    animation: pulse 4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.animate-slide-up {
    animation: slideUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
}

.animate-slide-in-left {
    animation: slideInLeft 0.8s ease-out forwards;
    opacity: 0;
    transform: translateX(-30px);
}

.animate-slide-in-right {
    animation: slideInRight 0.8s ease-out forwards;
    opacity: 0;
    transform: translateX(30px);
}

.animate-scale-in {
    animation: scaleIn 0.6s ease-out forwards;
    opacity: 0;
    transform: scale(0.9);
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.nav-link {
    position: relative;
    padding: 4px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    background: transparent;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border-radius: 8px;
    background: 
        conic-gradient(
            from var(--angle, 0deg),
            transparent 0deg,
            transparent 340deg,
            #4285f4 350deg,
            #34a853 355deg,
            #fbbc05 360deg,
            #ea4335 5deg,
            transparent 20deg,
            transparent 360deg
        );
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 2px;
    animation: light-beam-travel 2s linear infinite;
}

.nav-link::after {
    content: '';
    position: absolute;
    top: -1px;
    left: -1px;
    right: -1px;
    bottom: -1px;
    border-radius: 7px;
    border: 1px solid rgba(66, 133, 244, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-link:hover::before {
    opacity: 1;
}

.nav-link:hover::after {
    opacity: 1;
}

.nav-link:hover {
    transform: translateY(-1px);
    background: transparent;
}

@keyframes light-beam-travel {
    0% {
        --angle: 0deg;
        transform: rotate(0deg);
    }
    100% {
        --angle: 360deg;
        transform: rotate(360deg);
    }
}

.badge-glow {
    box-shadow: 0 0 20px rgba(37, 99, 235, 0.3);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { box-shadow: 0 0 20px rgba(37, 99, 235, 0.3); }
    to { box-shadow: 0 0 30px rgba(37, 99, 235, 0.6); }
}

/* Glass Header Effect */
.glass-header {
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    box-shadow: 
        0 8px 32px 0 rgba(31, 38, 135, 0.1),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.2);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.glass-header:hover {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
    box-shadow: 
        0 12px 40px 0 rgba(31, 38, 135, 0.15),
        inset 0 1px 0 0 rgba(255, 255, 255, 0.3);
}

/* Navigation Links for Glass Header */
.glass-header .nav-link {
    color: rgba(255, 255, 255, 0.9) !important;
    transition: all 0.3s ease;
}

.glass-header .nav-link:hover {
    color: #06b6d4 !important;
    transform: translateY(-1px);
}

/* Mobile menu glass effect */
.glass-effect {
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .header-floating {
        border-radius: 10px;
    }
}

@media (max-width: 640px) {
    .header-floating {
        border-radius: 8px;
    }
}

.mobile-menu {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.mobile-menu.active {
    transform: translateX(0);
}

.hamburger span {
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Theme Toggle Button */
#theme-toggle {
    position: relative;
    overflow: hidden;
}

#theme-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

[data-theme="dark"] #theme-toggle:hover {
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
}

/* Notification Badge */
.notification-badge {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-3px);
    }
    60% {
        transform: translateY(-1px);
    }
}

/* Solar System Hero Section */
.hero-section {
    position: relative;
    overflow: hidden;
    margin: 0;
    padding-top: 0;
    top: 0;
    background: radial-gradient(ellipse at center, #1a1a2e 0%, #16213e 50%, #0f0f23 100%);
}

/* Solar System Container */
.solar-system {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.solar-system-right {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.solar-system-container {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Solar System Right Side Styling */
.solar-system-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: solar-glow 8s ease-in-out infinite;
}

@keyframes solar-glow {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

/* Central Sun */
.sun {
    z-index: 1;
}

.sun-core {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, #ffd700 0%, #ff8c00 50%, #ff4500 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: sun-pulse 4s ease-in-out infinite;
    box-shadow: 0 0 60px #ffd700, 0 0 120px #ff8c00;
}

.sun-glow {
    position: absolute;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 215, 0, 0.3) 0%, transparent 70%);
    animation: sun-glow 6s ease-in-out infinite;
}

.sun-icon {
    z-index: 2;
    position: relative;
}

/* Orbits */
.orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

.orbit-1 { width: 200px; height: 200px; animation: orbit-rotate 10s linear infinite; }
.orbit-2 { width: 280px; height: 280px; animation: orbit-rotate 15s linear infinite reverse; }
.orbit-3 { width: 360px; height: 360px; animation: orbit-rotate 20s linear infinite; }
.orbit-4 { width: 440px; height: 440px; animation: orbit-rotate 25s linear infinite reverse; }
.orbit-5 { width: 520px; height: 520px; animation: orbit-rotate 30s linear infinite; }
.orbit-6 { width: 600px; height: 600px; animation: orbit-rotate 35s linear infinite reverse; }

/* Planets */
.planet {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #3b82f6;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    animation: planet-counter-rotate 10s linear infinite;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.planet i {
    color: white !important;
}

/* New Solar System - Recreated with Simple Approach */
.solar-system-new {
    position: relative;
    width: 500px;
    height: 500px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Central Sun */
.sun-new {
    position: absolute;
    top: calc(50% - 40px);
    left: calc(50% - 40px);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, #ffd700 0%, #ff8c00 50%, #ff4500 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    animation: sun-pulse 4s ease-in-out infinite;
    box-shadow: 0 0 40px #ffd700;
}

/* Orbit Containers */
.orbit-new {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: orbit-rotate 20s linear infinite;
}

.orbit-1-new { width: 180px; height: 180px; animation-duration: 10s; }
.orbit-2-new { width: 240px; height: 240px; animation-duration: 15s; animation-direction: reverse; }
.orbit-3-new { width: 300px; height: 300px; animation-duration: 20s; }
.orbit-4-new { width: 360px; height: 360px; animation-duration: 25s; animation-direction: reverse; }
.orbit-5-new { width: 420px; height: 420px; animation-duration: 30s; }
.orbit-6-new { width: 480px; height: 480px; animation-duration: 35s; animation-direction: reverse; }

/* Planet Positioning */
.planet-new {
    position: absolute;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.planet-new i {
    color: white !important;
}

/* Colorful Planet Backgrounds Based on Technology */

/* Orbit 1 - Frontend Frameworks */
.orbit-1-new .planet-top { background: #61dafb; } /* React Blue */
.orbit-1-new .planet-right { background: #4fc08d; } /* Vue Green */
.orbit-1-new .planet-bottom { background: #dd0031; } /* Angular Red */
.orbit-1-new .planet-left { background: #f7df1e; } /* JavaScript Yellow */

/* Orbit 2 - Backend Technologies */
.orbit-2-new .planet-top { background: #68a063; } /* Node.js Green */
.orbit-2-new .planet-right { background: #777bb4; } /* PHP Purple */
.orbit-2-new .planet-bottom { background: #3776ab; } /* Python Blue */
.orbit-2-new .planet-left { background: #ff2d20; } /* Laravel Red */

/* Orbit 3 - Web Technologies */
.orbit-3-new .planet-top { background: #e34f26; } /* HTML5 Orange */
.orbit-3-new .planet-right { background: #1572b6; } /* CSS3 Blue */
.orbit-3-new .planet-bottom { background: #cf649a; } /* Sass Pink */
.orbit-3-new .planet-left { background: #7952b3; } /* Bootstrap Purple */

/* Orbit 4 - Cloud Platforms */
.orbit-4-new .planet-top { background: #ff9900; } /* AWS Orange */
.orbit-4-new .planet-right { background: #4285f4; } /* Google Blue */
.orbit-4-new .planet-bottom { background: #00bcf2; } /* Microsoft Azure Blue */
.orbit-4-new .planet-left { background: #0080ff; } /* DigitalOcean Blue */

/* Orbit 5 - DevOps Tools */
.orbit-5-new .planet-top { background: #2496ed; } /* Docker Blue */
.orbit-5-new .planet-right { background: #f05032; } /* Git Orange */
.orbit-5-new .planet-bottom { background: #181717; } /* GitHub Black */
.orbit-5-new .planet-left { background: #fc6d26; } /* GitLab Orange */

/* Orbit 6 - Specialized Services */
.orbit-6-new .planet-top { background: #336791; } /* Database Blue */
.orbit-6-new .planet-right { background: #21759b; } /* WordPress Blue */
.orbit-6-new .planet-bottom { background: #25d366; } /* Mobile Green */
.orbit-6-new .planet-left { background: #0078d4; } /* Cloud Blue */

/* Position planets at cardinal points */
.planet-top { top: -16px; left: 50%; transform: translateX(-50%); }
.planet-right { right: -16px; top: 50%; transform: translateY(-50%); }
.planet-bottom { bottom: -16px; left: 50%; transform: translateX(-50%); }
.planet-left { left: -16px; top: 50%; transform: translateY(-50%); }

/* Mobile Solar System */
.solar-system-container-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
}

.solar-system-mobile {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Mobile Central Sun */
.sun-mobile {
    position: absolute;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, #ffd700 0%, #ff8c00 50%, #ff4500 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    animation: sun-pulse 4s ease-in-out infinite;
    box-shadow: 0 0 30px #ffd700;
}

/* Mobile Orbit Containers */
.orbit-mobile {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: orbit-rotate 20s linear infinite;
}

.orbit-1-mobile { width: 120px; height: 120px; animation-duration: 10s; }
.orbit-2-mobile { width: 160px; height: 160px; animation-duration: 15s; animation-direction: reverse; }
.orbit-3-mobile { width: 200px; height: 200px; animation-duration: 20s; }

/* Mobile Planet Positioning */
.planet-mobile {
    position: absolute;
    width: 24px;
    height: 24px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
}

.planet-mobile i {
    color: white !important;
}

/* Mobile Planet Colors */
.orbit-1-mobile .planet-top { background: #61dafb; top: -12px; left: 50%; transform: translateX(-50%); }
.orbit-1-mobile .planet-right { background: #4fc08d; right: -12px; top: 50%; transform: translateY(-50%); }
.orbit-1-mobile .planet-bottom { background: #dd0031; bottom: -12px; left: 50%; transform: translateX(-50%); }
.orbit-1-mobile .planet-left { background: #f7df1e; left: -12px; top: 50%; transform: translateY(-50%); }

.orbit-2-mobile .planet-top { background: #68a063; top: -12px; left: 50%; transform: translateX(-50%); }
.orbit-2-mobile .planet-right { background: #777bb4; right: -12px; top: 50%; transform: translateY(-50%); }
.orbit-2-mobile .planet-bottom { background: #3776ab; bottom: -12px; left: 50%; transform: translateX(-50%); }
.orbit-2-mobile .planet-left { background: #ff2d20; left: -12px; top: 50%; transform: translateY(-50%); }

.orbit-3-mobile .planet-top { background: #e34f26; top: -12px; left: 50%; transform: translateX(-50%); }
.orbit-3-mobile .planet-right { background: #1572b6; right: -12px; top: 50%; transform: translateY(-50%); }
.orbit-3-mobile .planet-bottom { background: #cf649a; bottom: -12px; left: 50%; transform: translateX(-50%); }
.orbit-3-mobile .planet-left { background: #7952b3; left: -12px; top: 50%; transform: translateY(-50%); }

/* Cosmic Particles */
.cosmic-particles {
    position: absolute;
    width: 100%;
    height: 100%;
}

.cosmic-particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    animation: cosmic-float 12s linear infinite;
}

.cosmic-1 { top: 10%; left: 15%; animation-delay: 0s; }
.cosmic-2 { top: 20%; left: 85%; animation-delay: 1s; }
.cosmic-3 { top: 30%; left: 25%; animation-delay: 2s; }
.cosmic-4 { top: 40%; left: 75%; animation-delay: 3s; }
.cosmic-5 { top: 60%; left: 10%; animation-delay: 4s; }
.cosmic-6 { top: 70%; left: 90%; animation-delay: 5s; }
.cosmic-7 { top: 80%; left: 35%; animation-delay: 6s; }
.cosmic-8 { top: 90%; left: 65%; animation-delay: 7s; }
.cosmic-9 { top: 15%; left: 55%; animation-delay: 8s; }
.cosmic-10 { top: 85%; left: 45%; animation-delay: 9s; }

/* Nebula Effects */
.nebula {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.3;
    animation: nebula-drift 20s ease-in-out infinite;
}

.nebula-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(6, 182, 212, 0.4) 0%, transparent 70%);
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.nebula-2 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.4) 0%, transparent 70%);
    top: 60%;
    right: 15%;
    animation-delay: 7s;
}

.nebula-3 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(34, 197, 94, 0.4) 0%, transparent 70%);
    bottom: 20%;
    left: 30%;
    animation-delay: 14s;
}

/* Glow Text Effect */
.glow-text {
    text-shadow: 0 0 20px #06b6d4, 0 0 40px #06b6d4, 0 0 60px #06b6d4;
}

/* Countries Section */
.countries-section {
    margin-top: 2rem;
}

.countries-container-wide {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.countries-title-border {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #0f0f23;
    padding: 0 0.8rem;
}

.countries-title {
    color: #06b6d4;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-left: 2px solid #06b6d4;
    border-right: 2px solid #06b6d4;
    padding: 0 0.8rem;
}

.countries-grid-row {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 0.8rem;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .countries-grid-row {
        gap: 0.8rem;
    }
    
    .countries-container-wide {
        padding: 1rem 0.8rem;
        max-width: 100%;
    }
}

.country-flag-compact {
    width: 50px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
    cursor: pointer;
}

.country-flag-compact:hover {
    transform: translateY(-3px) scale(1.1);
    border-color: #06b6d4;
    box-shadow: 0 8px 25px rgba(6, 182, 212, 0.3);
    background: rgba(6, 182, 212, 0.1);
}

/* Compact Countries Section for Hero */
.countries-section-compact {
    margin-top: 1rem;
}

@media (min-width: 1024px) {
    .countries-section-compact {
        margin-top: 20px !important;
    }
}




.service-option input:checked + div {
    border-color: #3b82f6 !important;
    background-color: rgba(59, 130, 246, 0.1) !important;
    transform: scale(1.02);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
}

/* Time Slot Buttons */
#timeSlots button {
    transition: all 0.3s ease;
}

#timeSlots button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

#timeSlots button.border-blue-500 {
    background: linear-gradient(45deg, rgba(59, 130, 246, 0.2), rgba(139, 92, 246, 0.2));
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.4);
}

/* Calendar Day Hover Effects */
#calendarDays > div:hover {
    transform: scale(1.1);
    background-color: rgba(59, 130, 246, 0.2) !important;
    border-radius: 50%;
}

#calendarDays > div.bg-blue-600 {
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.6);
}

/* Modal Entrance Animation */
#appointmentModal {
    animation: modalFadeIn 0.5s ease-out;
}

@keyframes modalFadeIn {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.countries-container-compact {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 0.8rem 1rem;
    max-width: 500px;
    position: relative;
}

.countries-title-border-compact {
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    background: #0f0f23;
    padding: 0 0.6rem;
}

.countries-title-compact {
    color: #06b6d4;
    font-size: 0.8rem;
    font-weight: 500;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-left: 2px solid #06b6d4;
    border-right: 2px solid #06b6d4;
    padding: 0 0.6rem;
}

.countries-grid-compact {
    display: flex;
    justify-content: center;
    gap: 0.6rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.country-flag-mini {
    width: 35px;
    height: 35px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(3px);
    transition: all 0.3s ease;
    cursor: pointer;
}

.country-flag-mini:hover {
    transform: translateY(-2px) scale(1.05);
    border-color: #06b6d4;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.2);
    background: rgba(6, 182, 212, 0.05);
}

@media (max-width: 768px) {
    .countries-container-compact {
        max-width: 100%;
        padding: 0.6rem 0.8rem;
    }
    
    .countries-grid-compact {
        gap: 0.4rem;
    }
    
    .country-flag-mini {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
}

/* Typing Text Animation */
.typing-text {
    border-right: 2px solid #06b6d4;
    animation: typing 4s steps(30) infinite, blink 1s infinite;
    white-space: nowrap;
    overflow: hidden;
}

/* Service Cards */
.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    animation: card-glow 3s ease-in-out infinite alternate;
}

.service-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(6, 182, 212, 0.5);
}

.service-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: #06b6d4;
}

.service-card h3 {
    color: white;
    font-weight: 600;
    font-size: 1rem;
}

/* CTA Buttons */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    flex: 1;
    font-size: 0.85rem;
}

@media (min-width: 640px) {
    .cta-button {
        padding: 1rem 2rem;
        flex: none;
        font-size: 1rem;
    }
}

.cta-primary {
    background: linear-gradient(135deg, #0891b2, #0284c7);
    color: white;
    box-shadow: 0 4px 15px rgba(8, 145, 178, 0.2);
}

.cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.cta-button:hover {
    transform: translateY(-3px);
}

.cta-primary:hover {
    box-shadow: 0 8px 25px rgba(8, 145, 178, 0.3);
}

.cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(6, 182, 212, 0.8);
}

/* Stats */
.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #06b6d4;
    margin-bottom: 0.5rem;
    animation: counter-up 2s ease-out;
}

.stat-label {
    color: #9ca3af;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Stat Cards */
.stat-card {
    border-radius: 12px;
    padding: 1rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Individual Card Colors - Darker Solid Colors */
.stat-card-projects {
    background: #4c63d2;
    box-shadow: 0 4px 15px rgba(76, 99, 210, 0.2);
}

.stat-card-projects:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(76, 99, 210, 0.3);
}

.stat-card-clients {
    background: #d946ef;
    box-shadow: 0 4px 15px rgba(217, 70, 239, 0.2);
}

.stat-card-clients:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(217, 70, 239, 0.3);
}

.stat-card-experience {
    background: #0284c7;
    box-shadow: 0 4px 15px rgba(2, 132, 199, 0.2);
}

.stat-card-experience:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(2, 132, 199, 0.3);
}

.stat-card-support {
    background: #16a34a;
    box-shadow: 0 4px 15px rgba(22, 163, 74, 0.2);
}

.stat-card-support:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(22, 163, 74, 0.3);
}

.stat-card-discussed {
    background: #ea580c;
    box-shadow: 0 4px 15px rgba(234, 88, 12, 0.2);
}

.stat-card-discussed:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(234, 88, 12, 0.3);
}

.stat-card-solved {
    background: #7c3aed;
    box-shadow: 0 4px 15px rgba(124, 58, 237, 0.2);
}

.stat-card-solved:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.3);
}

/* Icon Left Styling */
.stat-icon-left {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

@media (min-width: 1024px) {
    .stat-card {
        padding: 1.25rem;
    }
    
    .stat-icon-left {
        width: 45px;
        height: 45px;
    }
}

/* Our Process Section Styles */
/* Liquid Background Animation */
.liquid-bg-1, .liquid-bg-2, .liquid-bg-3 {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.3;
    animation: liquidFloat 20s ease-in-out infinite;
}

.liquid-bg-1 {
    width: 300px;
    height: 300px;
    background: linear-gradient(45deg, #0891b2, #06b6d4);
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.liquid-bg-2 {
    width: 400px;
    height: 400px;
    background: linear-gradient(45deg, #0284c7, #0ea5e9);
    top: 50%;
    right: 10%;
    animation-delay: 7s;
}

.liquid-bg-3 {
    width: 250px;
    height: 250px;
    background: linear-gradient(45deg, #06b6d4, #67e8f9);
    bottom: 20%;
    left: 50%;
    animation-delay: 14s;
}

@keyframes liquidFloat {
    0%, 100% {
        transform: translateY(0px) translateX(0px) scale(1);
    }
    33% {
        transform: translateY(-30px) translateX(20px) scale(1.1);
    }
    66% {
        transform: translateY(20px) translateX(-15px) scale(0.9);
    }
}

/* Process Cards */
.process-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 20px;
}

.process-card:hover::before {
    opacity: 1;
}

.process-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Process Icon Container */
.process-icon-container {
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.process-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.process-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 16px;
}

.process-card:hover .process-icon::before {
    opacity: 1;
}

.process-card:hover .process-icon {
    transform: scale(1.1) rotate(5deg);
}

/* Process Text Elements */
.process-step {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.process-title {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.process-description {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.process-duration {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.75rem;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    display: inline-block;
    margin-top: auto;
}

/* Responsive Process Grid */
@media (max-width: 1024px) {
    .process-card {
        min-height: 240px;
        padding: 1.5rem 1rem;
    }
    
    .process-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .process-title {
        font-size: 1.125rem;
    }
}

@media (max-width: 768px) {
    .liquid-bg-1, .liquid-bg-2, .liquid-bg-3 {
        width: 200px;
        height: 200px;
    }
    
    .process-card {
        min-height: 220px;
    }
}

/* Process Card Entrance Animation */
.process-card {
    opacity: 0;
    transform: translateY(30px);
    animation: processCardIn 0.6s ease-out forwards;
}

@keyframes processCardIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Stagger animation delays for process cards */
.process-card:nth-child(1) { animation-delay: 0.1s; }
.process-card:nth-child(2) { animation-delay: 0.2s; }
.process-card:nth-child(3) { animation-delay: 0.3s; }
.process-card:nth-child(4) { animation-delay: 0.4s; }
.process-card:nth-child(5) { animation-delay: 0.5s; }
.process-card:nth-child(6) { animation-delay: 0.6s; }
.process-card:nth-child(7) { animation-delay: 0.7s; }
.process-card:nth-child(8) { animation-delay: 0.8s; }
.process-card:nth-child(9) { animation-delay: 0.9s; }
.process-card:nth-child(10) { animation-delay: 1.0s; }

/* Scroll Indicator */
.scroll-indicator {
    animation: bounce-glow 2s infinite;
}

/* Solar System Animations */
@keyframes sun-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes sun-glow {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.6; }
}

@keyframes orbit-rotate {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(360deg); }
}

@keyframes planet-counter-rotate {
    0% { transform: translateX(-50%) rotate(0deg); }
    100% { transform: translateX(-50%) rotate(-360deg); }
}

@keyframes cosmic-float {
    0% { transform: translateY(0px) scale(0); opacity: 0; }
    10% { transform: translateY(-20px) scale(1); opacity: 1; }
    90% { transform: translateY(-100px) scale(1); opacity: 1; }
    100% { transform: translateY(-120px) scale(0); opacity: 0; }
}

@keyframes nebula-drift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20px, -10px) scale(1.1); }
    66% { transform: translate(-15px, 15px) scale(0.9); }
}

@keyframes country-glow {
    0% { box-shadow: 0 0 10px rgba(6, 182, 212, 0.1); }
    100% { box-shadow: 0 0 20px rgba(6, 182, 212, 0.3); }
}

@keyframes typing {
    0%, 50% { width: 0; }
    100% { width: 100%; }
}

@keyframes blink {
    0%, 50% { border-color: transparent; }
    51%, 100% { border-color: #06b6d4; }
}

@keyframes card-glow {
    0% { box-shadow: 0 0 20px rgba(6, 182, 212, 0.1); }
    100% { box-shadow: 0 0 30px rgba(6, 182, 212, 0.2); }
}

@keyframes counter-up {
    0% { transform: translateY(20px); opacity: 0; }
    100% { transform: translateY(0); opacity: 1; }
}

@keyframes bounce-glow {
    0%, 20%, 50%, 80%, 100% { 
        transform: translateY(0);
        filter: drop-shadow(0 0 10px rgba(6, 182, 212, 0.5));
    }
    40% { 
        transform: translateY(-10px);
        filter: drop-shadow(0 0 20px rgba(6, 182, 212, 0.8));
    }
    60% { 
        transform: translateY(-5px);
        filter: drop-shadow(0 0 15px rgba(6, 182, 212, 0.6));
    }
}

/* Responsive adjustments for business hero */
@media (max-width: 768px) {
    .tech-icon {
        font-size: 1.5rem;
    }
    
    .service-card {
        padding: 1rem;
    }
    
    .service-icon {
        font-size: 1.5rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .typing-text {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .tech-icon {
        font-size: 1.2rem;
    }
    
    .service-card {
        padding: 0.8rem;
    }
    
    .service-card h3 {
        font-size: 0.9rem;
    }
    
    .cta-button {
        padding: 0.7rem 1.2rem;
        font-size: 0.8rem;
    }
    
    .stat-number {
        font-size: 1.8rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .typing-text {
        font-size: 1.2rem;
    }
}

/* ===============================================
   COSMIC APPOINTMENT PAGE STYLES
   =============================================== */

/* Astrology Background Effects */
.stars-field {
    background-image: 
        radial-gradient(2px 2px at 20px 30px, #fff, transparent),
        radial-gradient(2px 2px at 40px 70px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 90px 40px, #fff, transparent),
        radial-gradient(1px 1px at 130px 80px, rgba(255,255,255,0.6), transparent),
        radial-gradient(2px 2px at 160px 30px, #fff, transparent);
    background-repeat: repeat;
    background-size: 200px 100px;
    animation: twinkle 4s ease-in-out infinite alternate;
}

.shooting-stars {
    background: transparent;
    overflow: hidden;
}

.shooting-stars::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.8), transparent) no-repeat -100px 20%,
        linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.6), transparent) no-repeat -100px 40%,
        linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.7), transparent) no-repeat -100px 60%;
    background-size: 200px 2px, 150px 1px, 180px 1px;
    animation: shootingStar 8s linear infinite;
}

.floating-comets {
    background: transparent;
}

.floating-comets::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 10%;
    width: 4px;
    height: 4px;
    background: radial-gradient(circle, #60a5fa 0%, transparent 70%);
    border-radius: 50%;
    box-shadow: 
        0 0 20px #60a5fa,
        -20px 10px 0 2px rgba(96, 165, 250, 0.3),
        -40px 20px 0 1px rgba(96, 165, 250, 0.2);
    animation: floatingComet 12s ease-in-out infinite;
}

/* Glass Morphism Effects */
.glass-morphism {
    background: rgba(17, 24, 39, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cosmic-card {
    position: relative;
    overflow: hidden;
}

.cosmic-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.8s;
}

.cosmic-card:hover::before {
    left: 100%;
}

/* Cosmic Progress Styles */
.cosmic-progress-bg {
    position: relative;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.8), rgba(139, 92, 246, 0.8), rgba(6, 182, 212, 0.8));
}

.cosmic-particles::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(1px 1px at 10px 20px, rgba(255,255,255,0.8), transparent),
        radial-gradient(1px 1px at 80px 60px, rgba(255,255,255,0.6), transparent),
        radial-gradient(1px 1px at 150px 30px, rgba(255,255,255,0.7), transparent);
    background-size: 200px 80px;
    animation: particleFloat 6s ease-in-out infinite;
}

.constellation-step {
    position: relative;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.constellation-step.active {
    background: rgba(255, 255, 255, 0.3) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.6);
    transform: scale(1.1);
}

.constellation-step.completed {
    background: rgba(16, 185, 129, 0.3) !important;
    border-color: rgba(16, 185, 129, 0.5) !important;
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.5);
}

/* Cosmic Title Effect */
.cosmic-title {
    position: relative;
    text-shadow: 0 0 30px rgba(59, 130, 246, 0.5);
}

.cosmic-glow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    animation: cosmicPulse 4s ease-in-out infinite;
    z-index: -1;
}

/* Success Message Styles */
.success-constellation {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease-in-out;
}

.success-constellation.show {
    opacity: 1;
    visibility: visible;
}

.success-content {
    text-align: center;
    padding: 3rem;
    background: rgba(17, 24, 39, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2rem;
    backdrop-filter: blur(20px);
    transform: translateY(50px) scale(0.9);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.success-constellation.show .success-content {
    transform: translateY(0) scale(1);
}

.success-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #10b981, #3b82f6);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    animation: successPulse 2s ease-in-out infinite;
    box-shadow: 0 0 40px rgba(16, 185, 129, 0.5);
}

/* Keyframe Animations */
@keyframes twinkle {
    0% { opacity: 0.7; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.02); }
    100% { opacity: 0.8; transform: scale(1); }
}

@keyframes shootingStar {
    0% { transform: translateX(-100vw) translateY(0); }
    20% { transform: translateX(100vw) translateY(-20px); }
    21% { transform: translateX(-100vw) translateY(50px); }
    40% { transform: translateX(100vw) translateY(30px); }
    41% { transform: translateX(-100vw) translateY(80px); }
    60% { transform: translateX(100vw) translateY(60px); }
    61% { transform: translateX(-100vw) translateY(20px); }
    80% { transform: translateX(100vw) translateY(0px); }
    100% { transform: translateX(-100vw) translateY(0); }
}

@keyframes floatingComet {
    0%, 100% { 
        transform: translateX(0) translateY(0) rotate(0deg);
        opacity: 0.8;
    }
    25% { 
        transform: translateX(-30px) translateY(-20px) rotate(90deg);
        opacity: 1;
    }
    50% { 
        transform: translateX(-60px) translateY(10px) rotate(180deg);
        opacity: 0.6;
    }
    75% { 
        transform: translateX(-30px) translateY(30px) rotate(270deg);
        opacity: 1;
    }
}

@keyframes particleFloat {
    0%, 100% { 
        transform: translateY(0) rotate(0deg);
        opacity: 0.6;
    }
    50% { 
        transform: translateY(-10px) rotate(180deg);
        opacity: 1;
    }
}

@keyframes cosmicPulse {
    0%, 100% { 
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% { 
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 0.6;
    }
}

@keyframes successPulse {
    0%, 100% { 
        transform: scale(1);
        box-shadow: 0 0 40px rgba(16, 185, 129, 0.5);
    }
    50% { 
        transform: scale(1.1);
        box-shadow: 0 0 60px rgba(16, 185, 129, 0.8);
    }
}

/* Form Input Cosmic Styles */
.cosmic-input {
    background: rgba(17, 24, 39, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.cosmic-input:focus {
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
    background: rgba(17, 24, 39, 0.8);
}

.cosmic-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

/* Calendar Cosmic Styles */
.cosmic-calendar {
    background: rgba(17, 24, 39, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.calendar-day {
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
}

.calendar-day:hover:not(.disabled) {
    background: rgba(59, 130, 246, 0.3);
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(59, 130, 246, 0.5);
}

.calendar-day.selected {
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.7);
    transform: scale(1.1);
}

/* Time Slot Cosmic Styles */
.time-slot {
    background: rgba(17, 24, 39, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.time-slot::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
    transition: left 0.5s;
}

.time-slot:hover::before {
    left: 100%;
}

.time-slot:hover {
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
}

.time-slot.selected {
    background: rgba(59, 130, 246, 0.2);
    border-color: #3b82f6;
    box-shadow: 0 0 25px rgba(59, 130, 246, 0.5);
}

/* ===============================================
   SIMPLE PROFESSIONAL APPOINTMENT STYLES
   =============================================== */

/* Glass Card Effect */
.glass-card {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.1);
}

/* Service Cards */
.service-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.6s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-2px);
}

/* Step Indicators */
.step-indicator {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.step-indicator.active {
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.4);
}

/* Calendar Container */
.calendar-container {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.calendar-day {
    font-weight: 500;
}

.calendar-day:hover:not(.cursor-not-allowed) {
    transform: scale(1.05);
}

.calendar-day.selected {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

/* Time Slots */
.time-slot {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.time-slot::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.1), transparent);
    transition: left 0.5s;
}

.time-slot:hover::before {
    left: 100%;
}

.time-slot:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.time-slot.selected {
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    transform: translateY(-1px);
}

/* Professional Inputs */
.professional-input {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.professional-input:focus {
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.2);
}

/* Success Modal */
.success-modal {
    animation: fadeIn 0.3s ease-out;
}

.success-content {
    animation: slideUp 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Button Hover Effects */
button:hover {
    transform: translateY(-1px);
}

button:active {
    transform: translateY(0);
}

/* Smooth Transitions */
* {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Floating Asteroids Animation */
@keyframes asteroidFloat1 {
    0% {
        transform: translateX(-120px) translateY(0px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.6;
    }
    100% {
        transform: translateX(calc(100% + 120px)) translateY(-15px) rotate(360deg);
        opacity: 0;
    }
}

@keyframes asteroidFloat2 {
    0% {
        transform: translateX(-150px) translateY(5px) rotate(0deg);
        opacity: 0;
    }
    15% {
        opacity: 1;
    }
    85% {
        opacity: 1;
    }
    100% {
        transform: translateX(calc(100% + 150px)) translateY(-25px) rotate(-360deg);
        opacity: 0;
    }
}

@keyframes asteroidFloat3 {
    0% {
        transform: translateX(-180px) translateY(-8px) rotate(0deg);
        opacity: 0;
    }
    12% {
        opacity: 1;
    }
    88% {
        opacity: 1;
    }
    100% {
        transform: translateX(calc(100% + 180px)) translateY(12px) rotate(180deg);
        opacity: 0;
    }
}

@keyframes asteroidFloat4 {
    0% {
        transform: translateX(-100px) translateY(10px) rotate(0deg);
        opacity: 0;
    }
    8% {
        opacity: 1;
    }
    92% {
        opacity: 1;
    }
    100% {
        transform: translateX(calc(100% + 100px)) translateY(-20px) rotate(-180deg);
        opacity: 0;
    }
}

@keyframes asteroidFloat5 {
    0% {
        transform: translateX(-160px) translateY(-3px) rotate(0deg);
        opacity: 0;
    }
    18% {
        opacity: 1;
    }
    82% {
        opacity: 1;
    }
    100% {
        transform: translateX(calc(100% + 160px)) translateY(8px) rotate(270deg);
        opacity: 0;
    }
}

@keyframes asteroidFloat6 {
    0% {
        transform: translateX(-140px) translateY(7px) rotate(0deg);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        transform: translateX(calc(100% + 140px)) translateY(-12px) rotate(-270deg);
        opacity: 0;
    }
}

@keyframes asteroidFloat7 {
    0% {
        transform: translateX(-130px) translateY(-5px) rotate(0deg);
        opacity: 0;
    }
    14% {
        opacity: 0.7;
    }
    86% {
        opacity: 0.7;
    }
    100% {
        transform: translateX(calc(100% + 130px)) translateY(18px) rotate(450deg);
        opacity: 0;
    }
}

@keyframes asteroidFloat8 {
    0% {
        transform: translateX(-170px) translateY(3px) rotate(0deg);
        opacity: 0;
    }
    16% {
        opacity: 0.5;
    }
    84% {
        opacity: 0.5;
    }
    100% {
        transform: translateX(calc(100% + 170px)) translateY(-22px) rotate(-450deg);
        opacity: 0;
    }
}

/* Integration Objects Animations */
.integration-object {
    position: absolute;
    animation: integrationFloat 6s ease-in-out infinite;
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.1));
}

@keyframes integrationFloat {
    0%, 100% {
        transform: translateY(0) translateX(0) rotate(0deg);
    }
    25% {
        transform: translateY(-15px) translateX(8px) rotate(2deg);
    }
    50% {
        transform: translateY(-25px) translateX(-5px) rotate(-1deg);
    }
    75% {
        transform: translateY(-10px) translateX(12px) rotate(1deg);
    }
}

.api-1 {
    animation: apiPulse 4s ease-in-out infinite;
}

@keyframes apiPulse {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.4;
    }
    50% {
        transform: scale(1.1) rotate(5deg);
        opacity: 0.7;
    }
}

.plugin-1 {
    animation: pluginConnect 5s ease-in-out infinite;
}

@keyframes pluginConnect {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

.database-1 {
    animation: databaseSync 3s ease-in-out infinite;
}

@keyframes databaseSync {
    0%, 100% {
        transform: rotateY(0deg);
    }
    50% {
        transform: rotateY(180deg);
    }
}

.network-1 {
    animation: networkPulse 4s ease-in-out infinite;
}

@keyframes networkPulse {
    0%, 100% {
        filter: drop-shadow(0 0 10px rgba(34, 197, 94, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 25px rgba(34, 197, 94, 0.6));
    }
}

.cloud-1 {
    animation: cloudFloat 7s ease-in-out infinite;
}

@keyframes cloudFloat {
    0%, 100% {
        transform: translateX(0) translateY(0);
    }
    50% {
        transform: translateX(20px) translateY(-10px);
    }
}

.webhook-1 {
    animation: webhookPulse 3s ease-in-out infinite;
}

@keyframes webhookPulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.4;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.8;
    }
}

/* Interactive Elements */
.stat-card:hover {
    transform: translateY(-5px) scale(1.05);
}

.flow-step.active {
    transform: scale(1.1);
}

.flow-step.active > div {
    border-color: #8b5cf6;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
}

/* Full Page Asteroid styles moved to separate asteroids.css file for better performance */
.full-page-asteroids {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    pointer-events: none;
    z-index: 0;
}

.full-asteroid {
    position: absolute;
    object-fit: contain;
    filter: drop-shadow(0 0 30px rgba(74, 85, 104, 0.8));
    opacity: 1;
}

.asteroids-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.asteroid {
    position: absolute;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(74, 85, 104, 0.4));
    opacity: 0.7;
}

/* Full Page Asteroid Animations */
@keyframes fullAsteroidFloat1 {
    0% {
        transform: translateX(-400px) translateY(0px) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateX(calc(100vw + 400px)) translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

@keyframes fullAsteroidFloat2 {
    0% {
        transform: translateX(-500px) translateY(50px) rotate(0deg);
        opacity: 0;
    }
    15% {
        opacity: 1;
    }
    85% {
        opacity: 1;
    }
    100% {
        transform: translateX(calc(100vw + 500px)) translateY(-150px) rotate(-360deg);
        opacity: 0;
    }
}

@keyframes fullAsteroidFloat3 {
    0% {
        transform: translateX(-600px) translateY(-30px) rotate(0deg);
        opacity: 0;
    }
    12% {
        opacity: 1;
    }
    88% {
        opacity: 1;
    }
    100% {
        transform: translateX(calc(100vw + 600px)) translateY(80px) rotate(180deg);
        opacity: 0;
    }
}

@keyframes fullAsteroidFloat4 {
    0% {
        transform: translateX(-350px) translateY(80px) rotate(0deg);
        opacity: 0;
    }
    8% {
        opacity: 1;
    }
    92% {
        opacity: 1;
    }
    100% {
        transform: translateX(calc(100vw + 350px)) translateY(-120px) rotate(-180deg);
        opacity: 0;
    }
}

@keyframes fullAsteroidFloat5 {
    0% {
        transform: translateX(-450px) translateY(-20px) rotate(0deg);
        opacity: 0;
    }
    18% {
        opacity: 1;
    }
    82% {
        opacity: 1;
    }
    100% {
        transform: translateX(calc(100vw + 450px)) translateY(60px) rotate(270deg);
        opacity: 0;
    }
}

@keyframes fullAsteroidFloat6 {
    0% {
        transform: translateX(-550px) translateY(40px) rotate(0deg);
        opacity: 0;
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        transform: translateX(calc(100vw + 550px)) translateY(-80px) rotate(-270deg);
        opacity: 0;
    }
}

/* Full Page Asteroid Individual Styles */
.full-asteroid-1 {
    width: 350px;
    height: 350px;
    top: 20%;
    animation: fullAsteroidFloat1 45s linear infinite;
    animation-delay: 0s;
    transform: scaleX(-1); /* Flip horizontally */
}

.full-asteroid-2 {
    width: 400px;
    height: 400px;
    top: 60%;
    animation: fullAsteroidFloat2 50s linear infinite;
    animation-delay: 8s;
    transform: scaleY(-1); /* Flip vertically */
}

.full-asteroid-3 {
    width: 300px;
    height: 300px;
    top: 10%;
    animation: fullAsteroidFloat3 40s linear infinite;
    animation-delay: 16s;
    transform: rotate(45deg); /* Rotate 45 degrees */
}

.full-asteroid-4 {
    width: 450px;
    height: 450px;
    top: 70%;
    animation: fullAsteroidFloat4 55s linear infinite;
    animation-delay: 24s;
    transform: scaleX(-1) scaleY(-1); /* Flip both directions */
}

.full-asteroid-5 {
    width: 380px;
    height: 380px;
    top: 30%;
    animation: fullAsteroidFloat5 48s linear infinite;
    animation-delay: 32s;
    transform: rotate(-30deg); /* Rotate counter-clockwise */
}

.full-asteroid-6 {
    width: 320px;
    height: 320px;
    top: 80%;
    animation: fullAsteroidFloat6 42s linear infinite;
    animation-delay: 40s;
    transform: scaleX(-1) rotate(60deg); /* Flip and rotate */
}

/* Individual asteroid animations with random sizes and directions */
.asteroid-1 {
    width: 45px;
    height: 45px;
    top: 85%;
    animation: asteroidFloat1 18s linear infinite;
    animation-delay: 0s;
    transform: scaleX(-1); /* Flip horizontally */
}

.asteroid-2 {
    width: 60px;
    height: 60px;
    top: 88%;
    animation: asteroidFloat2 24s linear infinite;
    animation-delay: 3s;
    transform: scaleY(-1); /* Flip vertically */
}

.asteroid-3 {
    width: 35px;
    height: 35px;
    top: 82%;
    animation: asteroidFloat3 15s linear infinite;
    animation-delay: 6s;
    transform: rotate(45deg); /* Rotate 45 degrees */
}

.asteroid-4 {
    width: 50px;
    height: 50px;
    top: 90%;
    animation: asteroidFloat4 21s linear infinite;
    animation-delay: 9s;
    transform: scaleX(-1) scaleY(-1); /* Flip both directions */
}

.asteroid-5 {
    width: 40px;
    height: 40px;
    top: 86%;
    animation: asteroidFloat5 19s linear infinite;
    animation-delay: 12s;
    transform: rotate(-30deg); /* Rotate counter-clockwise */
}

.asteroid-6 {
    width: 55px;
    height: 55px;
    top: 84%;
    animation: asteroidFloat6 23s linear infinite;
    animation-delay: 15s;
    transform: scaleX(-1) rotate(60deg); /* Flip and rotate */
}

.asteroid-7 {
    width: 38px;
    height: 38px;
    top: 87%;
    animation: asteroidFloat7 17s linear infinite;
    animation-delay: 18s;
    transform: rotate(120deg); /* Different rotation */
}

.asteroid-8 {
    width: 65px;
    height: 65px;
    top: 89%;
    animation: asteroidFloat8 26s linear infinite;
    animation-delay: 21s;
    transform: scaleY(-1) rotate(-90deg); /* Flip and rotate */
}

/* Responsive adjustments for full page asteroids */
@media (max-width: 768px) {
    .full-asteroid-1 {
        width: 200px;
        height: 200px;
        top: 15%;
    }
    
    .full-asteroid-2 {
        width: 250px;
        height: 250px;
        top: 55%;
    }
    
    .full-asteroid-3 {
        width: 180px;
        height: 180px;
        top: 5%;
    }
    
    .full-asteroid-4 {
        width: 280px;
        height: 280px;
        top: 65%;
    }
    
    .full-asteroid-5 {
        width: 220px;
        height: 220px;
        top: 25%;
    }
    
    .full-asteroid-6 {
        width: 190px;
        height: 190px;
        top: 75%;
    }
}

/* Responsive adjustments for asteroids */
@media (max-width: 768px) {
    .asteroid-1 {
        width: 30px;
        height: 30px;
        top: 80%;
    }
    
    .asteroid-2 {
        width: 40px;
        height: 40px;
        top: 85%;
    }
    
    .asteroid-3 {
        width: 25px;
        height: 25px;
        top: 78%;
    }
    
    .asteroid-4 {
        width: 35px;
        height: 35px;
        top: 87%;
    }
    
    .asteroid-5 {
        width: 28px;
        height: 28px;
        top: 82%;
    }
    
    .asteroid-6 {
        width: 38px;
        height: 38px;
        top: 80%;
    }
    
    .asteroid-7 {
        width: 26px;
        height: 26px;
        top: 83%;
    }
    
    .asteroid-8 {
        width: 45px;
        height: 45px;
        top: 86%;
    }
}

/* Dropdown Menu Styles */
.nav-dropdown {
    position: relative;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu {
    pointer-events: none;
}

.nav-dropdown:hover .dropdown-menu {
    pointer-events: auto;
}

.dropdown-menu a {
    display: flex;
    align-items: center;
}

/* Mobile Submenu Styles */
.mobile-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
}

.mobile-submenu.active {
    max-height: 500px;
}

.mobile-dropdown button i.fa-chevron-down {
    transition: transform 0.3s ease;
}

.mobile-dropdown.active button i.fa-chevron-down {
    transform: rotate(180deg);
}

/* Enhanced Process Section Styles */
.group.animate-in {
    animation: slideInUp 0.6s ease-out forwards;
}

.group:hover .w-16.h-16 {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced card hover effects */
.group:hover {
    transform: translateY(-5px);
}

.group .relative {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Process flow - no gradient animation */
.bg-gray-800 {
    background-color: #1f2937;
}

.dark .bg-gray-900 {
    background-color: #111827;
}

/* Step number badge animations */
.group:hover .absolute.-top-4.-left-4 {
    transform: scale(1.1) rotate(5deg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Button hover enhancements */
.group button:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Grid pattern animation */
@keyframes gridFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.absolute.inset-0.opacity-5 {
    animation: gridFloat 6s ease-in-out infinite;
}

