/* Dark Theme Variables */
:root {
    --primary-black: #000000;
    --secondary-black: #1a1a1a;
    --tertiary-black: #2a2a2a;
    --accent-white: #ffffff;
    --accent-gray: #cccccc;
    --white: #ffffff;
    --text-primary: #000000;
    --text-secondary: #000000;
    --text-muted: #000000;
    --border-dark: #333333;
    --shadow-glow: 0 0 20px rgba(255, 255, 255, 0.3);
    --gradient-dark: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #333333 100%);
    --gradient-white: linear-gradient(135deg, #ffffff 0%, #f0f0f0 50%, #ffffff 100%);
    --gradient-subtle: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
}

/* Body and General Styling */
body {
    background: #000000 !important;
    color: #ffffff !important;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Force white text in footer */
footer, footer *, footer h6, footer p, footer span, footer a, footer strong {
    color: #ffffff !important;
}

footer .text-muted, footer .small {
    color: #ffffff !important;
}

footer .mb-2, footer .mb-3 {
    color: #ffffff !important;
}

/* Override Bootstrap text colors in footer */
footer .text-center, footer .text-center * {
    color: #ffffff !important;
}

/* Additional footer text overrides */
footer h1, footer h2, footer h3, footer h4, footer h5, footer h6 {
    color: #ffffff !important;
}

footer .container, footer .container * {
    color: #ffffff !important;
}

footer .row, footer .row * {
    color: #ffffff !important;
}

/* Animated Background */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 40% 40%, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
    animation: backgroundPulse 8s ease-in-out infinite;
    pointer-events: none;
    z-index: -1;
}

@keyframes backgroundPulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

/* Navigation Bar */
.navbar {
    background: #000000 !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid #333333;
    box-shadow: 0 2px 10px rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.navbar-brand {
    color: var(--accent-white) !important;
    font-family: 'Times New Roman', serif;
    font-weight: bold;
    font-size: 1.8rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.navbar-brand:hover {
    color: var(--accent-white) !important;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.9);
}

.nav-link {
    color: var(--accent-white) !important;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    font-size: 1.1rem;
}

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

.nav-link:hover {
    color: var(--accent-white) !important;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.9);
    transform: translateY(-1px);
}

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

/* Hero Section */
.hero-section {
    background: #000000;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}



.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    background: var(--gradient-white);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.5);
    animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
    from { filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3)); }
    to { filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.6)); }
}

.hero-subtitle {
    font-size: 1.4rem;
    color: var(--accent-white) !important;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    font-weight: 500;
}

.hero-button {
    background: #ffffff !important;
    color: #000000 !important;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.2rem;
    font-weight: 700;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
}

.hero-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.4);
    color: #000000 !important;
    background: #ffffff !important;
    text-decoration: none;
}

/* Cards and Sections */
.card {
    background: var(--tertiary-black);
    border: 1px solid var(--border-dark);
    border-radius: 20px;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-subtle);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 255, 255, 0.2);
    border-color: var(--accent-white);
}

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

.card-body {
    position: relative;
    z-index: 2;
    color: var(--text-primary);
}

/* Feature Cards */
.feature-card {
    background: var(--tertiary-black);
    border: 1px solid var(--border-dark);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.feature-card:hover {
    transform: translateY(-15px) rotateY(5deg);
    box-shadow: 0 25px 50px rgba(255, 255, 255, 0.3);
    border-color: var(--accent-white);
}

.feature-icon {
    font-size: 3rem;
    color: var(--accent-white);
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

/* Animated Particles */
.particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--accent-white);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
    opacity: 0.7;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; animation-delay: 0.5s; }
.particle:nth-child(3) { left: 30%; animation-delay: 1s; }
.particle:nth-child(4) { left: 40%; animation-delay: 1.5s; }
.particle:nth-child(5) { left: 50%; animation-delay: 2s; }
.particle:nth-child(6) { left: 60%; animation-delay: 2.5s; }
.particle:nth-child(7) { left: 70%; animation-delay: 3s; }
.particle:nth-child(8) { left: 80%; animation-delay: 3.5s; }
.particle:nth-child(9) { left: 90%; animation-delay: 4s; }

@keyframes float {
    0%, 100% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 0.7;
    }
    90% {
        opacity: 0.7;
    }
    100% {
        transform: translateY(-100px) rotate(360deg);
        opacity: 0;
    }
}

/* Text Styling */
h1, h2, h3, h4, h5, h6 {
    color: var(--text-primary) !important;
    font-weight: 700;
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
}

p {
    color: var(--text-primary) !important;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
}

.text-muted {
    color: var(--text-primary) !important;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
}

.text-white {
    color: var(--accent-white) !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
    font-weight: 600;
}

/* Form Labels */
.form-label {
    color: var(--accent-white) !important;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
    margin-bottom: 0.75rem;
}

/* Button Styles */
.btn-primary {
    background: var(--gradient-white);
    border: none;
    color: var(--primary-black);
    font-weight: 600;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-outline-secondary {
    border-color: var(--accent-white);
    color: var(--accent-white) !important;
    background: transparent;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.8);
}

.btn-outline-secondary:hover {
    background: var(--accent-white);
    color: var(--primary-black) !important;
    border-color: var(--accent-white);
}

/* Dropdown Menu Styling */
.dropdown-menu {
    background-color: var(--secondary-black);
    border: 1px solid var(--border-dark);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.dropdown-item {
    color: var(--accent-white) !important;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: var(--tertiary-black);
    color: var(--accent-white) !important;
}

.dropdown-header {
    color: var(--accent-gray) !important;
    font-weight: 600;
}

.dropdown-divider {
    border-color: var(--border-dark);
}

/* Hamburger Menu Icon */
.nav-link .fa-bars {
    font-size: 1.2rem;
    color: var(--accent-white) !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.8);
}

.nav-link:hover .fa-bars {
    color: var(--accent-white) !important;
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.9);
}

/* Quick Links Section */
.quick-links-section {
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.quick-link-btn {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--accent-white);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    min-width: 120px;
    justify-content: center;
}

.quick-link-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--accent-white);
    color: var(--accent-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.2);
    text-decoration: none;
}

.quick-link-btn i {
    color: var(--accent-white);
}





.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
    color: var(--primary-black);
}

.btn-outline-light {
    border-color: var(--accent-gold);
    color: var(--accent-gold);
    background: transparent;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: var(--accent-gold);
    color: var(--primary-black);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

/* Footer */
footer {
    background: var(--secondary-black) !important;
    border-top: 1px solid var(--border-dark);
    color: var(--text-secondary);
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--secondary-black);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-white);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-gray);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .feature-card:hover {
        transform: translateY(-10px);
    }
}