/* NerdiQ Technologies Custom Styles */
:root {
    --nerdiq-primary: #000000;
    --nerdiq-secondary: #333333;
    --nerdiq-accent: #666666;
    --nerdiq-dark: #000000;
    --nerdiq-light: #ffffff;
    --nerdiq-gray: #888888;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header Styles */
.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--nerdiq-primary) !important;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: var(--nerdiq-dark) !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--nerdiq-primary) !important;
}

/* Hero Section with Interactive Elements */
.hero-section {
    background: linear-gradient(135deg, var(--nerdiq-primary) 0%, var(--nerdiq-secondary) 100%);
    position: relative;
    overflow: hidden;
    color: white;
}

/* Animated Background Elements */
.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

/* Hero Background Animation */
.hero-bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

/* Hero Slide Styles */
.hero-slide {
    background: linear-gradient(135deg, var(--nerdiq-dark) 0%, var(--nerdiq-secondary) 100%);
    color: white;
}

/* Carousel Styles */
.carousel-indicators {
    bottom: 30px;
    z-index: 10;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    margin: 0 5px;
}

.carousel-indicators button.active {
    background: rgba(255, 255, 255, 0.9);
    border-color: rgba(255, 255, 255, 0.9);
}

/* Floating Elements Animation */
.floating-element {
    position: absolute;
    color: rgba(255, 255, 255, 0.1);
    font-size: 2rem;
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
}

/* AI Dashboard and Growth Chart Styles */
.ai-dashboard, .growth-chart {
    background: rgba(0, 0, 0, 0.9);
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    max-width: 500px;
    margin: 0 auto;
}

.dashboard-header, .chart-header {
    background: #2d2d2d;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dashboard-controls, .chart-controls {
    display: flex;
    gap: 8px;
}

.dashboard-title, .chart-title {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 500;
}

.dashboard-content, .chart-content {
    padding: 20px;
}

.ai-metrics, .growth-stats {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
}

.metric-card, .growth-stat {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 15px;
    text-align: center;
}

.metric-icon, .stat-icon {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.metric-value, .stat-value {
    color: #fff;
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.metric-label, .stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.8rem;
}

.chart-visualization {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 15px;
    height: 100px;
}

.chart-bars {
    display: flex;
    align-items: end;
    gap: 8px;
    height: 100%;
}

.bar {
    flex: 1;
    background: linear-gradient(to top, #00ff88, rgba(0, 255, 136, 0.7));
    border-radius: 4px 4px 0 0;
    animation: growBar 2s ease-out;
}

@keyframes growBar {
    from { height: 0; }
}

/* Achievement Badges */
.achievement-badges .badge-item {
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    color: #fff;
}

.floating-shape {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    animation: float 6s ease-in-out infinite;
}

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

.shape-2 {
    width: 120px;
    height: 120px;
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    top: 10%;
    right: 30%;
    animation-delay: 1s;
}

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

/* Text Gradient */
.text-gradient {
    background: linear-gradient(45deg, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 2;
}

/* Statistics */
.hero-stats {
    margin: 2rem 0;
}

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

.stat-number {
    font-size: 2rem;
    font-weight: bold;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Buttons */
.btn-hero {
    background: white;
    color: var(--nerdiq-primary);
    border: 2px solid white;
    position: relative;
    overflow: hidden;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-hero:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.2);
}

.btn-outline-hero {
    background: transparent;
    color: white;
    border: 2px solid white;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-hero:hover {
    background: white;
    color: var(--nerdiq-primary);
    transform: translateY(-2px);
}

/* Code Window Illustration */
.hero-visual {
    position: relative;
    z-index: 2;
}

.code-window {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: perspective(1000px) rotateY(-15deg);
    transition: transform 0.3s ease;
}

.code-window:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.window-header {
    background: #2d2d2d;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.window-controls {
    display: flex;
    gap: 8px;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control.red { background: #ff5f57; }
.control.yellow { background: #ffbd2e; }
.control.green { background: #28ca42; }

.window-title {
    color: #ffffff;
    font-size: 0.9rem;
    font-family: 'Courier New', monospace;
}

.code-content {
    padding: 20px;
    font-family: 'Courier New', monospace;
    font-size: 0.9rem;
    line-height: 1.6;
    position: relative;
}

.code-line {
    margin-bottom: 8px;
    opacity: 0;
    animation: typeIn 0.5s ease forwards;
}

.code-line:nth-child(1) { animation-delay: 1s; }
.code-line:nth-child(2) { animation-delay: 1.5s; }
.code-line:nth-child(3) { animation-delay: 2s; }
.code-line:nth-child(4) { animation-delay: 2.5s; }
.code-line:nth-child(5) { animation-delay: 3s; }
.code-line:nth-child(6) { animation-delay: 3.5s; }

@keyframes typeIn {
    from { opacity: 0; transform: translateX(-10px); }
    to { opacity: 1; transform: translateX(0); }
}

.code-keyword { color: #ff79c6; }
.code-variable { color: #8be9fd; }
.code-property { color: #50fa7b; }
.code-string { color: #f1fa8c; }

.typing-cursor {
    position: absolute;
    right: 20px;
    bottom: 20px;
    width: 2px;
    height: 20px;
    background: #50fa7b;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

/* Floating Tech Icons */
.tech-icons {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.tech-icon {
    position: absolute;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    animation: float 4s ease-in-out infinite;
    backdrop-filter: blur(10px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    opacity: 0.7;
}

.scroll-arrow {
    animation: bounce 2s infinite;
}

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

/* Client Logos Section */
.logos-container {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    margin: 2rem 0;
}

.logos-scroll {
    display: inline-flex;
    animation: scroll-logos 30s linear infinite;
}

.logo-item {
    flex: 0 0 auto;
    margin: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.client-logo {
    height: 60px;
    width: auto;
    opacity: 0.6;
    transition: opacity 0.3s ease, transform 0.3s ease;
    filter: grayscale(100%);
}

.client-logo:hover {
    opacity: 1;
    transform: scale(1.1);
    filter: grayscale(0%);
}

@keyframes scroll-logos {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Project Showcase */
.project-showcase {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.project-showcase:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.project-image-container {
    position: relative;
    overflow: hidden;
}

.project-showcase-image {
    height: 200px;
    object-fit: cover;
    width: 100%;
    transition: transform 0.3s ease;
}

.project-showcase:hover .project-showcase-image {
    transform: scale(1.1);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.project-showcase:hover .project-overlay {
    opacity: 1;
}

.project-tech-tags {
    margin-top: 1rem;
}

.project-tech-tags .badge {
    font-size: 0.75rem;
    margin-bottom: 0.25rem;
}

/* Blog Preview */
.blog-preview {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.blog-preview:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.blog-image-container {
    position: relative;
    overflow: hidden;
}

.blog-preview-image {
    height: 180px;
    object-fit: cover;
    width: 100%;
    transition: transform 0.3s ease;
}

.blog-preview:hover .blog-preview-image {
    transform: scale(1.05);
}

.blog-category-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
}

.blog-meta {
    font-size: 0.875rem;
}

/* Get In Touch Section */
.contact-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.contact-cta-card .card {
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .logos-scroll {
        animation-duration: 20s;
    }
    
    .logo-item {
        margin: 0 1rem;
    }
    
    .client-logo {
        height: 40px;
    }
    
    .project-showcase-image,
    .blog-preview-image {
        height: 150px;
    }
}

/* Utility Classes */
.tracking-wide {
    letter-spacing: 0.1em;
}

/* Navigation Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    background-color: rgba(255, 255, 255, 0.95) !important;
}

.navbar.scrolled {
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    background-color: rgba(255, 255, 255, 0.98) !important;
}

.navbar .container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.navbar-collapse {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.navbar-nav {
    margin: 0;
}

/* Logo Styles */
.navbar-logo {
    height: 40px;
    width: auto;
    max-width: 150px;
    object-fit: contain;
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    color: #000 !important;
    text-decoration: none;
    margin-right: 2rem;
}

.navbar-brand:hover {
    color: #333 !important;
}

/* Add padding to body to compensate for fixed navbar */
body {
    padding-top: 76px;
}

/* Mobile-First Responsive Design */
@media (max-width: 991.98px) {
    .navbar-toggler {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .navbar-collapse {
        flex-direction: column;
        gap: 1rem;
        margin-top: 1rem;
    }
    
    .navbar-brand {
        margin-right: 0;
        margin-bottom: 1rem;
    }
    
    .navbar-nav {
        flex-direction: column;
        width: 100%;
        text-align: center;
    }
    
    .nav-link {
        padding: 0.8rem 1rem !important;
        font-size: 1.1rem;
    }
}

.footer-logo {
    height: 30px;
    width: auto;
    max-width: 120px;
    object-fit: contain;
}

/* Modern Services Section */
.bg-gradient-light {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.bg-gradient-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="1" fill="%23000000" opacity="0.02"/><circle cx="50" cy="50" r="1" fill="%23000000" opacity="0.02"/><circle cx="80" cy="80" r="1" fill="%23000000" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>') repeat;
    pointer-events: none;
}

.expertise-stats {
    margin: 2rem 0;
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
}

.services-grid {
    position: relative;
    z-index: 1;
}

.service-card-modern {
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.05) 100%);
    pointer-events: none;
}

.service-card-modern:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    background: rgba(255, 255, 255, 0.95);
}

.service-card-modern:hover .service-card-glow {
    opacity: 1;
    transform: scale(1.1);
}

.service-card-inner {
    padding: 1.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.service-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.service-icon-modern {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    position: relative;
    transition: all 0.4s ease;
}

.service-icon-modern::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #000000, #666666, #000000);
    border-radius: 22px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.service-icon-modern i {
    font-size: 1.8rem;
    color: white;
    transition: all 0.4s ease;
}

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

.service-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0;
}

.service-content {
    flex-grow: 1;
    margin-bottom: 1.2rem;
}

.service-description {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1.2rem;
    font-size: 0.95rem;
}

.service-features ul li {
    padding: 0.3rem 0;
    font-size: 0.9rem;
    color: #495057;
    transition: color 0.3s ease;
}

.service-card-modern:hover .service-features ul li {
    color: #212529;
}

.service-footer {
    text-align: center;
}

.btn-service-cta {
    background: linear-gradient(135deg, #000000 0%, #333333 100%);
    color: white;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-service-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

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

.btn-service-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    color: white;
}

.btn-service-cta i {
    transition: transform 0.3s ease;
}

.btn-service-cta:hover i {
    transform: translateX(3px);
}

.service-card-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.1) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
    transition: all 0.6s ease;
    pointer-events: none;
    z-index: 1;
}

/* Counter Animation */
@keyframes countUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.stat-number {
    animation: countUp 0.8s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-card-inner {
        padding: 1.5rem;
    }
    
    .service-icon-modern {
        width: 60px;
        height: 60px;
    }
    
    .service-icon-modern i {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .service-card-modern:hover {
        transform: translateY(-5px) scale(1.01);
    }
}

/* Ripple Effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 2rem;
}

/* Button Styles */
.btn-nerdiq {
    background-color: var(--nerdiq-primary);
    border-color: var(--nerdiq-primary);
    color: white;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-nerdiq:hover {
    background-color: var(--nerdiq-secondary);
    border-color: var(--nerdiq-secondary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.btn-outline-nerdiq {
    border-color: var(--nerdiq-primary);
    color: var(--nerdiq-primary);
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-outline-nerdiq:hover {
    background-color: var(--nerdiq-primary);
    border-color: var(--nerdiq-primary);
    color: white;
}

/* Card Styles */
.card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.card-title {
    color: var(--nerdiq-dark);
    font-weight: 600;
}

/* Service Cards */
.service-card {
    text-align: center;
    padding: 2rem;
    height: 100%;
}

.service-icon {
    font-size: 3rem;
    color: var(--nerdiq-primary);
    margin-bottom: 1rem;
}

/* Project Cards */
.project-card {
    overflow: hidden;
}

.project-image {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.project-tech {
    font-size: 0.875rem;
    color: var(--nerdiq-gray);
}

/* Team Cards */
.team-card {
    text-align: center;
    padding: 2rem;
}

.team-image {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 4px solid var(--nerdiq-light);
}

.team-social a {
    color: var(--nerdiq-gray);
    font-size: 1.25rem;
    margin: 0 0.5rem;
    transition: color 0.3s ease;
}

.team-social a:hover {
    color: var(--nerdiq-primary);
}

/* Blog Styles */
.blog-card {
    margin-bottom: 2rem;
}

.blog-image {
    height: 200px;
    object-fit: cover;
    width: 100%;
}

.blog-meta {
    font-size: 0.875rem;
    color: var(--nerdiq-gray);
    margin-bottom: 0.5rem;
}

.blog-excerpt {
    color: var(--nerdiq-gray);
}

/* Form Styles */
.form-control {
    border-radius: 8px;
    border: 2px solid #e2e8f0;
    padding: 12px 16px;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    border-color: var(--nerdiq-primary);
    box-shadow: 0 0 0 0.2rem rgba(0, 0, 0, 0.1);
}

.form-label {
    font-weight: 600;
    color: var(--nerdiq-dark);
}

/* Footer */
.footer {
    background-color: var(--nerdiq-dark);
    color: white;
    padding: 3rem 0 1rem;
}

.footer h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: white;
}

/* Admin Styles */
.admin-sidebar {
    background-color: var(--nerdiq-dark);
    min-height: calc(100vh - 76px);
    padding: 2rem 0;
}

.admin-sidebar .nav-link {
    color: #cbd5e1;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    margin: 0.25rem 1rem;
    transition: all 0.3s ease;
}

.admin-sidebar .nav-link:hover,
.admin-sidebar .nav-link.active {
    background-color: var(--nerdiq-primary);
    color: white;
}

.admin-content {
    padding: 2rem;
}

.stats-card {
    background: linear-gradient(135deg, var(--nerdiq-primary) 0%, var(--nerdiq-accent) 100%);
    color: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
}

.stats-number {
    font-size: 2.5rem;
    font-weight: 700;
}

.stats-label {
    opacity: 0.9;
    font-size: 0.875rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .team-image {
        width: 120px;
        height: 120px;
    }
    
    .admin-sidebar {
        min-height: auto;
    }
}

/* Alert Styles */
.alert {
    border-radius: 8px;
    border: none;
    font-weight: 500;
}

.alert-success {
    background-color: #dcfce7;
    color: #166534;
}

.alert-danger {
    background-color: #fef2f2;
    color: #dc2626;
}

.alert-info {
    background-color: #dbeafe;
    color: #1d4ed8;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(0, 0, 0, 0.3);
    border-radius: 50%;
    border-top-color: var(--nerdiq-primary);
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Utility Classes */
.text-nerdiq {
    color: var(--nerdiq-primary) !important;
}

.bg-nerdiq {
    background-color: var(--nerdiq-primary) !important;
}

.border-nerdiq {
    border-color: var(--nerdiq-primary) !important;
}

.shadow-nerdiq {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
}
