:root {
    --dark-bg: #121212;
    --darker-bg: #0a0a0a;
    --card-bg: #1e1e1e;
    --text-light: #ffffff;
    --text-light-50: rgba(255, 255, 255, 0.7);
}

body, .bg-dark {
    background-color: var(--dark-bg) !important;
    color: var(--text-light);
}
.bg-darker {
    background-color: var(--darker-bg) !important;
}

.section-title {
    color: var(--text-light);
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 3px;
    background: #dc3545;
}

.card, .service-card, .training-card, .event-card, .blog-card, .feature-card, .value-card {
    background: rgba(45, 45, 45, 0.3) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    color: var(--text-light);
    transition: all 0.3s ease;
}
.card:hover, .service-card:hover, .training-card:hover, .event-card:hover, .blog-card:hover, .feature-card:hover, .value-card:hover {
    transform: translateY(-5px);
    background: rgba(45, 45, 45, 0.4) !important;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-danger, .btn-outline-danger {
    background-color: #dc3545;
    border-color: #dc3545;
    color: #fff;
}
.btn-outline-danger {
    background: transparent;
    color: #dc3545;
}
.btn-outline-danger:hover, .btn-danger:hover {
    background-color: #bb2d3b;
    border-color: #bb2d3b;
    color: #fff;
}

.form-control, .form-select {
    background: rgba(45, 45, 45, 0.3) !important;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-light);
}
.form-control:focus, .form-select:focus {
    background: rgba(45, 45, 45, 0.4) !important;
    border-color: #dc3545;
    box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}
.form-control::placeholder {
    color: var(--text-light-50);
}

footer {
    background: linear-gradient(to right, rgba(26, 26, 26, 0.95), rgba(45, 45, 45, 0.95));
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1000;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
footer .container {
    position: relative;
    z-index: 1001;
}
footer p, footer h5, footer a {
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

/* Section backgrounds */
.bg-gradient, .gradient-overlay, section.bg-dark, section.bg-darker {
    background: linear-gradient(135deg, rgba(18, 18, 18, 0.95), rgba(10, 10, 10, 0.98)) !important;
}

.text-light-50 {
    color: var(--text-light-50) !important;
}

/* Add more as needed for consistency */ 