:root {
    --primary: #000000;
    --secondary: #1a1a1a;
    --accent: #ff0000;
    --text-primary: #ffffff;
    --text-secondary: #e0e0e0;
    --card-bg: #1e1e1e;
    --section-bg: #121212;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    scroll-behavior: smooth;
    background-color: var(--primary);
    color: var(--text-primary);
}

.hero {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.9) 0%, rgba(26, 26, 26, 0.9) 100%);
}

.service-card {
    background-color: var(--card-bg);
    border: 1px solid #333;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(255, 0, 0, 0.2);
    border-color: var(--accent);
}

.partners-card {
    transition: all 0.3s ease;
    background-color: var(--card-bg);
    border: 1px solid #333;
}

.partners-card:hover {
    background-color: var(--secondary);
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.2);
    border-color: var(--accent);
}

.nav-link {
    position: relative;
    color: var(--text-primary);
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--accent);
    transition: width 0.3s ease;
}

.nav-link:hover:after {
    width: 100%;
}

.btn-primary {
    background-color: var(--accent);
    color: white;
    transition: all 0.3s ease;
    border: none;
}

.btn-primary:hover {
    background-color: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(255, 0, 0, 0.3);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--accent);
    color: var(--accent);
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--accent);
    color: white;
    transform: translateY(-2px);
}

.animate-fade-in {
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.stats-item {
    transition: transform 0.3s ease;
    background-color: var(--card-bg);
}

.stats-item:hover {
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.2);
}

/* Accordion Styles */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
    background-color: var(--card-bg);
}

.accordion-content.open {
    padding: 1rem 1.5rem;
    border-left: 3px solid var(--accent);
}

.accordion-button {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1rem 1.5rem;
    text-align: left;
    background-color: var(--secondary);
    border: 1px solid #333;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--text-primary);
}

.accordion-button:hover {
    background-color: #2a2a2a;
    border-color: var(--accent);
}

.accordion-icon {
    transition: transform 0.3s ease;
    color: var(--accent);
}

.accordion-icon.rotate {
    transform: rotate(180deg);
}

/* Team Section Styles */
.team-row {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    width: 100%;
    position: static;
    background: none;
    height: auto;
    z-index: auto;
}

@media (max-width: 900px) {
    .team-row {
        gap: 1.25rem;
    }
}

@media (max-width: 600px) {
    .team-row {
        gap: 1rem;
        flex-direction: column;
        width: 100%;
        padding: 0;
    }

    .team-row>div {
        width: 90vw !important;
        max-width: 20rem;
    }
}

.team-photo-large {
    width: 8rem;
    height: 9.5rem;
    object-fit: cover;
    border-radius: 0.75rem !important;
    transition: transform 0.2s;
    border: 2px solid var(--accent);
}

.team-photo-large:hover {
    transform: scale(1.04);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.3);
}

@media (max-width: 600px) {
    .team-photo-large {
        width: 7rem;
        height: 8.5rem;
    }
}

/* Our Team Section */
.our-team-section {
    padding: 4rem 0 3rem 0;
    background: var(--section-bg);
    margin-top: 0;
}

.our-team-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Section Title Styles */
.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: bold;
    color: var(--accent);
    margin-bottom: 2.5rem;
    margin-top: 0;
    letter-spacing: 0.01em;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.3);
}

@media (max-width: 600px) {
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }
}

.BVTC-logo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    border: 2px solid var(--accent);
}

@media (max-width: 600px) {
    .BVTC-logo {
        width: 36px;
        height: 36px;
    }
}

/* Hide scrollbar */
.scrollbar-hide::-webkit-scrollbar {
    display: none;
}

.scrollbar-hide {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.no-scrollbar::-webkit-scrollbar {
    display: none;
}

.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

/* Additional Black/Red Theme Elements */
nav {
    background-color: var(--secondary) !important;
    border-bottom: 1px solid var(--accent);
}

footer {
    background-color: var(--secondary) !important;
    border-top: 1px solid var(--accent);
}

#office, #services, #about, #partners, #contact {
    background-color: var(--section-bg);
    border-bottom: 1px solid #333;
}

/* Form Elements */
input, textarea, select {
    background-color: var(--card-bg) !important;
    border: 1px solid #333 !important;
    color: var(--text-primary) !important;
}

input:focus, textarea:focus, select:focus {
    border-color: var(--accent) !important;
    box-shadow: 0 0 0 2px rgba(255, 0, 0, 0.2) !important;
}

/* Cards in Featured Programs */
#scrollContainer .bg-white {
    background-color: var(--card-bg) !important;
    color: var(--text-primary) !important;
    border: 1px solid #333;
}

#scrollContainer .bg-white:hover {
    border-color: var(--accent);
    box-shadow: 0 10px 25px rgba(255, 0, 0, 0.2);
}

/* Payment Channels */
#payment-channels h2 {
    color: var(--accent);
}

/* Mobile Menu */
.mobile-menu {
    background-color: var(--secondary) !important;
}

/* Border and Shadow Enhancements */
.border-gray-200 {
    border-color: #333 !important;
}

.shadow-md {
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3) !important;
}

.shadow-lg {
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3) !important;
}

/* Text Colors */
.text-gray-800 {
    color: var(--text-primary) !important;
}

.text-gray-700 {
    color: var(--text-secondary) !important;
}

.text-gray-600 {
    color: #aaa !important;
}

.text-blue-700, .text-blue-800 {
    color: var(--accent) !important;
}

.bg-blue-50, .bg-blue-100, .bg-blue-200 {
    background-color: #2a0000 !important;
    color: var(--text-primary) !important;
}

/* Hover States */
.hover\:bg-blue-100:hover {
    background-color: #3a0000 !important;
}