/* Reset CSS */
/* Base styles */
:root {
    --primary-color: #1A3A8A;
    --secondary-color: #D4AF37;
    --accent-color: #D4AF37;
    --dark-blue: #0A192F;
    --text-color: #2D2D2D;
    --light-bg: #F7F9FC;
    --muted-color: #6C757D;
    --header-height: 70px;
    --border-color: #E5E7EB;
    --bs-list-group-active-bg: #5a70a7af !important;
    --bs-list-group-active-border-color: #1a3a8aaf;
    --gold-color: #D4AF37;
    --primary-hover: #152d6e;
    --gold-hover: #b8962d;
    --step-valid-color: #6bdaa6;
    --border-radius: 0.5rem;
    --box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f9f9f9;
    overflow-x: hidden;
}
.row {
    margin-left: 0;
    margin-right: 0;
}
/* Global Styles */
a {
    text-decoration: none;
    color: inherit;
}
.btn-outline-light.active{
    color: #1a3a8a;
    border-color: #1a3a8a;
}
.btn-outline-light:hover {
    background-color: #1a3a8a;
    color: #fff;
}
/* .btn-primary {
    background-color: #d4af37;
    border-color: #d4af37;
    color: #fff;
} */
.btn-primary {
    background-color: #1a3a8a;
    border-color: #1a3a8a;
    color: #fff;
}

.btn-primary:hover {
    background-color: #d4af37;
    border-color: #d4af37;

}


.btn-outline-primary {
    color: #1a3a8a;
    border-color: #1a3a8a;
}

.btn-outline-primary:hover {
    background-color: #1a3a8a;
    color: #fff;
}

.text-primary {
    color: #1a3a8a !important;
}

.bg-primary {
    background-color: #1a3a8a !important;
}

.text-gold {
    color: #d4af37 !important;
}

.bg-gold {
    background-color: #d4af37 !important;
}

/* Header */
header {
    background-color: #1a3a8a;
    color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

header .navbar-brand {
    font-size: 1.5rem;
    font-weight: bold;
}

header .navbar-nav .nav-link {
    font-size: 0.9rem;
    color: #fff;
    transition: color 0.3s ease;
}
header .nav-link.active.btn-outline-light.active{
    color: #1a3a8a;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}
header .navbar-nav .nav-link:hover {
    color: #d4af37;
}

/* Hero Section */
.hero {
    padding: 120px 0 150px 0;
    background: linear-gradient(135deg, #1a3a8a, #0d1b4c);
    color: #fff;
}

.hero h1 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1rem;
}

.hero .lead {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}


.hero .btn-primary:hover {
    background-color: #b8942f;
    border-color: #b8942f;
}

.hero .btn-outline-primary {
    color: #d4af37;
    border-color: #d4af37;
}

.hero .btn-outline-primary:hover {
    background-color: #d4af37;
    color: #fff;
}

/* Features Section */
.features {
    padding: 60px 0;
}

.features .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.features .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.features .stat-icon, .scenarios .stat-icon {
    color: #1a3a8a;
    background-color: #d4af37;
    border-radius: 50%;
    padding: 5px;
    width: 50px;
    height: 50px;
    font-size:26px; ;
}
.dashboard .stat-icon, .dashboard i {

    font-size:20px; ;
}
/* Processus Section */
.processus {
    padding: 60px 0;
    background-color: #1a3a8a;
    color: #fff;
}

.processus .timeline-item {
    position: relative;
    padding-left: 60px;
    margin-bottom: 40px;
}

.processus .timeline-icon {
    position: absolute;
    left: 10px;
    top: 10px;
    width: 40px;
    height: 40px;
    background-color: #d4af37;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-top: 10px;
    margin-bottom: 10px;
}

/* Processus Accordion Styling */
.accordion-item {
    border: none;
    background: transparent;
    margin-bottom: 1rem;
}

.accordion-button {
    background: white;
    border-radius: 8px !important;
    padding: 1.5rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23333'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    transition: transform .3s ease;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg);
}

.accordion-body {
    background: white;
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    padding: 1.5rem;
    margin-top: -5px;
}

.timeline-icon {
    width: 40px;
    height: 40px;
    background: var(--primary-color);
    color: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    margin-right: 1rem;
}

.accordion-button span {
    font-weight: 600;
    font-size: 1.1rem;
}

/* Pricing Section */
.pricing {
    padding: 60px 0;
}

.pricing .card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing .card.featured {
    border: 2px solid #1a3a8a;
}

.pricing .card.featured .popular-badge {
    background-color: #1a3a8a;
    color: #fff;
    font-size: 0.8rem;
    padding: 5px 10px;
    position: absolute;
    top: 10px;
    right: 10px;
    border-radius: 5px;
}

.pricing .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.pricing .display-6 {
    font-size: 2rem;
    font-weight: bold;
    color: #1a3a8a;
}

.pricing .fs-5 {

    font-weight:500;
    color: #1a3a8a;
}

.pricing .text-muted {
    color: #666;
}
.pricing ul  {
    list-style: none ;
}
/*
.pricing ul li:before {
    font-family: 'FontAwesome';
    content: '\f00c';
    margin:0 5px 0 -15px;
    color: #d4af37 !important;
}
*/
/* Styles du footer */
footer {
    background: #1a3a8a;
    color: white;
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
}

footer .footer-content {
    position: relative;
    z-index: 1;
}

footer .footer-logo {
    margin-bottom: 1.5rem;
}

footer .footer-logo i {
    font-size: 2rem;
    color: #D4AF37;
    margin-right: 0.5rem;
}

footer .footer-logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

footer .footer-description {
    color: rgba(255,255,255,0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

footer h5 {
    color: white;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

footer h5::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background: #D4AF37;
}

footer .footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer .footer-links li {
    margin-bottom: 0.8rem;
}

footer .footer-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
}

footer .footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

footer .footer-links a i {
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

footer .social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

footer .social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

footer .social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

footer .contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

footer .contact-info li {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    color: rgba(255,255,255,0.8);
}

footer .contact-info li i {
    width: 30px;
    height: 30px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: #D4AF37;
}

footer .footer-bottom {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: rgba(255,255,255,0.6);
}

footer .footer-bottom p {
    margin: 0;
}

footer .footer-bottom a {
    color: #D4AF37 !important;
    text-decoration: none;
    transition: var(--transition);
}

footer .footer-bottom a:hover {
    color: white;
}

@media (max-width: 768px) {
    footer {
        padding: 3rem 0 1rem;
    }

    footer .col-md-4 {
        margin-bottom: 2rem;
    }

    footer .social-links {
        justify-content: center;
    }

    footer .footer-bottom {
        margin-top: 2rem;
    }
}


/* Pricing Section */
.pricing {
    background-color: white;
}

.pricing-card {
    background: white;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

.pricing-card.featured {
    border: 2px solid #d4af37;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #d4af37;
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-value {
    margin: 1.5rem 0;
}

.pricing-value .price {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
}

.pricing-value .period {
    color: var(--muted-color);
    font-size: 1rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.pricing-features li {
    padding: 0.75rem 0;
    color: var(--text-color);
    display: flex;
    align-items: center;
}

.pricing-features i {
    font-size: 1rem;
    margin-right: 0.5rem;
}

.pricing-card .btn {
    padding: 0.75rem 1.5rem;
}

.pricing-card .btn-primary {
    background-color: #1a3a8a;
    border-color: #1a3a8a;
    color: white;
}

.pricing-card .btn-outline-primary {
    color: #1a3a8a;
    border-color: #1a3a8a;
}

.pricing-card .btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
}

.pricing-card .pricing-header {
    /*flex: 1;*/
    display: flex;
    flex-direction: column;
}

.pricing-card .btn {
    margin-top: auto;
    margin-bottom: 1rem;
}

.pricing-card .text-center:last-child {
    margin-top: 0.5rem;
}

/* Integration Showcase */
.integration-item {
    text-align: center;
    padding: 1.5rem;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.integration-item:hover {
    transform: translateY(-5px);
}

.integration-item h5 {
    margin-top: 1rem;
    font-size: 1rem;
}

/* Messaging Styles */
.messaging {
    margin-top: var(--header-height);
    background-color: var(--light-bg);
    min-height: calc(100vh - var(--header-height));
}

.messaging .card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.messaging .card:hover {
    transform: translateY(-2px);
}

.messaging .card-header {
    border-bottom: 1px solid var(--border-color);
    padding: 1.25rem;
}

.messaging .list-group-item {
    border: none;
    border-bottom: 1px solid var(--border-color);
    padding: 1.25rem;
    transition: all 0.3s ease;
}

.messaging .list-group-item:hover {
    background-color: rgba(26, 58, 138, 0.05);
}

.messaging .list-group-item.active {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.messaging .list-group-item h6 {
    color: var(--text-color);
    font-weight: 600;
}

.messaging .list-group-item.active h6 {
    color: white;
}

.messaging .list-group-item p {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.messaging .list-group-item.active p {
    color: rgba(255, 255, 255, 0.8);
}

/* Chat Messages */
.chat-messages {
    padding: 1.25rem;
    height: 400px;
    overflow-y: auto;
    background-color: #f8f9fa;
}

.message {
    max-width: 70%;
    margin-bottom: 1rem;
    position: relative;
}

.message-content {
    padding: 0.75rem 1rem;
    border-radius: 12px;
    position: relative;
}

.message.received .message-content {
    background-color: white;
    border: 1px solid var(--border-color);
    margin-right: auto;
}

.message.sent .message-content {
    background-color: var(--primary-color);
    color: white;
    margin-left: auto;
}

.message.sent .message-content p {
    color: white;
}

/* Message Input */
.messaging .card-footer {
    border-top: 1px solid var(--border-color);
    padding: 1.25rem;
    background-color: white;
}

.messaging .input-group {
    border-radius: 8px;
    overflow: hidden;
}

.messaging .form-control {
    border: 1px solid var(--border-color);
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
}

.messaging .btn-msg {
    padding: 0.75rem 1rem;
    border: none;
    background-color: transparent;
    color: var(--muted-color);
    transition: all 0.3s ease;
}

.messaging .btn-msg:hover {
    color: var(--primary-color);
}

.messaging .btn-primary.btn-msg {
    background-color: var(--primary-color);
    color: white;
}

.messaging .btn-primary.btn-msg:hover {
    background-color: #152e73;
}

/* Online Status */
.online-status {
    display: inline-block;
    width: 8px;
    height: 8px;
    background-color: #28a745;
    border-radius: 50%;
    margin-right: 0.5rem;
}

/* Dropdown Menu */
.messaging .dropdown-menu {
    border: none;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 0.5rem;
}

.messaging .dropdown-item {
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.messaging .dropdown-item:hover {
    background-color: rgba(26, 58, 138, 0.05);
}

.messaging .dropdown-item i {
    width: 20px;
    text-align: center;
    margin-right: 0.5rem;
    color: var(--muted-color);
}

/* Scrollbar Styling */
.chat-messages::-webkit-scrollbar {
    width: 6px;
}

.chat-messages::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 3px;
}

.chat-messages::-webkit-scrollbar-thumb:hover {
    background: #152e73;
}

/* Notifications Styles */
.notifications {
    margin-top: var(--header-height);
    background-color: var(--light-bg);
    min-height: calc(100vh - var(--header-height));
}

.notifications .card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    margin-bottom: 1.5rem;
}

.notifications .card:hover {
    transform: translateY(-2px);
}

.notifications .card-body {
    padding: 1.25rem;
}

.notifications .btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: 8px;
    padding: 0.5rem 1rem;
    transition: all 0.3s ease;
}

.notifications .btn-outline-primary:hover,
.notifications .btn-outline-primary.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.notifications .btn-outline-danger {
    color: #dc3545;
    border-color: #dc3545;
    border-radius: 8px;

    transition: all 0.3s ease;
}

.notifications .btn-outline-danger:hover {
    background-color: #dc3545;
    color: white;
}

/* Notification Items */
.notification-item {
    background: white;
    border-radius: 12px;
    padding: 1.25rem;
    margin-bottom: 1rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.notification-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.notification-item.unread {
    border-left-color: var(--accent-color);
    background-color: rgba(212, 175, 55, 0.05);
}

.notification-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.notification-icon.bg-primary {
    background-color: var(--primary-color) !important;
}

.notification-icon.bg-success {
    background-color: #28a745 !important;
}

.notification-icon.bg-warning {
    background-color: var(--accent-color) !important;
}

.notification-icon.bg-info {
    background-color: #17a2b8 !important;
}

.notification-item h5 {
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.notification-item p {
    color: var(--muted-color);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.notification-item small {
    color: var(--muted-color);
    font-size: 0.85rem;
}

.notification-item .btn-link {
    color: var(--muted-color);
    transition: all 0.3s ease;
}

.notification-item .btn-link:hover {
    color: #dc3545;
    transform: scale(1.1);
}

/* Filters Section */
.notifications .filters {
    margin-bottom: 2rem;
}

.notifications .filters .btn {
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .notifications .card {
        margin-bottom: 1rem;
    }

    .notification-item {
        padding: 1rem;
    }

    .notification-icon {
        width: 35px;
        height: 35px;
    }
}

/* Settings Styles */
.settings {
    margin-top: var(--header-height);
    background-color: var(--light-bg);
    min-height: calc(100vh - var(--header-height));
    padding: 2rem 0;
}

.settings .card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    margin-bottom: 1.5rem;
}

.settings .card:hover {
    transform: translateY(-2px);
}

.settings .card-header {
    background-color: white;
    border-bottom: 1px solid var(--border-color);
    padding: 1.25rem;
}

.settings .card-header h5 {
    color: var(--text-color);
    font-weight: 600;
    margin: 0;
}

.settings .card-body {
    padding: 1.5rem;
}

/* Navigation */
.settings .list-group-item {
    border: none;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    padding: 1rem 1.25rem;
    transition: all 0.3s ease;
    color: var(--text-color);
}

.settings .list-group-item:hover {
    background-color: rgba(26, 58, 138, 0.05);
    transform: translateX(5px);
}

.settings .list-group-item.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.settings .list-group-item i {
    width: 20px;
    text-align: center;
    margin-right: 0.75rem;
    color: var(--muted-color);
}

.settings .list-group-item.active i {
    color: white;
}

/* Form Elements */
.settings .form-label {
    color: var(--text-color);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.settings .form-control,
.settings .form-select {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.settings .form-control:focus,
.settings .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(26, 58, 138, 0.1);
}

.settings .rounded-circle {
    border: 3px solid var(--primary-color);
    padding: 0.25rem;
}

/* Buttons */
.settings .btn {
    padding: 0.5rem 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.settings .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.settings .btn-primary:hover {
    background-color: #152e73;
    border-color: #152e73;
}

.settings .btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.settings .btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
}

.settings .btn-outline-danger {
    color: #dc3545;
    border-color: #dc3545;
}

.settings .btn-outline-danger:hover {
    background-color: #dc3545;
    color: white;
}

/* Switches */
.settings .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.settings .form-check-input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(26, 58, 138, 0.25);
}

/* Tables */
.settings .table {
    margin-bottom: 0;
}

.settings .table th {
    color: var(--text-color);
    font-weight: 600;
    border-bottom: 2px solid var(--border-color);
}

.settings .table td {
    color: var(--muted-color);
    vertical-align: middle;
}

.settings .table tr:hover {
    background-color: rgba(26, 58, 138, 0.02);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .settings {
        padding: 1rem 0;
    }

    .settings .card {
        margin-bottom: 1rem;
    }

    .settings .list-group-item {
        padding: 0.75rem 1rem;
    }

    .settings .btn {
        padding: 0.5rem 1rem;
    }
}

/* Business Plans Styles */
.business-plans {
    margin-top: var(--header-height);
    background-color: var(--light-bg);
    min-height: calc(100vh - var(--header-height));
    padding: 2rem 0;
}

.business-plans h1 {
    color: var(--primary-color);

    margin-bottom: 0;
}

.business-plans .card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.business-plans .card:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);

}

.business-plans .card-body {
    padding: 1.5rem;
}

.business-plans .card-title {
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.business-plans .badge {
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 500;
}

.business-plans .badge.bg-primary {
    background-color: var(--primary-color) !important;
}

.business-plans .badge.bg-success {
    background-color: #28a745 !important;
}

.business-plans .badge.bg-warning {
    background-color: var(--accent-color) !important;
}

.business-plans .badge.bg-info {
    background-color: #17a2b8 !important;
}

/* Progress Bar */
.business-plans .progress {
    background-color: rgba(26, 58, 138, 0.1);
    border-radius: 8px;
    height: 8px !important;
}

.business-plans .progress-bar {
    background-color: var(--primary-color);
    border-radius: 8px;
}

/* Filters */
.business-plans .filters .card {
    background-color: white;
    border-radius: 12px;
    padding: 1.5rem;
}

.business-plans .form-control,
.business-plans .form-select {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.business-plans .form-control:focus,
.business-plans .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(26, 58, 138, 0.1);
}

/* Dropdown Menu */
.business-plans .dropdown-menu {
    z-index: 9999;
    position: absolute;
    transform: none !important;
}

.business-plans .dropdown {
    position: static;
}

.business-plans .dropdown-item {
    padding: 0.75rem 1rem;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.business-plans .dropdown-item:hover {
    background-color: rgba(26, 58, 138, 0.05);
}

.business-plans .dropdown-item i {
    width: 20px;
    text-align: center;
    margin-right: 0.5rem;
    color: var(--muted-color);
}

/* Pagination */
.business-plans .pagination {
    margin-top: 2rem;
}
/* Pagination */


.business-plans .page-link {
    color: var(--primary-color);
    border: none;
    padding: 0.75rem 1rem;
    margin: 0 0.25rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.business-plans .page-link:hover {
    background-color: rgba(26, 58, 138, 0.1);
    color: var(--primary-color);
}

.business-plans .page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: white;
    color: white;
}

/* Modal Styles */
.business-plans .modal-content {
    border: none;
    border-radius: 12px;
    overflow: hidden;
}

.business-plans .modal-header {
    background-color: var(--primary-color);
    color: white;
    padding: 1.5rem;
}

.business-plans .modal-title {
    font-weight: 600;
}

.business-plans .modal-body {
    padding: 1.5rem;
}

.business-plans .modal-footer {
    border-top: 1px solid var(--border-color);
    padding: 1.5rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .business-plans {
        padding: 1rem 0;
    }

    .business-plans .card {
        margin-bottom: 1rem;
    }

    .business-plans .filters .card {
        padding: 1rem;
    }

    .business-plans .form-control,
    .business-plans .form-select {
        margin-bottom: 1rem;
    }
}

/* Profile Section Styles */
.profile {
    margin-top: var(--header-height);
    background-color: var(--light-bg);
    min-height: calc(100vh - var(--header-height));
    padding: 2rem 0;
}

.profile .card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;

}

.profile .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.profile .card-header {
    background-color: white;
    border-bottom: 1px solid var(--border-color);
    padding: 1.25rem;
}

.profile .card-header h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
}

.profile .card-body {
    padding: 1.5rem;
}

/* Profile Image */
.profile .rounded-circle {
    border: 3px solid var(--primary-color);
    padding: 0.25rem;
    transition: all 0.3s ease;
}

.profile .rounded-circle:hover {
    transform: scale(1.05);
    border-color: var(--accent-color);
}

/* Profile Stats */
.profile .stat-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    color: white;
}

.profile .stat-icon.bg-primary {
    background-color: var(--primary-color);
}

.profile .stat-icon.bg-success {
    background-color: #28a745;
}

.profile .stat-icon.bg-warning {
    background-color: var(--accent-color);
}

/* Form Elements */
.profile .form-label {
    color: var(--text-color);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.profile .form-control,
.profile .form-select {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0.75rem 1rem;
    transition: all 0.3s ease;
}

.profile .form-control:focus,
.profile .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(26, 58, 138, 0.1);
}

.profile textarea.form-control {
    min-height: 100px;
}

/* Buttons */
.profile .btn {
    padding: 0.5rem 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.profile .btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.profile .btn-primary:hover {
    background-color: #152e73;
    border-color: #152e73;
}

.profile .btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.profile .btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Security Section */
.profile .security-item {
    padding: 1rem;
    border-radius: 8px;
    background-color: rgba(26, 58, 138, 0.05);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.profile .security-item:hover {
    background-color: rgba(26, 58, 138, 0.1);
    transform: translateX(5px);
}

.profile .security-item h6 {
    color: var(--text-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.profile .security-item p {
    color: var(--muted-color);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

/* Sessions Table */
.profile .table th {
    color: var(--text-color);
    font-weight: 600;
    border-bottom: 2px solid var(--border-color);
}

.profile .table td {
    color: var(--muted-color);
    vertical-align: middle;
}

.profile .table tr:hover {
    background-color: rgba(26, 58, 138, 0.02);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .profile {
        padding: 1rem 0;
    }

    .profile .card {
        margin-bottom: 1rem;
    }

    .profile .form-control,
    .profile .form-select {
        margin-bottom: 1rem;
    }
}

/* Subscription Section Styles */
.subscription {
    margin-top: var(--header-height);
    background-color: var(--light-bg);
    min-height: calc(100vh - var(--header-height));
    padding: 2rem 0;
}

.subscription .card {
    border: none;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.subscription .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.subscription .card.border-primary {
    border: 2px solid var(--primary-color) !important;
}

.subscription .card-header {
    background-color: white;
    border-bottom: 1px solid var(--border-color);
    padding: 1.25rem;
}

.subscription .card-header h5 {
    color: var(--primary-color);
    font-weight: 600;
    margin: 0;
}

.subscription .card-body {
    padding: 2rem;
}

/* Plan Card */
.subscription .stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: white !important;
    color: #1a3a8a;
    background-color: #d4af37;
}

.subscription .stat-icon.text-gold {
    color: #1a3a8a;
    background-color: #d4af37;
}

.subscription .stat-icon.text-primary {
    color: #1a3a8a !important;
    background-color: #d4af37;
}

.subscription .plan-feature {
    padding: 1.5rem;
    background-color: rgba(26, 58, 138, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.subscription .plan-feature:hover {
    background-color: rgba(26, 58, 138, 0.1);
    transform: translateY(-5px);
}

.subscription .plan-feature .stat-icon {
    width: 40px;
    height: 40px;
    margin-bottom: 1rem;
}

/* Status Badge */
.subscription .status-badge {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.875rem;
}

.subscription .status-badge.active {
    background-color: rgba(40, 167, 69, 0.1);
    color: #28a745;
}

/* Table Styles */
.subscription .table th {
    color: var(--text-color);
    font-weight: 600;
    border-bottom: 2px solid var(--border-color);
}

.subscription .table td {
    color: var(--muted-color);
    vertical-align: middle;
}

.subscription .table tr:hover {
    background-color: rgba(26, 58, 138, 0.02);
}

/* Buttons */
.subscription .btn {
    padding: 0.5rem 1rem;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.subscription .btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.subscription .btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
}

.subscription .btn-outline-danger {
    color: #dc3545;
    border-color: #dc3545;
}

.subscription .btn-outline-danger:hover {
    background-color: #dc3545;
    color: white;
}

/* Usage Statistics */
.subscription .usage-stat {
    text-align: center;
    padding: 1.5rem;
    background-color: rgba(26, 58, 138, 0.05);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.subscription .usage-stat:hover {
    background-color: rgba(26, 58, 138, 0.1);
    transform: translateY(-5px);
}

.subscription .usage-stat .stat-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;

}

.subscription .usage-stat h2 {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .subscription {
        padding: 1rem 0;
    }

    .subscription .card {
        margin-bottom: 1rem;
    }

    .subscription .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}

/* Styles des formulaires de business plan */
.form-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.form-section:hover {
    /*transform: translateY(-2px);*/
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.form-section h2 {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--gold-color);
}

.form-section .card {
    border: none;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
}

.form-section .card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.form-section .form-label {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-section .form-control,
.form-section .form-select {
    border: 2px solid #e9ecef;
    border-radius: var(--border-radius);
    padding: 0.75rem 1rem;
    transition: var(--transition);
}

.form-section .form-control:focus,
.form-section .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(26, 58, 138, 0.25);
}

.form-section .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.form-section .form-check-input:focus {
    box-shadow: 0 0 0 0.2rem rgba(26, 58, 138, 0.25);
}

.form-section .btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: var(--border-radius);
    padding: 0.5rem 1.5rem;
    transition: var(--transition);
}

.form-section .btn-outline-primary:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-1px);
}

.form-section .btn-outline-primary.active {
    background-color: var(--primary-color);
    color: white;
}

/* Progress Bar Styles */
.progress-container {
    background-color: var(--light-bg);
    padding: 0.5rem 0;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
}

.progress {
    height: 8px !important;
    background-color: #e9ecef;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.progress-bar {
    background: linear-gradient(90deg, var(--gold-color), var(--gold-color));
    transition: width 0.6s ease;
}

.steps-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 0 1rem;
}

.step {
    position: relative;
    padding: 0.3rem 0.6rem;
    background-color: white;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--muted-color);
    transition: all 0.3s ease;
    z-index: 1;
    border: 1px solid var(--border-color);
}
.step.valided.active,
.step.completed.active,
.step.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: scale(1.05);
    box-shadow: 0 2px 8px rgba(26, 58, 138, 0.2);
}

.step.completed {
    background-color: var(--gold-color);
    color: white;
    border-color: var(--gold-color);
}
.step.valided {
    background-color: var(--gold-color);
    color: white;

}
/*
.step::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -80%;
    width: 100%;
    height: 2px;
    background-color: var(--border-color);
    z-index: -1;
}
*/
.step:first-child::before {
    display: none;
}

.step.valided::before,
.step.active::before,
.step.completed::before {
    background-color: var(--primary-color);
}

.step.valided::after {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    margin-left: 0.5rem;
}

@media (max-width: 768px) {
    .steps-container {
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .step {
        flex: 1;
        min-width: 120px;
        text-align: center;
        padding: 0.5rem;
        font-size: 0.8rem;
    }

    .step::before {
        display: none;
    }
}

/* Scénarios Styles */
.scenarios {
    background-color: #f8f9fa;
    padding: 4rem 0;
}

.scenarios .card {
    border: none;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: white;
    height: 100%;
}

.scenarios .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.scenarios .card-body {
    padding: 1rem;
}

.scenarios .card-title {
    color: #1A3A8A;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.scenarios .card-text {
    color: #6c757d;
    margin-bottom: 1.5rem;
}

.scenarios .list-unstyled {
    margin: 1.5rem 0;
}

.scenarios .list-unstyled li {
    margin-bottom: 0.75rem;
    color: #495057;
}

.scenarios .list-unstyled i {
    color: #D4AF37;
    margin-right: 0.5rem;
}


.scenarios h1 {
    color: #1A3A8A;

    margin-bottom: 1rem;
}

.scenarios .lead {
    color: #6c757d;
    font-size: 1.1rem;
}

.scenarios .features-section {
    margin-top: 4rem;
}

.scenarios .features-section .card {
    background-color: #f8f9fa;
    border: 1px solid rgba(26, 58, 138, 0.1);
}

.scenarios .features-section h3 {
    color: #1A3A8A;
    font-weight: 600;
    margin-bottom: 2rem;
}

.scenarios .features-section h5 {
    color: #1A3A8A;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.scenarios .features-section p {
    color: #6c757d;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .scenarios {
        padding: 2rem 0;
    }

    .scenarios .card {
        margin-bottom: 1.5rem;
    }

    .scenarios .stat-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}


.dashboard .stat-icon, .dashboard i {

    font-size:20px; ;
}
.dashboard  .btn-primary {
    background-color: #d4af37;
    border-color: #d4af37;
    color: #fff;
}
 .btn-recevoir-prompts-fixed:hover,.btn-recevoir-prompts-fixed:focus,.btn-recevoir-prompts-fixed:active {
    border-color:#fc460a!important;
    color:white !important;
    background-color: #fc460a!important;
    }
/*start button style */
.btn-recevoir-prompts-fixed{

  color:white !important;
  border-color:#f56636;
  background-color: #f56636;
  margin: 5px;
  animation: btn-recevoir-prompts 2s ease-out 1;
  z-index: 1000;
}

.btn-prompts-fixed{
  position: fixed;
  top: 25%;
  right:-300px;

  width: 350px;


}
.btn-prompts-fixed .bouttons-prompts
{
    border: 1px solid #f56636;
}
.btn-prompts-fixed:hover{

  animation: hover-animation 8s ease-out ;
  transform:  translate(0px, 0px);

}
@keyframes hover-animation{
  0% {
    transform:  translate(0px, 0px);
  }
  5% {
    transform:  translate(-300px, 0px);
  }
  95% {
    transform:  translate(-300px, 0px);
  }
  100% {
    transform:  translate(0px, 0px);

  }
  100% {
    transform:  translate(1px, 0px);

  }

}
.bg-prompts{
  border-color:#f56636;
  background-color: #f56636;
}

@media (max-width: 768px) {

  .btn-prompts-fixed{

    display: none;
  }

}
.required::after {
        content: " *";
        color: red;
 }

 /* Bouton Orange Flash "Tape à l'oeil" */
.btn-orange-flash {
  background: linear-gradient(135deg, #ff6b00 0%, #ff8c00 50%, #ff4500 100%);
  border: none;
  color: #ffffff;
  font-weight: 400;
  letter-spacing: 1px;
  padding: 4px 8px;
  font-size: 14px;
  font-family: 'Montserrat, sans-serif';
  margin-right:8px;
  margin-left: 0;
  margin-top: 0;
  margin-bottom: 0;
  border-radius: 50px;
  box-shadow: 0 8px 25px rgba(255, 107, 0, 0.4),
              0 0 20px rgba(255, 107, 0, 0.3),
              inset 0 1px 0 rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
 /* animation: pulse-glow 2s infinite;*/
}

/* Effet de brillance animé */
.btn-orange-flash::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    45deg,
    transparent 30%,
    rgba(255, 255, 255, 0.4) 50%,
    transparent 70%
  );
  transform: rotate(45deg);
  animation: shine 3s infinite;
}

/* Animation de pulsation lumineuse */
@keyframes pulse-glow {
  0%, 100% {
    box-shadow: 0 8px 25px rgba(255, 107, 0, 0.4),
                0 0 20px rgba(255, 107, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
  }
  50% {
    box-shadow: 0 8px 35px rgba(255, 107, 0, 0.6),
                0 0 40px rgba(255, 107, 0, 0.5),
                inset 0 1px 0 rgba(255, 255, 255, 0.4);
  }
}

/* Animation de brillance */
@keyframes shine {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* Effet hover */
.btn-orange-flash:hover {
  transform: translateY(-3px) scale(1.05);
  background: linear-gradient(135deg, #ff8c00 0%, #ffa500 50%, #ff6b00 100%);
  /*
  box-shadow: 0 12px 40px rgba(255, 107, 0, 0.6),
              0 0 60px rgba(255, 107, 0, 0.5),
              inset 0 1px 0 rgba(255, 255, 255, 0.4);*/
  color: #ffffff;
}

/* Effet actif/clic */
.btn-orange-flash:active {
  transform: translateY(0) scale(0.98);
  box-shadow: 0 4px 15px rgba(255, 107, 0, 0.4),
              0 0 20px rgba(255, 107, 0, 0.3),
              inset 0 2px 5px rgba(0, 0, 0, 0.2);
}

/* Effet focus */
.btn-orange-flash:focus {
  outline: none;
  box-shadow: 0 12px 40px rgba(255, 107, 0, 0.6),
              0 0 60px rgba(255, 107, 0, 0.5),
              0 0 0 4px rgba(255, 107, 0, 0.3);
}

/* Variante plus discrète (optionnelle) */
.btn-orange-flash-sm {
  padding: 10px 25px;
  font-size: 14px;
  animation: none;
}

.btn-orange-flash-sm:hover {
  animation: pulse-glow 1s infinite;
}
