:root {
    --primary-color: #0d6efd;
    --primary-accent: #0dcaf0; /* A brighter accent for highlights */
    --dark-blue: #111827; /* Matches your ticketing sidebar */
    --light-gray: #f4f6f9;
    --text-color: #212529;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    color: var(--text-color);
}

.bg-dark-blue {
    background-color: var(--dark-blue) !important;
}

.text-primary-accent {
    color: var(--primary-accent) !important;
}

/* --- Navigation --- */
.navbar {
    transition: all 0.3s;
}
.navbar .nav-link {
    color: #adb5bd;
    transition: color 0.2s;
}
.navbar .nav-link:hover, .navbar .nav-link.active {
    color: #ffffff;
}

/* --- Hero Section --- */
.hero-section {
    background: linear-gradient(rgba(17, 24, 39, 0.7), rgba(17, 24, 39, 0.7)), url('https://via.placeholder.com/1920x1080.png?text=Modern+Office') no-repeat center center;
    background-size: cover;
    padding: 10rem 0;
    margin-top: 56px; /* Adjust for fixed navbar height */
}

/* --- Services Section --- */
.service-card {
    transition: transform 0.3s, box-shadow 0.3s;
}
.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,.15)!important;
}
.feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    font-size: 2rem;
}

/* --- Footer --- */
footer a {
    color: var(--primary-accent);
    text-decoration: none;
}
footer a:hover {
    color: #ffffff;
    text-decoration: underline;
}