:root {
     --primary-turquoise: #40e0d0;
    --primary-blue: #1e90ff;
    --primary-saffron: #ff9933;
    --primary-white: #ffffff;
    --primary-aqua: #00ffff;
}
 body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     background-color: #f8f9fa;
}
.btn-promobees {
    background-color: var(--primary-saffron);
    color: white;
    border: none;
    padding: 10px 25px;
    border-radius: 30px;
    font-weight: 600;
}

.btn-promobees:hover {
    background-color: #e68a00;
    color: white;
}
.navbar-brand {
    font-weight: 700;
    font-size: 1.5rem;
}

.nav-link {
    font-weight: 500;
    padding: 0.5rem 1rem;
}

.dropdown-menu {
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.user-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.offcanvas {
    max-width: 280px;
}

.gradient-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-turquoise));
    color: white;
    padding: 2rem 0;
}
.route-card {
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.route-card:hover {
    transform: translateY(-10px);
}

.route-card img {
    height: 180px;
    object-fit: cover;
}

.route-card .card-body {
    position: relative;
}

.route-badge {
    position: absolute;
    top: -20px;
    right: 20px;
    background-color: var(--primary-saffron);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

footer {
    background-color: #2c3e50;
    color: white;
    padding: 3rem 0;
}

.footer-links a {
    color: var(--primary-turquoise);
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--primary-aqua);
}

.testimonial-card {
    background-color: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin: 1rem;
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-turquoise);
}

.nav-pills .nav-link.active {
    background-color: var(--primary-saffron);
}

.nav-pills .nav-link {
    color: var(--primary-blue);
}


.gradient-header {
    background: linear-gradient(135deg, var(--primary-blue), var(--primary-turquoise));
    color: white;
    padding: 5rem 0;
}

.logo-text {
    font-weight: 700;
    font-size: 2rem;
}

.logo-blue {
    color: var(--primary-blue);
}

.logo-orange {
    color: var(--primary-saffron);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.team-card {
    border: none;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.team-card:hover {
    transform: translateY(-10px);
}

.team-img {
    height: 250px;
    object-fit: cover;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-blue);
}

.testimonial-card {
    background-color: white;
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.testimonial-img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary-turquoise);
}
.route-card {
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: none;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin-bottom: 25px;
    background: white;
    height: 100%;
}

.route-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.route-card .card-img-top {
    height: 180px;
    object-fit: cover;
    width: 100%;
}

.status-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: bold;
}

.available {
    background-color: #28a745;
    color: white;
}

.booked {
    background-color: var(--primary-blue);
    color: white;
}

.price-tag {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--primary-saffron);
}

.specs-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.specs-item i {
    width: 24px;
    color: var(--primary-blue);
    margin-right: 8px;
}

.view-btn {
    background-color: var(--primary-blue);
    color: white;
    border-radius: 30px;
    padding: 8px 20px;
    font-weight: 600;
    border: none;
}

.view-btn:hover {
    background-color: #0d6efd;
    color: white;
}

.route-tab {
    padding: 8px 20px;
    border-radius: 30px;
    background: #f1f1f1;
    color: #333;
    border: none;
    margin-right: 10px;
    margin-bottom: 10px;
    transition: all 0.3s;
}

.route-tab:hover, .route-tab.active {
    background: var(--primary-blue);
    color: white;
}
.board-image {
    width: 120px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

.status-badge {
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: bold;
}

.available {
    background-color: #d4edda;
    color: #155724;
}

.booked {
    background-color: #f8d7da;
    color: #721c24;
}

.price-tag {
    font-weight: bold;
    color: var(--primary-saffron);
}

.select-checkbox {
    width: 20px;
    height: 20px;
}

.book-btn {
    background-color: var(--primary-blue);
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 0.875rem;
}

.book-btn:hover {
    background-color: #0d6efd;
}

.bulk-actions {
    background-color: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.route-header {
    background-color: #f1f8ff;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}
.dashboard-header {
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.stat-card {
    border-radius: 10px;
    padding: 1.5rem;
    color: white;
    margin-bottom: 1.5rem;
}

.stat-card i {
    font-size: 2rem;
    opacity: 0.8;
}

.stat-card .number {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 0.5rem 0;
}

.stat-card .label {
    opacity: 0.9;
    font-size: 0.9rem;
}

.campaign-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    margin-bottom: 1.5rem;
}

.campaign-card:hover {
    transform: translateY(-5px);
}

.campaign-status {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.status-active {
    background-color: rgba(40, 167, 69, 0.1);
    color: var(--primary-green);
}

.status-pending {
    background-color: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

.activity-item {
    border-left: 3px solid var(--primary-blue);
    padding-left: 1rem;
    margin-bottom: 1.5rem;
}

.activity-time {
    font-size: 0.8rem;
    color: #6c757d;
}

.chart-container {
    background: white;
    border-radius: 10px;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.nav-pills .nav-link.active {
    background-color: var(--primary-blue);
}

.nav-pills .nav-link {
    color: var(--primary-blue);
    font-weight: 500;
}

.campaign-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    margin-bottom: 1.5rem;
}

.campaign-card:hover {
    transform: translateY(-5px);
}

.campaign-status {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.status-active {
    background-color: rgba(40, 167, 69, 0.1);
    color: var(--primary-green);
}

.status-pending {
    background-color: rgba(255, 193, 7, 0.1);
    color: #ffc107;
}

.status-expired {
    background-color: rgba(220, 53, 69, 0.1);
    color: var(--primary-red);
}

.status-draft {
    background-color: rgba(108, 117, 125, 0.1);
    color: var(--primary-gray);
}

.campaign-img {
    height: 150px;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.empty-state {
    text-align: center;
    padding: 3rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.empty-state i {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.nav-pills .nav-link.active {
    background-color: var(--primary-blue);
}

.nav-pills .nav-link {
    color: var(--primary-blue);
    font-weight: 500;
}

.booking-card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s;
    margin-bottom: 1.5rem;
}

.booking-card:hover {
    transform: translateY(-5px);
}

.booking-status {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.status-active {
    background-color: rgba(40, 167, 69, 0.1);
    color: var(--primary-green);
}

.status-completed {
    background-color: rgba(108, 117, 125, 0.1);
    color: var(--primary-gray);
}

.status-cancelled {
    background-color: rgba(220, 53, 69, 0.1);
    color: var(--primary-red);
}

.booking-img {
    height: 150px;
    object-fit: cover;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.empty-state {
    text-align: center;
    padding: 3rem;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.empty-state i {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 1rem;
}

.timeline {
    position: relative;
    padding-left: 1.5rem;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 7px;
    top: 0;
    bottom: 0;
    width: 2px;
    background-color: #e9ecef;
}

.timeline-item {
    position: relative;
    padding-bottom: 1.5rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -1.5rem;
    top: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--primary-blue);
    border: 2px solid white;
}
.payment-card {
            border: none;
            border-radius: 10px;
            box-shadow: 0 2px 15px rgba(0,0,0,0.05);
            transition: transform 0.3s;
            margin-bottom: 1.5rem;
        }
        
        .payment-card:hover {
            transform: translateY(-5px);
        }
        
        .payment-status {
            position: absolute;
            top: 15px;
            right: 15px;
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
        }
        
        .status-success {
            background-color: rgba(40, 167, 69, 0.1);
            color: var(--primary-green);
        }
        
        .status-pending {
            background-color: rgba(255, 193, 7, 0.1);
            color: #ffc107;
        }
        
        .status-failed {
            background-color: rgba(220, 53, 69, 0.1);
            color: var(--primary-red);
        }
        
        .payment-method-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: #f8f9fa;
            margin-right: 15px;
        }
        
        .payment-method-card {
            border-radius: 10px;
            padding: 15px;
            margin-bottom: 15px;
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            transition: all 0.3s;
        }
        
        .payment-method-card:hover {
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        
        .payment-method-card.active {
            border: 2px solid var(--primary-blue);
        }
        
        .empty-state {
            text-align: center;
            padding: 3rem;
            background-color: white;
            border-radius: 10px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        
        .empty-state i {
            font-size: 3rem;
            color: var(--primary-blue);
            margin-bottom: 1rem;
        }
        
        .invoice-card {
            border-radius: 10px;
            padding: 15px;
            margin-bottom: 15px;
            background-color: white;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        }
        
        .invoice-status-badge {
            padding: 5px 10px;
            border-radius: 20px;
            font-size: 0.75rem;
            font-weight: 600;
        }
        
        .add-payment-method {
            border: 2px dashed #dee2e6;
            border-radius: 10px;
            padding: 20px;
            text-align: center;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .add-payment-method:hover {
            border-color: var(--primary-blue);
            background-color: rgba(30, 144, 255, 0.05);
        }