/* Base Styles */
:root {
    --primary-color: #FFD700!important;
    --primary-dark: #FFC000 !important;
    --primary-darker: #FFA500 !important;
    --secondary-color: #1A1A2E !important;
    --accent-color: #4E4E6A !important;
    --text-color: #FFFFFF !important;
    --text-secondary: #CCCCCC !important;
    --dark-bg: #0F0F1A !important;
    --darker-bg: #0A0A12 !important;
    --success-color: #28A745 !important;
    --warning-color: #FFC107 !important;
    --danger-color: #DC3545 !important;
    --info-color: #17A2B8 !important;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--text-color);
    background-color: var(--dark-bg);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    margin-bottom: 1rem;
}

p {
    line-height: 1.6;
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

a:hover {
    color: var(--primary-dark);
}

.btn {
    font-family: 'Orbitron', sans-serif;
    font-weight: 500;
    padding: 0.75rem 1.5rem;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.75rem;
}

.container {
    max-width: 1200px;
    padding: 0 1.5rem;
}

.section {
    min-height: 100vh;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

/* Background Shapes */
.bg-shapes {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.shape-1, .shape-2, .shape-3, .shape-4 {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,215,0,0.1) 0%, rgba(255,215,0,0) 70%);
    filter: blur(20px);
    animation: float 15s infinite linear;
}

.shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.shape-2 {
    width: 400px;
    height: 400px;
    bottom: 15%;
    right: 10%;
    animation-delay: 2.5s;
    animation-duration: 20s;
}

.shape-3 {
    width: 250px;
    height: 250px;
    top: 50%;
    left: 20%;
    animation-delay: 5s;
    animation-duration: 18s;
}

.shape-4 {
    width: 350px;
    height: 350px;
    bottom: 5%;
    left: 30%;
    animation-delay: 7.5s;
    animation-duration: 25s;
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(50px, 50px) rotate(90deg);
    }
    50% {
        transform: translate(0, 100px) rotate(180deg);
    }
    75% {
        transform: translate(-50px, 50px) rotate(270deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}

/* Navigation */
.navbar {
    background-color: rgba(10, 10, 18, 0.9);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    padding: 0.5rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.navbar-brand {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
}

.logo-text {
    color: var(--primary-color);
}

.logo-global {
    color: var(--text-color);
    margin-left: 0.25rem;
}

.nav-link {
    font-family: 'Orbitron', sans-serif;
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 0.5rem 1rem;
    margin: 0 0.25rem;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after, .nav-link.active::after {
    width: 70%;
}

.dropdown-menu {
    background-color: var(--darker-bg);
    border: 1px solid var(--accent-color);
    border-radius: 0.25rem;
    padding: 0.5rem 0;
}

.dropdown-item {
    color: var(--text-secondary);
    padding: 0.5rem 1.5rem;
    font-size: 0.85rem;
}

.dropdown-item:hover {
    background-color: rgba(255, 215, 0, 0.1);
    color: var(--primary-color);
}

.auth-buttons .btn {
    margin-left: 0.5rem;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9) 0%, rgba(10, 10, 18, 0.95) 100%);
    display: flex;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-title span {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.hero-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 10px;
    background-color: rgba(255, 215, 0, 0.3);
    z-index: -1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    max-width: 80%;
}

.hero-buttons {
    display: flex;
    margin-top: 2rem;
}

.hero-image-container {
    position: relative;
    padding: 2rem;
}

.hero-image-container img {
    border-radius: 0.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 2;
}

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.floating-element-1, .floating-element-2, .floating-element-3 {
    position: absolute;
    border-radius: 0.5rem;
    background-color: rgba(255, 215, 0, 0.1);
    backdrop-filter: blur(5px);
    animation: float 10s infinite ease-in-out;
}

.floating-element-1 {
    width: 100px;
    height: 100px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.floating-element-2 {
    width: 80px;
    height: 80px;
    bottom: 15%;
    right: 10%;
    animation-delay: 2s;
    animation-duration: 12s;
}

.floating-element-3 {
    width: 60px;
    height: 60px;
    top: 60%;
    left: 20%;
    animation-delay: 4s;
    animation-duration: 15s;
}

.hero-stats {
    display: flex;
    margin-top: 3rem;
    gap: 2rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Services Section */
.services-section {
    background: linear-gradient(to bottom, var(--dark-bg) 0%, var(--darker-bg) 100%);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title span {
    color: var(--primary-color);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 3rem;
}

.service-card {
    background: rgba(26, 26, 46, 0.7);
    border-radius: 0.5rem;
    padding: 2rem;
    height: 100%;
    transition: all 0.3s ease;
    border: 1px solid rgba(78, 78, 106, 0.3);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,215,0,0.1) 0%, rgba(255,215,0,0) 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.3);
}

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

.service-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    color: var(--primary-color);
}

.service-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.service-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-link i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

/* Technology Section */
.technology-section {
    background: linear-gradient(to right, var(--dark-bg) 0%, var(--darker-bg) 100%);
}

.tech-feature {
    display: flex;
    margin-bottom: 2rem;
}

.tech-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    font-size: 1.25rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.tech-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.tech-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.tech-visual {
    position: relative;
    padding: 2rem;
}

.tech-circle {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 215, 0, 0.2);
    animation: pulse 8s infinite ease-in-out;
}

.tech-circle-1 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 0s;
}

.tech-circle-2 {
    width: 400px;
    height: 400px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 1s;
}

.tech-circle-3 {
    width: 500px;
    height: 500px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 2s;
}

@keyframes pulse {
    0%, 100% {
        opacity: 0.3;
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        opacity: 0.1;
        transform: translate(-50%, -50%) scale(1.05);
    }
}

.tech-visual img {
    position: relative;
    z-index: 2;
    border-radius: 0.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    width: 100%;
}

/* Resources Section */
.resources-section {
    background: linear-gradient(to bottom, var(--darker-bg) 0%, var(--dark-bg) 100%);
}

.resource-card {
    background: rgba(26, 26, 46, 0.7);
    border-radius: 0.5rem;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid rgba(78, 78, 106, 0.3);
    height: 100%;
    position: relative;
}

.resource-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.3);
}

.resource-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 2;
}

.resource-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.resource-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(10, 10, 18, 0) 0%, rgba(10, 10, 18, 0.8) 100%);
}

.resource-content {
    padding: 1.5rem;
}

.resource-category {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.resource-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

.resource-description {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.resource-link {
    display: inline-flex;
    align-items: center;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.resource-link i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.resource-link:hover i {
    transform: translateX(5px);
}

/* About Section */
.about-section {
    background: linear-gradient(to right, var(--darker-bg) 0%, var(--dark-bg) 100%);
}

.about-timeline {
    position: relative;
    padding-left: 2rem;
    margin-top: 2rem;
}

.about-timeline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background-color: var(--primary-color);
}

.timeline-item {
    position: relative;
    padding-bottom: 2rem;
}

.timeline-item:last-child {
    padding-bottom: 0;
}

.timeline-year {
    position: absolute;
    left: -3.5rem;
    top: 0;
    width: 2.5rem;
    height: 2.5rem;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 0.85rem;
}

.timeline-content {
    background: rgba(26, 26, 46, 0.7);
    border-radius: 0.5rem;
    padding: 1.5rem;
    border: 1px solid rgba(78, 78, 106, 0.3);
}

.timeline-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--text-color);
}

.timeline-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.mission-card {
    background: rgba(26, 26, 46, 0.7);
    border-radius: 0.5rem;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(78, 78, 106, 0.3);
}

.mission-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--primary-color);
}

.mission-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.mission-stats {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

/* Contact Section */
.contact-section {
    background: linear-gradient(to bottom, var(--dark-bg) 0%, var(--darker-bg) 100%);
}

.contact-info {
    margin-top: 2rem;
}

.contact-item {
    display: flex;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1.5rem;
    font-size: 1.25rem;
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-details h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
    color: var(--text-color);
}

.contact-details p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.contact-social {
    margin-top: 3rem;
}

.contact-social h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-color);
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
}

.contact-form-container {
    background: rgba(26, 26, 46, 0.7);
    border-radius: 0.5rem;
    padding: 2rem;
    border: 1px solid rgba(78, 78, 106, 0.3);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-control {
    background-color: rgba(10, 10, 18, 0.7);
    border: 1px solid rgba(78, 78, 106, 0.5);
    color: var(--text-color);
    padding: 0.75rem 1rem;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    background-color: rgba(10, 10, 18, 0.9);
    border-color: var(--primary-color);
    color: var(--text-color);
    box-shadow: 0 0 0 0.25rem rgba(255, 215, 0, 0.25);
}

.form-control::placeholder {
    color: var(--text-secondary);
    opacity: 0.7;
}

/* Footer */
.footer {
    background-color: var(--darker-bg);
    padding: 4rem 0 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, transparent 0%, var(--primary-color) 50%, transparent 100%);
}

.footer-logo {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-about {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.footer-title {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
}

.newsletter-form {
    display: flex;
    margin-top: 1rem;
}

.newsletter-form input {
    flex: 1;
    background-color: rgba(10, 10, 18, 0.7);
    border: 1px solid rgba(78, 78, 106, 0.5);
    color: var(--text-color);
    padding: 0.5rem 1rem;
    border-radius: 0.25rem 0 0 0.25rem;
    border-right: none;
}

.newsletter-form button {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: none;
    padding: 0 1rem;
    border-radius: 0 0.25rem 0.25rem 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background-color: var(--primary-dark);
}

.footer-bottom {
    border-top: 1px solid rgba(78, 78, 106, 0.3);
    padding: 1.5rem 0;
    margin-top: 3rem;
}

.copyright {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.footer-payments {
    display: flex;
    justify-content: flex-end;
    gap: 1rem;
}

.footer-payments i {
    font-size: 1.5rem;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.footer-payments i:hover {
    color: var(--primary-color);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background-color: var(--primary-dark);
    transform: translateY(-5px);
}

/* Responsive Styles */
@media (max-width: 1199.98px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 991.98px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        max-width: 100%;
    }
    
    .section {
        padding: 4rem 0;
        padding-top: 7rem !important;
    }
    
    .footer-payments {
        justify-content: flex-start;
        margin-top: 1rem;
    }
}

@media (max-width: 767.98px) {
    .hero-title {
        font-size: 2.25rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-buttons .btn {
        margin-right: 0;
        margin-bottom: 1rem;
        width: 100%;
    }
    
    .hero-buttons .btn:last-child {
        margin-bottom: 0;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .mission-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-item {
        flex-direction: column;
    }
    
    .contact-icon {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .navbar-brand {
        font-size: 1.25rem;
    }
    
    .auth-buttons {
        margin-top: 1rem;
    }
    
    .auth-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .auth-buttons .btn:last-child {
        margin-bottom: 0;
    }
}

/* Mobile Sidebar Navigation */
.mobile-sidebar {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100vh;
    background-color: var(--darker-bg);
    z-index: 9999;
    transition: all 0.5s ease;
    overflow-y: auto;
    box-shadow: 5px 0 30px rgba(0, 0, 0, 0.3);
    border-right: 1px solid rgba(255, 215, 0, 0.1);
}

.mobile-sidebar.active {
    left: 0;
}

.sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(78, 78, 106, 0.3);
}

.sidebar-logo {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
}

.sidebar-close {
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sidebar-close:hover {
    color: var(--primary-color);
    transform: rotate(90deg);
}

.sidebar-content {
    padding: 1.5rem;
}

.sidebar-menu {
    list-style: none;
    margin-bottom: 2rem;
}

.sidebar-menu li {
    margin-bottom: 0.5rem;
}

.sidebar-menu li a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    color: var(--text-color);
    border-radius: 0.25rem;
    transition: all 0.3s ease;
}

.sidebar-menu li a:hover,
.sidebar-menu li a.active {
    background-color: rgba(255, 215, 0, 0.1);
    color: var(--primary-color);
}

.sidebar-menu li a i {
    font-size: 0.75rem;
    transition: transform 0.3s ease;
}

.sidebar-menu li.menu-item-has-children.active > a i {
    transform: rotate(180deg);
}

.sub-menu {
    list-style: none;
    padding-left: 1rem;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.sub-menu.active {
    max-height: 500px;
}

.sub-menu li a {
    padding: 0.5rem 1rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.sub-menu li a:hover {
    color: var(--primary-color);
}

.sidebar-auth {
    display: flex;
    margin: 2rem 0;
    padding: 1rem 0;
    border-top: 1px solid rgba(78, 78, 106, 0.3);
    border-bottom: 1px solid rgba(78, 78, 106, 0.3);
}

.sidebar-auth .btn {
    flex: 1;
    text-align: center;
}

.sidebar-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.sidebar-social a {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 215, 0, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.sidebar-social a:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
}

.mobile-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s ease;
}

.mobile-sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu Toggle Button */
.navbar-toggler {
    border: none;
    padding: 0.5rem;
    font-size: 1.25rem;
    color: var(--text-color);
    background: none;
    outline: none;
}

.navbar-toggler:focus {
    box-shadow: none;
}

@media (min-width: 992px) {
    .mobile-sidebar,
    .mobile-sidebar-overlay {
        display: none;
    }
}

/* Auth Pages Base Styles */
.auth-container {
    display: flex;
    min-height: 100vh;
    background-color: var(--dark-bg);
}

.auth-left {
    flex: 1;
    background: linear-gradient(135deg, rgba(26, 26, 46, 0.9), rgba(10, 10, 18, 0.95)), 
                url('../images/auth-bg.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.auth-left-content {
    max-width: 600px;
    z-index: 2;
}

.auth-left-content span{
    color: var(--primary-color)
}

.auth-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
}

.auth-form-container {
    width: 100%;
    max-width: 450px;
    background: rgba(26, 26, 46, 0.8);
    border-radius: 0.5rem;
    padding: 2.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 215, 0, 0.2);
    position: relative;
    overflow: hidden;
}
.auth-form-container i {
    color: var(--primary-dark) !important;
}

.auth-form-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,215,0,0.05) 0%, rgba(255,215,0,0) 70%);
    z-index: -1;
    animation: rotate 20s linear infinite;
}

.auth-logo {
    text-align: center;
    margin-bottom: 2rem;
}

.auth-logo svg {
    height: 50px;
    width: auto;
}

.auth-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--primary-color);
}

.auth-subtitle {
    font-size: 1rem;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
    position: relative;
}

.form-label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.form-control {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    background-color: rgba(10, 10, 18, 0.7);
    border: 1px solid rgba(78, 78, 106, 0.5);
    border-radius: 0.25rem;
    color: var(--text-color);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(255, 215, 0, 0.25);
    outline: none;
}

.input-icon {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1rem;
}

.btn-auth {
    width: 100%;
    padding: 0.75rem;
    font-family: 'Orbitron', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 0.25rem;
    transition: all 0.3s ease;
}

.btn-auth-primary {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    border: 2px solid var(--primary-color);
}

.btn-auth-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.auth-footer {
    margin-top: 2rem;
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.auth-link {
    color: var(--primary-color);
    font-weight: 500;
    transition: all 0.3s ease;
}

.auth-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.auth-divider {
    display: flex;
    align-items: center;
    margin: 1.5rem 0;
    color: var(--text-secondary);
    font-size: 0.8rem;
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(78, 78, 106, 0.5);
}

.auth-divider::before {
    margin-right: 1rem;
}

.auth-divider::after {
    margin-left: 1rem;
}

.social-auth {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(10, 10, 18, 0.7);
    border: 1px solid rgba(78, 78, 106, 0.5);
    color: var(--text-color);
    transition: all 0.3s ease;
}

.social-btn:hover {
    background-color: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
}

/* Animated Background Elements */
.auth-shape-1, .auth-shape-2, .auth-shape-3 {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,215,0,0.1) 0%, rgba(255,215,0,0) 70%);
    filter: blur(20px);
    animation: float 15s infinite linear;
}

.auth-shape-1 {
    width: 300px;
    height: 300px;
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.auth-shape-2 {
    width: 400px;
    height: 400px;
    bottom: 15%;
    right: 10%;
    animation-delay: 2.5s;
    animation-duration: 20s;
}

.auth-shape-3 {
    width: 250px;
    height: 250px;
    top: 50%;
    left: 20%;
    animation-delay: 5s;
    animation-duration: 18s;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .auth-container {
        flex-direction: column;
    }
    
    .auth-left {
        display: none;
    }
    
    .auth-right {
        padding: 1rem;
    }
    
    .auth-form-container {
        padding: 1.5rem;
        margin-top: 3rem;
    }
    
    .auth-logo {
        margin-bottom: 1rem;
    }
    
    .auth-title {
        font-size: 1.5rem;
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes float {
    0% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(50px, 50px) rotate(90deg);
    }
    50% {
        transform: translate(0, 100px) rotate(180deg);
    }
    75% {
        transform: translate(-50px, 50px) rotate(270deg);
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
    }
}



.form-control.otp-input {
    padding: 0 !important;
    
    height: 40px;
    text-align: center;
}
