/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Adelle Sans', 'Source Sans Pro', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #ffffff;
    background: linear-gradient(135deg, #0f0f23 0%, #1a1a2e 25%, #16213e 50%, #0f0f23 100%);
    min-height: 100vh;
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header Styles */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 15, 35, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(139, 92, 246, 0.1);
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(15, 15, 35, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav {
    padding: 16px 0;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.brand-text {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 2px;
    color: #ffffff;
    text-decoration: none;
}

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

.nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
    align-items: center;
}

.nav-link {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #8B5CF6;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #8B5CF6;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    gap: 4px;
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: #ffffff;
    transition: all 0.3s ease;
}

/* Button Styles */
.btn-primary {
    background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
}

.btn-large {
    padding: 16px 32px;
    font-size: 16px;
    border-radius: 12px;
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(139, 92, 246, 0.5);
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    font-size: 14px;
}

.btn-secondary:hover {
    background: rgba(139, 92, 246, 0.1);
    border-color: #8B5CF6;
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
}

.hero-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    padding: 8px 16px;
    border-radius: 24px;
    margin-bottom: 32px;
    font-size: 14px;
    font-weight: 500;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.badge-icon {
    font-size: 16px;
}

.hero-title {
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.hero-highlight {
    background: linear-gradient(135deg, #8B5CF6 0%, #A855F7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.8s both;
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about {
    padding: 120px 0;
    position: relative;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(139, 92, 246, 0.05) 50%, transparent 100%);
}

.about-content {
    position: relative;
    z-index: 1;
}

.about-description {
    font-size: 18px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 48px;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-top: 48px;
}

.stat-item {
    text-align: center;
    padding: 32px 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-4px);
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.4);
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #8B5CF6;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
}

/* Services Section */
.services {
    padding: 120px 0;
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.service-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.2);
    border-color: rgba(139, 92, 246, 0.4);
}

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

.service-icon {
    font-size: 48px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.service-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.service-description {
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.service-features {
    list-style: none;
    text-align: left;
    position: relative;
    z-index: 1;
}

.service-features li {
    padding: 8px 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    position: relative;
    padding-left: 20px;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #8B5CF6;
    font-weight: bold;
}

/* Contact Section */
.contact {
    padding: 120px 0;
    background: linear-gradient(180deg, transparent 0%, rgba(139, 92, 246, 0.05) 100%);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(139, 92, 246, 0.1);
    transform: translateX(8px);
}

.contact-icon {
    font-size: 24px;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    flex-shrink: 0;
}

.contact-details h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #ffffff;
}

.contact-details p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.5;
}

/* Form Styles */
.contact-form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 20px;
    padding: 40px;
}

.form-group {
    margin-bottom: 24px;
}

.form-input {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 12px;
    color: #ffffff;
    font-size: 16px;
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: #8B5CF6;
    background: rgba(139, 92, 246, 0.1);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
}

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

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0a0a1a 0%, #1a1a2e 100%);
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    padding: 64px 0 32px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 48px;
    align-items: start;
    margin-bottom: 32px;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    margin-top: 16px;
    max-width: 400px;
}

.footer-social {
    display: flex;
    gap: 16px;
    justify-content: flex-end;
}

.social-link {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: rgba(139, 92, 246, 0.2);
    color: #8B5CF6;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(139, 92, 246, 0.1);
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Galaxy Orb Styles */
.galaxy-orb-container {
    position: relative;
    display: flex;
    justify-content: center;
    margin-top: 48px;
    animation: fadeInUp 0.8s ease 1s both;
}

.galaxy-orb {
    position: relative;
    width: 120px;
    height: 120px;
    cursor: pointer;
    transition: all 0.3s ease;
    animation: galaxyFloat 6s ease-in-out infinite;
}

.galaxy-orb:hover {
    transform: scale(1.1);
}

.galaxy-core {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, #ffffff 0%, #8B5CF6 30%, #A855F7 70%, #1a1a2e 100%);
    border-radius: 50%;
    box-shadow: 
        0 0 20px rgba(139, 92, 246, 0.8),
        0 0 40px rgba(139, 92, 246, 0.6),
        0 0 60px rgba(139, 92, 246, 0.4),
        inset 0 0 20px rgba(255, 255, 255, 0.3);
    animation: coreGlow 4s ease-in-out infinite alternate;
}

.galaxy-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 2px solid transparent;
    background: linear-gradient(45deg, transparent, rgba(139, 92, 246, 0.6), transparent, rgba(168, 85, 247, 0.4), transparent);
    background-clip: padding-box;
    animation: galaxyRotate 8s linear infinite;
}

.ring-1 {
    width: 80px;
    height: 80px;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(139, 92, 246, 0.3);
    animation-duration: 12s;
    animation-direction: normal;
}

.ring-2 {
    width: 100px;
    height: 100px;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(168, 85, 247, 0.2);
    animation-duration: 16s;
    animation-direction: reverse;
}

.ring-3 {
    width: 120px;
    height: 120px;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(139, 92, 246, 0.1);
    animation-duration: 20s;
    animation-direction: normal;
}

.galaxy-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.particle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: #ffffff;
    border-radius: 50%;
    box-shadow: 0 0 6px rgba(255, 255, 255, 0.8);
    animation: particleOrbit 10s linear infinite;
}

.particle-1 {
    top: 20%;
    left: 50%;
    animation-delay: 0s;
    animation-duration: 8s;
}

.particle-2 {
    top: 50%;
    left: 80%;
    animation-delay: -2s;
    animation-duration: 12s;
}

.particle-3 {
    top: 80%;
    left: 50%;
    animation-delay: -4s;
    animation-duration: 10s;
}

.particle-4 {
    top: 50%;
    left: 20%;
    animation-delay: -6s;
    animation-duration: 14s;
}

.particle-5 {
    top: 30%;
    left: 30%;
    animation-delay: -1s;
    animation-duration: 9s;
}

.particle-6 {
    top: 70%;
    left: 70%;
    animation-delay: -3s;
    animation-duration: 11s;
}

/* Galaxy Orb Animations */
@keyframes galaxyFloat {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    25% {
        transform: translateY(-8px) rotate(90deg);
    }
    50% {
        transform: translateY(-12px) rotate(180deg);
    }
    75% {
        transform: translateY(-8px) rotate(270deg);
    }
}

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

@keyframes coreGlow {
    0% {
        box-shadow: 
            0 0 20px rgba(139, 92, 246, 0.8),
            0 0 40px rgba(139, 92, 246, 0.6),
            0 0 60px rgba(139, 92, 246, 0.4),
            inset 0 0 20px rgba(255, 255, 255, 0.3);
    }
    100% {
        box-shadow: 
            0 0 30px rgba(139, 92, 246, 1),
            0 0 60px rgba(139, 92, 246, 0.8),
            0 0 90px rgba(139, 92, 246, 0.6),
            inset 0 0 30px rgba(255, 255, 255, 0.5);
    }
}

@keyframes particleOrbit {
    0% {
        transform: rotate(0deg) translateX(40px) rotate(0deg);
        opacity: 0.3;
    }
    25% {
        opacity: 1;
    }
    50% {
        transform: rotate(180deg) translateX(40px) rotate(-180deg);
        opacity: 0.8;
    }
    75% {
        opacity: 0.6;
    }
    100% {
        transform: rotate(360deg) translateX(40px) rotate(-360deg);
        opacity: 0.3;
    }
}

@keyframes rippleEffect {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(4);
        opacity: 0;
    }
}

.ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    border: 2px solid rgba(139, 92, 246, 0.6);
    border-radius: 50%;
    animation: rippleEffect 0.6s ease-out;
    pointer-events: none;
}

/* Responsive adjustments for galaxy orb */
@media (max-width: 767px) {
    .galaxy-orb-container {
        margin-top: 32px;
    }
    
    .galaxy-orb {
        width: 80px;
        height: 80px;
    }
    
    .galaxy-core {
        width: 28px;
        height: 28px;
    }
    
    .ring-1 {
        width: 60px;
        height: 60px;
    }
    
    .ring-2 {
        width: 70px;
        height: 70px;
    }
    
    .ring-3 {
        width: 80px;
        height: 80px;
    }
    
    .particle {
        width: 2px;
        height: 2px;
    }
    
    @keyframes particleOrbit {
        0% {
            transform: rotate(0deg) translateX(25px) rotate(0deg);
            opacity: 0.3;
        }
        25% {
            opacity: 1;
        }
        50% {
            transform: rotate(180deg) translateX(25px) rotate(-180deg);
            opacity: 0.8;
        }
        75% {
            opacity: 0.6;
        }
        100% {
            transform: rotate(360deg) translateX(25px) rotate(-360deg);
            opacity: 0.3;
        }
    }
}

@media (max-width: 480px) {
    .galaxy-orb {
        width: 60px;
        height: 60px;
    }
    
    .galaxy-core {
        width: 20px;
        height: 20px;
    }
    
    .ring-1 {
        width: 45px;
        height: 45px;
    }
    
    .ring-2 {
        width: 52px;
        height: 52px;
    }
    
    .ring-3 {
        width: 60px;
        height: 60px;
    }
    
    @keyframes particleOrbit {
        0% {
            transform: rotate(0deg) translateX(18px) rotate(0deg);
            opacity: 0.3;
        }
        25% {
            opacity: 1;
        }
        50% {
            transform: rotate(180deg) translateX(18px) rotate(-180deg);
            opacity: 0.8;
        }
        75% {
            opacity: 0.6;
        }
        100% {
            transform: rotate(360deg) translateX(18px) rotate(-360deg);
            opacity: 0.3;
        }
    }
}
/* Responsive Design */
@media (max-width: 1199px) {
    .container {
        padding: 0 20px;
    }
    
    .nav-container {
        padding: 0 20px;
    }
    
    .hero {
        padding: 100px 20px 60px;
    }
    
    .section-title {
        font-size: 40px;
    }
    
    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 24px;
    }
    
    .contact-content {
        gap: 48px;
    }
}

@media (max-width: 767px) {
    .container {
        padding: 0 16px;
    }
    
    .nav-container {
        padding: 0 16px;
    }
    
    .nav-list {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(15, 15, 35, 0.98);
        backdrop-filter: blur(10px);
        border-top: 1px solid rgba(139, 92, 246, 0.2);
        flex-direction: column;
        gap: 0;
        padding: 24px;
    }
    
    .nav-list.active {
        display: flex;
    }
    
    .nav-item {
        width: 100%;
    }
    
    .nav-link {
        display: block;
        padding: 16px 0;
        border-bottom: 1px solid rgba(139, 92, 246, 0.1);
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active .hamburger-line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero {
        padding: 80px 16px 60px;
        min-height: 90vh;
    }
    
    .hero-title {
        font-size: clamp(36px, 10vw, 48px);
        margin-bottom: 20px;
    }
    
    .hero-description {
        font-size: 18px;
        margin-bottom: 32px;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        width: 100%;
        max-width: 280px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .section-subtitle {
        font-size: 18px;
    }
    
    .about,
    .services,
    .contact {
        padding: 80px 0;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .service-card {
        padding: 32px 24px;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form {
        padding: 32px 24px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }
    
    .footer-social {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 12px;
    }
    
    .nav-container {
        padding: 0 12px;
    }
    
    .hero {
        padding: 60px 12px 40px;
    }
    
    .brand-text {
        font-size: 20px;
    }
    
    .hero-badge {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .hero-title {
        font-size: 28px;
        margin-bottom: 16px;
    }
    
    .hero-description {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .section-subtitle {
        font-size: 16px;
    }
    
    .service-card {
        padding: 24px 20px;
    }
    
    .service-title {
        font-size: 20px;
    }
    
    .contact-form {
        padding: 24px 20px;
    }
    
    .form-input {
        padding: 14px 16px;
        font-size: 14px;
    }
}

/* Utility Classes */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Smooth scroll enhancement */
@media (prefers-reduced-motion: no-preference) {
    html {
        scroll-behavior: smooth;
    }
}

/* Focus styles for accessibility */
.btn-primary:focus,
.btn-secondary:focus,
.nav-link:focus,
.form-input:focus {
    outline: 2px solid #8B5CF6;
    outline-offset: 2px;
}

/* Loading state */
.loading {
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

/* Animated Background with Floating Shapes */
.animated-background {
    position: absolute;
    inset: 0;
    overflow: hidden;
    z-index: 0;
}

.gradient-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0d1117 0%, #1a0b3d 50%, #2d1b69 100%);
}

.floating-shapes {
    position: absolute;
    inset: 0;
}

/* Purple Cube */
.floating-shape-1 {
    position: absolute;
    top: 50%;
    left: 25%;
    transform: translate(-50%, -50%) rotate(12deg);
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #a855f7 0%, #9333ea 100%);
    border-radius: 8px;
    opacity: 0.8;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}