/* Stellar Theme CSS */
:root {
    --stellar-dark: #0a0b1e;
    --stellar-purple: #6f42c1;
    --stellar-blue: #0d6efd;
    --stellar-light-purple: #a991d4;
    --stellar-gradient: linear-gradient(45deg, var(--stellar-purple), var(--stellar-blue));
}

/* Base Styles */
body.stellar-theme {
    background-color: var(--stellar-dark);
    color: #fff;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* Text Gradient */
.text-gradient {
    background: var(--stellar-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-light-purple {
    color: var(--stellar-light-purple);
}

/* Navigation */
.stellar-nav {
    background: rgba(10, 11, 30, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
}

.navbar-brand {
    font-size: 1.8rem;
    font-weight: bold;
}

.nav-link {
    color: #fff !important;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--stellar-light-purple) !important;
}

/* Buttons */
.btn-glow {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.btn-glow:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 20px rgba(111, 66, 193, 0.5);
}

.btn-primary {
    background: var(--stellar-gradient);
    border: none;
}

/* Cards */
.feature-card, .content-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-card:hover, .content-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(111, 66, 193, 0.2);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    background: var(--stellar-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Hero Section */
.hero-section {
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

.tech-sphere {
    width: 400px;
    height: 400px;
    background: var(--stellar-gradient);
    border-radius: 50%;
    position: relative;
    filter: blur(100px);
    opacity: 0.3;
}

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

.stat-icon {
    font-size: 2rem;
    color: var(--stellar-light-purple);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    background: var(--stellar-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Footer */
.stellar-footer {
    background: rgba(10, 11, 30, 0.95);
    padding-top: 4rem;
    margin-top: 4rem;
}

.footer-links, .footer-contact {
    list-style: none;
    padding: 0;
}

.footer-links a, .footer-contact li {
    color: var(--stellar-light-purple);
    text-decoration: none;
    margin-bottom: 0.5rem;
    display: block;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
}

.social-links {
    margin-top: 1.5rem;
}

.social-link {
    color: var(--stellar-light-purple);
    font-size: 1.5rem;
    margin-right: 1rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #fff;
}

.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 2rem 0;
}

.newsletter-form .form-control {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
}

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

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

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

.text-muted {
    --bs-text-opacity: 1;
    color: rgb(181 181 181 / 75%) !important;
}

