:root {
    --primary-accent: #EBA021;  /* Gold */
    --secondary-accent: #b07d26; /* Darker gold */
    --primary-green: #16a34a;    /* Green */
    --secondary-green: #22c55e;  /* Brighter green */
    --dark-bg: #0f172a;         /* Dark blue-gray background */
    --darker-bg: #020617;       /* Even darker background */
    --light-text: #f8fafc;      /* Light text */
    --muted-text: #94a3b8;      /* Muted text */
    --card-bg: #1e293b;         /* Card background */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--light-text);
    background-color: var(--dark-bg);
    overflow-x: hidden;
}

/* Navigation */
.navbar {
    background: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    box-shadow: 0 2px 20px rgba(22, 163, 74, 0.2);
    border-bottom: 1px solid rgba(235, 160, 33, 0.1);
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary-green) !important;
}

.navbar-nav .nav-link {
    color: var(--muted-text) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover {
    transform: translateY(-2px);
    color: var(--primary-accent) !important;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 50%;
    background: var(--primary-green);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::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="25" cy="25" r="1" fill="%23EBA021" opacity="0.05"/><circle cx="75" cy="75" r="1" fill="%2316a34a" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(45deg, var(--primary-accent), var(--primary-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.5rem;
    animation: slideInLeft 1s ease-out;
}

.hero p {
    font-size: 1.3rem;
    color: var(--muted-text);
    margin-bottom: 2rem;
    animation: slideInLeft 1s ease-out 0.3s both;
}

.btn-primary-custom {
    background: linear-gradient(45deg, var(--primary-accent), var(--secondary-accent));
    border: none;
    padding: 15px 35px;
    font-weight: 600;
    color: var(--darker-bg);
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(235, 160, 33, 0.3);
}

.btn-primary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(235, 160, 33, 0.4);
    color: var(--darker-bg);
}

.btn-secondary-custom {
    background: linear-gradient(45deg, var(--primary-green), var(--secondary-green));
    border: none;
    padding: 15px 35px;
    font-weight: 600;
    color: white;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(22, 163, 74, 0.3);
}

.btn-secondary-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(22, 163, 74, 0.4);
}

/* Illustration Styles */
.illustration {
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 30px rgba(22, 163, 74, 0.2));
}

.truck-illustration {
    width: 100%;
    max-width: 500px;
    height: auto;
    animation: slideInRight 1s ease-out 0.5s both;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--darker-bg);
}

.service-card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(235, 160, 33, 0.1);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(45deg, var(--primary-accent), var(--primary-green));
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    border-color: rgba(235, 160, 33, 0.3);
}

.service-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: var(--light-text);
}

.service-icon.red {
    background: linear-gradient(45deg, var(--primary-accent), var(--secondary-accent));
}

.service-icon.green {
    background: linear-gradient(45deg, var(--primary-green), var(--secondary-green));
}

/* Features Section */
.features {
    padding: 100px 0;
    background: var(--dark-bg);
}

.feature-item {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 15px;
    transition: all 0.3s ease;
    background: var(--card-bg);
    border: 1px solid rgba(235, 160, 33, 0.1);
}

.feature-item:hover {
    background: rgba(30, 41, 59, 0.7);
    transform: translateX(10px);
    border-color: rgba(235, 160, 33, 0.3);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: var(--light-text);
    font-size: 1.5rem;
}

/* Stats Section */
.stats {
    background: linear-gradient(135deg, var(--primary-accent), var(--primary-green));
    padding: 80px 0;
    color: var(--darker-bg);
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    display: block;
    animation: countUp 2s ease-out;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-top: 10px;
}

/* Footer */
.footer {
    background: var(--darker-bg);
    color: var(--muted-text);
    padding: 60px 0 30px;
    border-top: 1px solid rgba(235, 160, 33, 0.1);
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, var(--primary-accent), var(--primary-green));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.footer-links a {
    color: var(--muted-text);
    text-decoration: none;
    display: block;
    padding: 5px 0;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-green);
    transform: translateX(5px);
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(45deg, var(--primary-accent), var(--primary-green));
    color: var(--darker-bg);
    text-align: center;
    line-height: 40px;
    margin: 0 10px;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    transform: translateY(-3px) scale(1.1);
    color: var(--light-text);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
}

/* Animations (unchanged) */
@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
}

@keyframes slideInLeft {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInRight {
    0% {
        transform: translateX(100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes countUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Scroll animations */
[data-aos] {
    opacity: 0;
    transition: all 0.6s ease;
}

[data-aos].aos-animate {
    opacity: 1;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 500;
    line-height: 1.2;
     color: silver !important;
}
p {
    margin-top: 0;
    margin-bottom: 1rem;
    color: silver !important;
}
.text-muted {
    --bs-text-opacity: 1;
    color: grey !important;
}
.card-body{
    background: var(--card-bg);
    color: silver;
}
.card-header{
    background: black !important;
    color: white !important;
}
/* Add this to your existing dark theme CSS */

/* Table Styles */
.table-container {
    overflow-x: auto;
    margin: 2rem 0;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--card-bg);
    color: var(--light-text);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(235, 160, 33, 0.1);
}

table thead {
    background: linear-gradient(45deg, var(--primary-accent), var(--primary-green));
    color: var(--darker-bg);
}

table th {
    padding: 1.2rem 1.5rem;
    text-align: left;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
}

table td {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgba(235, 160, 33, 0.05);
}

table tr:last-child td {
    border-bottom: none;
}

table tbody tr {
    transition: all 0.3s ease;
}

table tbody tr:hover {
    background-color: rgba(235, 160, 33, 0.05);
    transform: translateX(5px);
}

/* Striped Table Variant */
.table-striped tbody tr:nth-child(odd) {
    background-color: rgba(22, 163, 74, 0.05);
}

.table-striped tbody tr:hover {
    background-color: rgba(235, 160, 33, 0.1);
}

/* Bordered Table Variant */
.table-bordered {
    border: 1px solid rgba(235, 160, 33, 0.2);
}

.table-bordered th,
.table-bordered td {
    border: 1px solid rgba(235, 160, 33, 0.1);
}

/* Hover Table Variant */
.table-hover tbody tr {
    cursor: pointer;
}

.table-hover tbody tr:hover {
    background-color: rgba(22, 163, 74, 0.1);
}

/* Responsive Tables */
@media (max-width: 768px) {
    table {
        display: block;
    }
    
    table thead {
        display: none;
    }
    
    table tbody, table tr, table td {
        display: block;
        width: 100%;
    }
    
    table tr {
        margin-bottom: 1.5rem;
        border: 1px solid rgba(235, 160, 33, 0.2);
        border-radius: 8px;
    }
    
    table td {
        padding: 0.8rem;
        text-align: right;
        position: relative;
        border-bottom: 1px solid rgba(235, 160, 33, 0.1);
    }
    
    table td::before {
        content: attr(data-label);
        position: absolute;
        left: 1rem;
        top: 50%;
        transform: translateY(-50%);
        font-weight: 600;
        color: var(--primary-accent);
        text-transform: uppercase;
        font-size: 0.75rem;
    }
}

/* Table Action Buttons */
.table-actions {
    display: flex;
    gap: 0.5rem;
}

.table-btn {
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.table-btn-edit {
    background-color: rgba(22, 163, 74, 0.1);
    color: var(--primary-green);
}

.table-btn-edit:hover {
    background-color: var(--primary-green);
    color: white;
}

.table-btn-delete {
    background-color: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.table-btn-delete:hover {
    background-color: #ef4444;
    color: white;
}

.table-btn-view {
    background-color: rgba(235, 160, 33, 0.1);
    color: var(--primary-accent);
}

.table-btn-view:hover {
    background-color: var(--primary-accent);
    color: var(--darker-bg);
}

/* Status Badges */
.status-badge {
    display: inline-block;
    padding: 0.4rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
}

.status-active {
    background-color: rgba(22, 163, 74, 0.2);
    color: var(--primary-green);
}

.status-pending {
    background-color: rgba(235, 160, 33, 0.2);
    color: var(--primary-accent);
}

.status-inactive {
    background-color: rgba(100, 116, 139, 0.2);
    color: var(--muted-text);
}
.list-group-item{
    background: transparent !important;
    color: white !important;
}