/* === VARIABLES DE COULEUR & POLICES === */
:root {
    --primary-color: #006A4E;   /* Vert Togo */
    --secondary-color: #FCD116; /* Jaune Togo */
    --accent-red-color: #CE1126;/* Rouge Togo */

    --text-dark: #212529;
    --text-muted: #6c757d;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;

    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --font-text: 'Open Sans', sans-serif;

    --border-radius: 0.375rem;
    --box-shadow-sm: 0 .125rem .25rem rgba(0,0,0,.075);
    --box-shadow-md: 0 .25rem .75rem rgba(0,0,0,.1);
    --box-shadow: 0 .5rem 1rem rgba(0,0,0,.15);
    --box-shadow-lg: 0 1rem 3rem rgba(0,0,0,.175);
}

/* === STYLES GLOBAUX === */
body {
    font-family: var(--font-text);
    color: var(--text-dark);
    line-height: 1.7;
    background-color: var(--bg-white);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}
.section-header {
    text-align: center;
}
.section-header h2 {
    color: var(--primary-color);
}
.section-header p {
    color: var(--text-muted);
    font-family: var(--font-body);
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}
a:hover {
    color: #00523E; /* Vert plus foncé */
}

.btn {
    font-family: var(--font-body);
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
    box-shadow: var(--box-shadow-sm);
}
.btn:hover{
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

/* ======= Header Réaligné et Amélioré ======= */

/* --- 1. Style de base (Header blanc solide) --- */
.header {
    padding: 15px 0;
    background: var(--bg-white);
    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 997;
}
.header .container-xl {
    /* Le d-flex est déjà dans le HTML */
}

/* Style du Logo */
.header .logo { position: relative; }
.header .logo img { max-height: 50px; transition: transform 0.3s ease; border-radius: 50%; }
.header .logo::before { content: ''; position: absolute; top: -5px; left: -5px; right: -5px; bottom: -5px; border-radius: 50%; border: 2px solid var(--secondary-color); opacity: 0; transform: scale(0.8); transition: all 0.4s ease; pointer-events: none; }
.header .logo:hover::before { opacity: 1; transform: scale(1); box-shadow: 0 0 15px var(--secondary-color); }
.header .logo:hover img { transform: scale(1.1); }

.header .logo-text { margin-left: 12px; font-family: var(--font-heading); font-weight: 800; font-size: 24px; }
.header .logo-text .togo-part { color: var(--primary-color); }
.header .logo-text .startup-part { color: var(--secondary-color); }

/* Liens de navigation */
.navmenu {
    margin-left: 40px; /* Espace entre le logo et le premier lien de nav */
}
.navmenu ul {
    display: flex;
    margin: 0;
    padding: 0;
    list-style: none;
    align-items: center;
    gap: 10px; /* Espacement fixe et propre entre les liens */
}
.navmenu a, .navmenu a:focus {
    color: var(--text-muted);
    padding: 8px 16px; /* Padding légèrement réduit pour des liens plus compacts */
    font-size: 1rem;
    font-weight: 600;
    font-family: var(--font-body);
    transition: all 0.3s;
    border-radius: 50px;
    text-decoration: none;
}
.navmenu a:hover, .navmenu .active {
    color: var(--primary-color);
    background-color: rgba(0, 106, 78, 0.08);
}

/* Boutons */
.header-buttons { gap: 10px; } /* Espacement entre les boutons Connexion/Devenir membre */
.header-buttons .btn-login, .header-buttons .btn-register, .header-buttons .btn-dashboard, .header-buttons .btn-logout, .header-buttons .user-greeting { font-family: var(--font-body); font-weight: 600; font-size: 0.9rem; padding: 10px 22px; border-radius: 50px; transition: all 0.3s; text-align: center; white-space: nowrap; text-decoration: none; }
.header-buttons .btn-login { color: var(--primary-color); border: 2px solid var(--primary-color); }
.header-buttons .btn-login:hover { background: var(--primary-color); color: var(--bg-white); }
.header-buttons .btn-register, .header-buttons .btn-dashboard { background: var(--primary-color); color: var(--bg-white); border: 2px solid var(--primary-color); display: flex; align-items: center; gap: 8px; }
.header-buttons .btn-register:hover, .header-buttons .btn-dashboard:hover { background: #00523E; border-color: #00523E; transform: translateY(-2px); }
.header-buttons .user-greeting { color: var(--text-dark); padding: 10px 15px; }
.header-buttons .btn-logout { background: transparent; border: none; color: var(--accent-red-color); font-size: 1.2rem; padding: 5px 10px; }
.header-buttons .btn-logout:hover { background-color: rgba(206, 17, 38, 0.1); }

/*
==============================================
   NAVIGATION MOBILE - OFFCANVAS
==============================================
*/

.offcanvas {
    background-color: var(--bg-white); /* Fond blanc, propre */
    color: var(--text-dark);
    width: 280px; /* Un peu plus large pour le confort */
    border-left: 1px solid #dee2e6;
}

/* En-tête du menu */
.offcanvas-header {
    border-bottom: 1px solid #e9ecef;
    padding: 1rem 1.5rem;
}

.offcanvas-title {
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-weight: 700;
}

.offcanvas .btn-close:focus {
    box-shadow: 0 0 0 0.25rem rgba(0, 106, 78, 0.25); /* Ombre focus verte */
}

/* Corps du menu */
.offcanvas-body {
    padding: 0;
}

/* Liste de navigation */
ul.mobile-offcanvas-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Liens de navigation */
ul.mobile-offcanvas-nav li a:not(.btn) {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 500;
    font-family: var(--font-body);
    border-bottom: 1px solid #f0f0f0;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}

ul.mobile-offcanvas-nav li a:not(.btn):hover {
    background-color: rgba(0, 106, 78, 0.05); /* Vert très léger au survol */
    color: var(--primary-color);
    padding-left: 30px; /* Petite animation au survol */
}

ul.mobile-offcanvas-nav li a.active {
    background-color: rgba(0, 106, 78, 0.1);
    color: var(--primary-color);
    font-weight: 600;
    border-left: 3px solid var(--primary-color);
    padding-left: 22px;
}

ul.mobile-offcanvas-nav li a.dashboard-link {
    font-weight: 600;
    color: var(--primary-color);
}

/* Informations utilisateur */
ul.mobile-offcanvas-nav .user-info {
    padding: 15px 25px;
    background: var(--bg-light);
    color: var(--text-dark);
    font-weight: 500;
}

/* Boutons */
ul.mobile-offcanvas-nav li .btn {
    text-align: center;
    font-size: 0.95rem;
    padding-top: 12px;
    padding-bottom: 12px;
}

/* Séparateurs */
ul.mobile-offcanvas-nav hr {
    margin: 0.5rem 0;
    border-top-color: #e9ecef;
}

/* Menu mobile */
.mobile-nav-toggle { font-size: 28px; cursor: pointer; line-height: 0; transition: 0.5s; }
.header .mobile-nav-toggle { color: var(--text-dark); }

/* ======= NAVIGATION MOBILE (Burger Menu) ======= */

/* Bouton Burger */
.mobile-nav-toggle {
    font-size: 28px;
    cursor: pointer;
    border: none;
    background: transparent;
    padding: 0;
    line-height: 0;
    color: var(--text-dark);
    transition: color 0.3s;
}

.header.header-transparent .mobile-nav-toggle {
    color: var(--bg-white);
}

.header.header-scrolled .mobile-nav-toggle {
    color: var(--text-dark);
}

/* Menu Latéral Offcanvas */
.offcanvas-header {
    border-bottom: 1px solid #dee2e6;
}
.offcanvas-title {
    color: var(--primary-color);
    font-weight: 700;
}
.offcanvas-body {
    padding: 0;
}
ul.mobile-offcanvas-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}
ul.mobile-offcanvas-nav li a:not(.btn) {
    display: flex;
    align-items: center;
    padding: 15px 25px;
    color: var(--text-dark);
    font-size: 1.1rem;
    font-weight: 500;
    border-bottom: 1px solid #f0f0f0;
    text-decoration: none;
    transition: all 0.2s ease-in-out;
}
ul.mobile-offcanvas-nav li a:hover {
    background-color: #f8f9fa;
    color: var(--primary-color);
    padding-left: 30px;
}
ul.mobile-offcanvas-nav li a.active {
    background-color: rgba(0, 106, 78, 0.05);
    color: var(--primary-color);
    font-weight: 600;
}
ul.mobile-offcanvas-nav li a.dashboard-link {
    font-weight: 600;
    color: var(--primary-color);
}
ul.mobile-offcanvas-nav .user-info {
    padding: 15px 25px;
    background: var(--bg-light);
    color: var(--text-dark);
    font-weight: 500;
}
ul.mobile-offcanvas-nav li .btn {
    text-align: center;
}

/* --- 2. Style pour l'état transparent --- */
.header.header-transparent {
    background: transparent;
    box-shadow: none;
    padding: 20px 0;
}
.header.header-transparent .logo-text .togo-part,
.header.header-transparent .logo-text .startup-part { color: var(--bg-white); text-shadow: 1px 1px 3px rgba(0,0,0,0.3); }
.header.header-transparent .navmenu a { color: rgba(255, 255, 255, 0.85); }
.header.header-transparent .navmenu a:hover,
.header.header-transparent .navmenu .active { color: var(--bg-white); background-color: rgba(255, 255, 255, 0.15); }
.header.header-transparent .btn-login { color: var(--bg-white); border-color: rgba(255, 255, 255, 0.5); }
.header.header-transparent .btn-login:hover { border-color: var(--bg-white); background-color: var(--bg-white); color: var(--text-dark); }
.header.header-transparent .btn-register,
.header.header-transparent .btn-dashboard { background: var(--secondary-color); color: var(--text-dark); border-color: var(--secondary-color); }
.header.header-transparent .btn-register:hover,
.header.header-transparent .btn-dashboard:hover { background: #ffd43b; border-color: #ffd43b; }
.header.header-transparent .user-greeting { color: var(--bg-white); text-shadow: 1px 1px 3px rgba(0,0,0,0.3); }
.header.header-transparent .btn-logout { color: rgba(255, 255, 255, 0.85); }
.header.header-transparent .btn-logout:hover { background-color: rgba(255, 255, 255, 0.15); color: var(--bg-white); }
.header.header-transparent .mobile-nav-toggle { color: var(--bg-white); }



/* --- 3. Style après scroll (classe .header-scrolled ajoutée par JS) --- */
/* Cette classe surcharge les styles de .header-transparent */
.header.header-scrolled {
    padding: 15px 0;
    background: var(--bg-white);
    box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.08);
}
.header.header-scrolled .logo-text .togo-part { color: var(--primary-color); text-shadow: none; }
.header.header-scrolled .logo-text .startup-part { color: var(--secondary-color); text-shadow: none; }
.header.header-scrolled .navmenu a { color: var(--text-muted); }
.header.header-scrolled .navmenu a:hover, .header.header-scrolled .navmenu .active { color: var(--primary-color); background-color: rgba(0, 106, 78, 0.08); }
.header.header-scrolled .btn-login { color: var(--primary-color); border-color: var(--primary-color); background-color: transparent; }
.header.header-scrolled .btn-login:hover { background-color: var(--primary-color); color: var(--bg-white); }
.header.header-scrolled .btn-register, .header.header-scrolled .btn-dashboard { background-color: var(--primary-color); color: var(--bg-white); border-color: var(--primary-color); }
.header.header-scrolled .btn-register:hover, .header.header-scrolled .btn-dashboard:hover { background-color: #00523E; border-color: #00523E; }
.header.header-scrolled .user-greeting { color: var(--text-dark); text-shadow: none; }
.header.header-scrolled .btn-logout { color: var(--accent-red-color); background-color: transparent; }
.header.header-scrolled .btn-logout:hover { background-color: rgba(206, 17, 38, 0.1); }
.header.header-scrolled .mobile-nav-toggle { color: var(--text-dark); }


/* === HERO SECTION (AMÉLIORÉ) === */
#hero {
    position: relative;
    width: 100%;
    min-height: 90vh;
    overflow: hidden;
    padding: 0;
}
.hero-carousel-background {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: 1;
}
.hero-carousel-background .carousel-inner,
.hero-carousel-background .carousel-item {
    height: 100%;
}
.hero-carousel-background .carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(4px) brightness(0.7);
    transform: scale(1.05);
}
.hero-content-wrapper {
    position: relative;
    z-index: 3;
    width: 100%;
    min-height: 80vh;
    display: flex;
    align-items: center;
}
.hero-content-box {
    background-color: rgba(0, 77, 37, 0.7);
    Padding: 20px 10px;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--bg-white);
}
.hero-content-box h1 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 800;
    color: var(--bg-white);
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.hero-content-box h2 {
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    font-family: var(--font-body);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
}
#hero .btn-hero-primary,
#hero .btn-hero-secondary {
    font-family: var(--font-body);
    font-weight: 700;
    padding: 12px 30px;
    border-radius: 50px;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    border: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
#hero .btn-hero-primary {
    background-color: var(--secondary-color);
    color: var(--text-dark);
    border-color: var(--secondary-color);
}
#hero .btn-hero-primary:hover {
    background-color: var(--bg-white);
    color: var(--secondary-color);
    border-color: var(--secondary-color);
    box-shadow: 0 6px 20px rgba(252, 209, 22, 0.3);
    transform: translateY(-3px);
}
#hero .btn-hero-secondary {
    background-color: transparent;
    color: var(--bg-white);
    border: 2px solid var(--bg-white);
}
#hero .btn-hero-secondary:hover {
    background-color: var(--bg-white);
    color: var(--primary-color);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
}
@media (max-width: 768px) {
    .hero-content-box { padding: 30px 20px; }
    #hero .btn-hero-primary,
    #hero .btn-hero-secondary {
        font-size: 0.9rem;
        padding: 10px 25px;
    }
}

/* Styles pour les sections, à ajouter après les styles globaux, header et hero */

.section-bg {
    background-color: var(--bg-light);
}

.section-header {
    padding-bottom: 40px;
}

/* Bouton personnalisé réutilisable */
.btn-primary-custom {
    background-color: var(--primary-color);
    color: var(--bg-white);
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    border: 2px solid var(--primary-color);
}
.btn-primary-custom:hover {
    background-color: #00523E;
    color: var(--bg-white);
    border-color: #00523E;
}


/* ======= Section Pourquoi Togo Startup ? (Style pour 4 colonnes) ======= */
.why-us {
    padding: 80px 0;
}
.why-us-card {
    padding: 30px; /* Un peu moins de padding pour les cartes plus petites */
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid #e9ecef;
}
.why-us-card .icon {
    margin: 0 auto;
    width: 64px; /* Taille d'icône légèrement réduite */
    height: 64px;
    background: linear-gradient(135deg, var(--primary-color), #004d25);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px; /* Taille de la police de l'icône réduite */
    transition: all 0.3s;
    box-shadow: 0 8px 16px rgba(0, 106, 78, 0.2);
}
.why-us-card h4 {
    font-weight: 700;
    margin-bottom: 15px;
    font-size: 1.2rem; /* Taille de titre légèrement réduite */
    color: var(--text-dark);
}
.why-us-card p {
    font-size: 0.9rem; /* Taille de paragraphe légèrement réduite */
    color: var(--text-muted);
    line-height: 1.7;
}
.why-us-card:hover {
    transform: translateY(-12px) scale(1.05);
    box-shadow: 0 20px 50px rgba(0, 106, 78, 0.15);
    border-color: var(--primary-color);
}
.why-us-card:hover .icon {
    background: var(--secondary-color);
    color: var(--text-dark);
    box-shadow: 0 8px 16px rgba(252, 209, 22, 0.3);
}

/* ======= Section Opportunités & Événements (Refondue) ======= */
.opportunities-events {
    padding: 80px 0;
}
.column-header {
    margin-bottom: 30px;
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 10px;
}
.column-header h3 {
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 12px;
}
.column-header i {
    color: var(--secondary-color);
}
.list-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.opportunity-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 25px;
    background: var(--bg-white);
    border-radius: 12px;
    border-left: 5px solid var(--primary-color);
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}
.opportunity-item:hover {
    transform: translateX(10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-left-color: var(--secondary-color);
}
.opportunity-item .item-content h4 a {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
}
.opportunity-item .item-content h4 a:hover {
    color: var(--primary-color);
}
.opportunity-item .meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 8px;
}
.opportunity-item .meta i {
    color: var(--primary-color);
    margin-right: 5px;
}
.opportunity-item .meta .deadline {
    color: var(--accent-red-color);
    font-weight: 600;
}
.opportunity-item .btn {
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}
.opportunity-item .btn i {
    transition: transform 0.3s;
}
.opportunity-item .btn:hover i {
    transform: translateX(5px);
}
.opportunity-item .btn-apply {
    background-color: var(--secondary-color);
    color: var(--text-dark);
    border: 2px solid var(--secondary-color);
}
.opportunity-item .btn-apply:hover {
    background-color: transparent;
    color: var(--secondary-color);
}
.opportunity-item .btn-register {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border: 2px solid var(--primary-color);
}
.opportunity-item .btn-register:hover {
    background-color: transparent;
    color: var(--primary-color);
}

@media (min-width: 992px) {
    .opportunity-item {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    .opportunity-item .btn {
        align-self: center;
    }
}

/* --- Pagination de l'Annuaire (Style Personnalisé) --- */
.annuaire-pagination .page-link {
    color: var(--primary-color); /* Couleur du texte des numéros (vert) */
    background-color: var(--bg-white);
    border: 1px solid #ddd;
    margin: 0 4px;
    border-radius: 8px; /* Bords un peu plus doux */
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: none !important; /* Important pour enlever l'ombre bleue de Bootstrap */
}

/* Style au survol */
.annuaire-pagination .page-link:hover {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-color: var(--primary-color);
    transform: translateY(-3px); /* Effet de "saut" */
    box-shadow: 0 4px 10px rgba(0, 106, 78, 0.2) !important;
}

/* Style de la page active */
.annuaire-pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--bg-white);
    z-index: 2;
}

/* Style du bouton désactivé (Précédent/Suivant) */
.annuaire-pagination .page-item.disabled .page-link {
    color: #aaa;
    background-color: #f8f9fa;
    border-color: #e9ecef;
}

/* ======= Style de la Page Annuaire (Membres) ======= */

.annuaire-content {
    padding: 80px 0;
    margin-top: -60px;
    position: relative;
    z-index: 2; /* Pour que le contenu passe bien au-dessus de l'en-tête de page si besoin */
}

.alert-custom-green {
    background-color: #e6f3ee; /* Un vert très pâle */
    border-color: #b8e0d2;
    color: #004d33; /* Un vert foncé pour le texte */
}

/* ... (Le reste de ton CSS pour la sidebar et les cartes reste inchangé) ... */

/* ======= Section Blog (Améliorée) ======= */
.blog {
    padding: 80px 0;
}
.article-card {
    background: var(--bg-white);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
}
.article-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
}
.article-card .article-img-link {
    display: block;
    overflow: hidden;
}
.article-card .article-img img {
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.article-card:hover .article-img img {
    transform: scale(1.08);
}
.article-card .article-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.article-card .meta-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-bottom: 10px;
}
.article-card .meta-top .category {
    background: rgba(0, 106, 78, 0.1);
    color: var(--primary-color);
    padding: 5px 12px;
    border-radius: 50px;
    font-weight: 600;
}
.article-card .title a {
    font-size: 1.25rem;
    color: var(--text-dark);
    font-weight: 700;
    transition: color 0.3s;
}
.article-card .title a:hover {
    color: var(--primary-color);
}
.article-card .excerpt {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 10px;
    flex-grow: 1;
}
.article-card .btn-read-more {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-block;
    margin-top: 20px;
    align-self: flex-start;
}
.article-card .btn-read-more:hover {
    text-decoration: underline;
}

/* ======= Section Newsletter ======= */
.newsletter {
    padding: 80px 0;
    background: var(--primary-color) url('../img/newsletter-bg.png') center center no-repeat;
    background-size: cover;
    color: var(--bg-white);
    position: relative;
}
.newsletter::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 77, 37, 0.85);
}
.newsletter .container {
    position: relative;
    z-index: 2;
}
.newsletter h3 {
    color: var(--bg-white);
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
}
.newsletter p {
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 10px auto 0 auto;
}
.newsletter .form-control {
    border: 2px solid transparent;
    padding: 14px 20px;
    border-radius: 50px 0 0 50px;
    transition: border-color 0.3s;
}
.newsletter .form-control:focus {
    box-shadow: none;
    border-color: var(--secondary-color);
}
.newsletter .btn-subscribe {
    background: var(--secondary-color);
    color: var(--text-dark);
    border: none;
    padding: 14px 30px;
    border-radius: 0 50px 50px 0;
    font-weight: 700;
    transition: background-color 0.3s;
}
.newsletter .btn-subscribe:hover {
    background-color: #e3bb05; /* Jaune plus foncé */
}

/* ======= Footer Finalisé avec Partenaires ======= */
.footer {
    background-color: #141E1A; /* Vert très foncé */
    color: rgba(255, 255, 255, 0.75);
    font-size: 15px;
    font-family: var(--font-text);
}

/* --- Section Principale --- */
.footer .footer-main {
    padding: 80px 0;
}

/* Logo */
.footer .footer-logo { line-height: 1; text-decoration: none; }
.footer .footer-logo img { max-height: 55px; margin-right: 12px; border-radius: 50%; border: 3px solid rgba(255, 255, 255, 0.1); transition: all 0.4s ease; }
.footer .footer-logo:hover img { border-color: var(--secondary-color); transform: rotate(360deg); }
.footer .footer-logo .logo-text { font-family: var(--font-heading); font-weight: 800; font-size: 26px; }
.footer .footer-logo .togo-part { color: var(--primary-color); }
.footer .footer-logo .startup-part { color: var(--secondary-color); }
.footer .footer-info p { line-height: 1.8; max-width: 400px; }
.footer .social-links a { display: flex; align-items: center; justify-content: center; width: 42px; height: 42px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.2); color: rgba(255, 255, 255, 0.75); margin-right: 10px; transition: all 0.3s ease-in-out; }
.footer .social-links a:hover { color: var(--text-dark); background-color: var(--secondary-color); border-color: var(--secondary-color); transform: translateY(-4px); }

/* Titres & Liens */
.footer h4 { font-size: 16px; font-weight: 700; color: var(--bg-white); position: relative; padding-bottom: 12px; margin-bottom: 20px; font-family: var(--font-heading); text-transform: uppercase; letter-spacing: 1px; }
.footer h4::after { content: ''; position: absolute; left: 0; bottom: 0; width: 50px; height: 2px; background: var(--secondary-color); }
.footer .footer-links ul { list-style: none; padding: 0; margin: 0; }
.footer .footer-links ul li { padding: 6px 0; position: relative; }
.footer .footer-links ul li::before { content: "\F135"; font-family: "bootstrap-icons"; font-size: 16px; color: var(--secondary-color); position: absolute; left: -20px; opacity: 0; transition: all 0.3s ease; }
.footer .footer-links ul a { color: rgba(255, 255, 255, 0.75); transition: all 0.3s; display: inline-block; text-decoration: none; }
.footer .footer-links ul a:hover { color: var(--bg-white); transform: translateX(20px); }
.footer .footer-links ul li:hover::before { opacity: 1; left: -5px; }

/* Contact */
.footer .footer-contact p { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 15px; }
.footer .footer-contact i { font-size: 18px; color: var(--secondary-color); padding-top: 4px; }
.footer .footer-contact a { color: rgba(255, 255, 255, 0.75); text-decoration: none; }
.footer .footer-contact a:hover { color: var(--bg-white); text-decoration: underline; }


/* --- Barre Inférieure --- */
.footer .footer-bottom {
    padding: 25px 0;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}
.footer .copyright { text-align: left; }
.footer .copyright strong { color: var(--bg-white); font-weight: 600; }
.footer .legal-links a { color: rgba(255, 255, 255, 0.75); margin-left: 20px; transition: color 0.3s; text-decoration: none; }
.footer .legal-links a:hover { color: var(--bg-white); text-decoration: underline; }

/* Responsive */
@media (max-width: 768px) {
    .footer .footer-main, .footer .footer-bottom { text-align: center; }
    .footer h4::after { left: 50%; transform: translateX(-50%); }
    .footer .social-links, .footer .partners-logos { justify-content: center; }
    .footer .footer-contact p { justify-content: center; }
    .footer .footer-bottom { flex-direction: column; }
    .footer .legal-links { margin-top: 10px; }
    .footer .legal-links a { margin: 0 10px; }
}

/* === MOBILE BOTTOM NAVIGATION === */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60px; /* Hauteur de la barre */
    background-color: var(--bg-white);
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1000; /* Au-dessus de la plupart des contenus */
    padding: 0 5px; /* Petit padding horizontal */
}

.mobile-bottom-nav-item {
    flex-grow: 1;
    text-align: center;
}

.mobile-bottom-nav-item a {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-muted); /* Couleur par défaut des icônes/texte */
    text-decoration: none;
    padding: 5px 0;
    font-size: 0.7rem; /* Taille du texte sous l'icône */
    font-family: var(--font-body);
    transition: color 0.3s ease;
}

.mobile-bottom-nav-item a i {
    font-size: 1.4rem; /* Taille des icônes */
    margin-bottom: 3px;
}

.mobile-bottom-nav-item a:hover,
.mobile-bottom-nav-item.active a {
    color: var(--primary-color); /* Couleur active (vert) */
}

/* Styles pour l'Offcanvas Mobile Menu */
.offcanvas-header {
    border-bottom: 1px solid #dee2e6;
    padding: 1rem 1.25rem;
}
.offcanvas-title {
    color: var(--primary-color);
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
}
.offcanvas-body {
    padding: 0; /* Enlever le padding par défaut pour contrôler les liens */
}
ul.mobile-offcanvas-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}
ul.mobile-offcanvas-nav li {
    /* Pas de style spécifique ici, on style les <a> */
}
ul.mobile-offcanvas-nav li a:not(.btn) {
    display: block;
    padding: 12px 20px;
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 1rem;
    text-decoration: none;
    border-bottom: 1px solid var(--bg-light);
    transition: background-color 0.3s ease, color 0.3s ease;
}
ul.mobile-offcanvas-nav li:last-child a:not(.btn) {
    border-bottom: none;
}
ul.mobile-offcanvas-nav li a:not(.btn):hover,
ul.mobile-offcanvas-nav li a:not(.btn).active {
    color: var(--primary-color);
    background-color: rgba(0, 106, 78, 0.05);
}
ul.mobile-offcanvas-nav li a:not(.btn).active {
    font-weight: 600;
}

/* Styles pour les boutons dans l'offcanvas */
ul.mobile-offcanvas-nav hr {
    border-top-color: rgba(0,0,0,0.08);
}
ul.mobile-offcanvas-nav li .btn {
    display: block;
    width: calc(100% - 40px); /* Pleine largeur moins padding */
    margin: 10px 20px;
    text-align: center;
    font-size: 0.95rem;
    padding: 10px 15px;
}
ul.mobile-offcanvas-nav li .btn-primary-custom {
    /* Styles déjà définis */
}
ul.mobile-offcanvas-nav li .btn-outline-primary-custom {
    /* Styles déjà définis */
}
ul.mobile-offcanvas-nav li.text-center.my-2 { /* Pour le message Bonjour */
    padding: 10px 20px;
    font-size: 0.9rem;
    color: var(--text-muted);
}


/* Ajustements responsive généraux (s'assurer que le contenu ne passe pas sous la bottom bar) */
body.has-mobile-bottom-nav { /* Classe à ajouter au body avec JS si la barre est présente */
    padding-bottom: 60px; /* Hauteur de la bottom-nav */
}

/* Cacher le header desktop et l'icône burger du header desktop sur mobile (XL breakpoint) */
@media (max-width: 1199.98px) {
    #header.header .container-fluid > .navmenu, /* Cache la nav desktop */
    #header.header .container-fluid > .mobile-nav-toggle-upper { /* Cache le burger du header desktop si vous en aviez un */
        /* display: none !important; // Bootstrap avec d-xl-flex s'en charge */
    }
}
/* Afficher la bottom bar seulement sur mobile (en dessous de XL) */
.mobile-bottom-nav.d-xl-none { /* Bootstrap s'en charge */
    display: none;
    @media (max-width: 1199.98px) {
        display: flex;
    }
}

/* ======= Style de la Page Ressources ======= */

/* --- En-tête de page --- */
.page-header {
    background: var(--primary-color);
    padding: 80px 0;
    color: white;
    text-align: center;
    position: relative;
    background-image: linear-gradient(rgba(0, 77, 37, 0.9), rgba(0, 77, 37, 0.9)), url("../img/hero/hero-bg-2.jpg");
    background-size: cover;
    background-position: center;
}
.page-header h1 {
    color: white;
    font-size: 3rem;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}
.page-header p {
    color: rgba(255,255,255,0.85);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 10px auto 0 auto;
}

/* --- Section du contenu --- */
.ressources-content {
    padding: 80px 0;
}

/* --- Cartes de ressource --- */
.resource-card {
    background: var(--bg-white);
    border-radius: 12px;
    border: 1px solid #e9ecef;
    box-shadow: 0 5px 25px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    overflow: hidden;
}
.resource-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 10px 30px rgba(0,106,78,0.12);
    border-color: var(--primary-color);
}
.resource-icon {
    font-size: 3.5rem;
    text-align: center;
    padding: 30px 20px 20px 20px;
    color: var(--accent-red-color); /* Rouge pour les PDF */
    background-color: var(--bg-light);
}
.resource-card .card-body {
    padding: 20px;
}
.resource-title a {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    transition: color 0.3s;
    text-decoration: none;
}
.resource-title a:hover {
    color: var(--primary-color);
}
.resource-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}
.resource-meta .badge {
    font-size: 0.75rem;
    font-weight: 600;
    padding: 5px 10px;
}
.bg-primary-light {
    background-color: rgba(0, 106, 78, 0.1);
    color: var(--primary-color);
}
.btn-download {
    background-color: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50px;
    padding: 8px 20px;
    font-weight: 600;
    border: 2px solid var(--primary-color);
    text-decoration: none;
}
.btn-download:hover {
    background-color: transparent;
    color: var(--primary-color);
}

/* --- Pagination --- */
.ressources-pagination .pagination {
    /* Utilise les styles par défaut de Bootstrap que nous personnalisons */
}
.ressources-pagination .page-link {
    color: var(--primary-color);
    border: 1px solid #ddd;
    margin: 0 5px;
    border-radius: 5px;
    box-shadow: none !important; /* Enlever l'ombre au focus */
}
.ressources-pagination .page-link:hover {
    background-color: rgba(0, 106, 78, 0.05);
    border-color: var(--primary-color);
}
.ressources-pagination .page-item.active .page-link {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    z-index: 1;
}
.ressources-pagination .page-item.disabled .page-link {
    color: #6c757d;
    background-color: #e9ecef;
    border-color: #ddd;
}

/* ======= Style de la Page Contact ======= */

.contact-content {
    padding: 80px 0;
}

.info-container {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    height: 100%;
}
.info-container h3 {
    color: var(--bg-white);
    font-size: 1.5rem;
    font-weight: 700;
}
.info-container p {
    color: rgba(255,255,255,0.8);
}
.info-item {
    display: flex;
    align-items: flex-start;
    margin-top: 25px;
}
.info-item i {
    font-size: 20px;
    color: var(--secondary-color);
    margin-right: 15px;
}
.info-item h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--bg-white);
    margin-bottom: 5px;
}

.contact-form {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
    height: 100%;
}
.contact-form .form-control {
    border-radius: 8px;
    padding: 12px 15px;
}
.contact-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.25rem rgba(0, 106, 78, 0.25);
}

/* ======= NOUVEAU STYLE MODERNISÉ POUR LES CARTES STARTUP (v3) ======= */

.startup-card-v3 {
    position: relative;
    background: var(--bg-white);
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden; /* Important pour les coins arrondis */
    display: flex;
    flex-direction: column;
    width: 100%;
}

.startup-card-v3:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0, 106, 78, 0.2);
}

/* --- Image de fond --- */
.card-v3-image-wrapper {
    position: relative;
    height: 150px; /* Hauteur fixe pour l'image de couverture */
}
.card-v3-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.startup-card-v3:hover .card-v3-image-wrapper img {
    transform: scale(1.1);
}

/* Overlay de couleur au survol */
.card-v3-image-wrapper::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(0, 77, 37, 0.7), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.startup-card-v3:hover .card-v3-image-wrapper::after {
    opacity: 1;
}

/* --- Badge "Vérifié" --- */
.verified-badge-v3 {
    position: absolute;
    top: 12px;
    right: 12px;
    background-color: rgba(255, 255, 255, 0.85);
    color: var(--primary-color);
    backdrop-filter: blur(5px);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 5px;
}

/* --- Logo en superposition --- */
.card-v3-logo {
    position: absolute;
    top: 150px; /* Même hauteur que l'image */
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--bg-white);
    padding: 5px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    z-index: 2;
}
.card-v3-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* --- Contenu de la carte --- */
.card-v3-content {
    padding: 60px 20px 20px 20px; /* 60px en haut pour laisser la place au logo */
    text-align: center;
    flex-grow: 1; /* Pousse le footer vers le bas */
    display: flex;
    flex-direction: column;
}
.startup-name {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 5px;
}
.startup-name a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
}
.startup-name a:hover {
    color: var(--primary-color);
}
.startup-location {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}
.startup-location i {
    color: var(--primary-color);
}
.startup-description {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-muted);
    flex-grow: 1;
}

/* --- Footer de la carte --- */
.card-v3-footer {
    padding: 20px;
    background-color: transparent;
    border-top: 1px solid #f0f0f0;
}
.btn-view-profile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}
.btn-view-profile i {
    transition: transform 0.3s;
}
.btn-view-profile:hover {
    color: #00523E;
}
.btn-view-profile:hover i {
    transform: translateX(5px);
}

/* ======= NOUVEAU STYLE POUR LA SIDEBAR DE FILTRES ======= */

.filters-sidebar {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 16px; /* Bords bien arrondis */
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08); /* Ombre douce pour un effet "flottant" */
    border: 1px solid #eef0f2;
    position: sticky; /* Pour que les filtres restent visibles au scroll */
    top: 120px; /* Espace par rapport au header */
}

.filters-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--primary-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

.filters-title i {
    color: var(--secondary-color);
}

.filters-form .filter-group {
    margin-bottom: 20px;
}

.filters-form .form-label {
    font-weight: 600;
    font-family: var(--font-body);
    font-size: 0.9rem;
    margin-bottom: 8px;
    color: #555;
}

/* Style des champs de formulaire */
.filters-form .form-control,
.filters-form .form-select {
    border-radius: 8px;
    padding: 10px 15px;
    background-color: var(--bg-light);
    border-color: #ddd;
}

.filters-form .form-control:focus,
.filters-form .form-select:focus {
    border-color: var(--primary-color);
    background-color: var(--bg-white);
    box-shadow: 0 0 0 3px rgba(0, 106, 78, 0.15); /* Effet de focus personnalisé */
}

/* Style de la case à cocher */
.filters-form .form-check-input {
    border-color: #bbb;
}
.filters-form .form-check-input:checked {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}
.filters-form .form-check-label {
    font-weight: 500;
}

/* Bouton "Appliquer" */
.filters-form .btn-primary-custom {
    padding: 12px;
    font-size: 1rem;
}

/* ======= Style de la Section Partenaires ======= */
.partners {
    padding: 60px 0;
}
.partners .swiper-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}
.partners .swiper-slide img {
    max-height: 50px; /* Hauteur maximale pour les logos */
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}
.partners .swiper-slide img:hover {
    filter: grayscale(0%);
    opacity: 1;
    transform: scale(1.1);
}
.partners .swiper-button-next,
.partners .swiper-button-prev {
    color: var(--primary-color);
}
.partners .swiper-button-next::after,
.partners .swiper-button-prev::after {
    font-size: 24px; /* Taille des flèches */
}

/* Styles pour les cartes de startups améliorées */
.startup-card-v3 {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

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

.card-v3-image-wrapper {
    position: relative;
    height: 180px;
    overflow: hidden;
    background: linear-gradient(135deg, #006A4E, #28a745);
}

.card-v3-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.startup-card-v3:hover .card-v3-image-wrapper img {
    transform: scale(1.05);
}

.verified-badge-v3 {
    position: absolute;
    top: 10px;
    right: 10px;
    background: rgba(40, 167, 69, 0.9);
    color: white;
    padding: 4px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    backdrop-filter: blur(5px);
}

.card-v3-logo {
    position: absolute;
    top: 140px;
    left: 15px;
    width: 60px;
    height: 60px;
    border-radius: 12px;
    border: 3px solid white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    background: white;
}

.card-v3-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.card-v3-content {
    padding: 35px 15px 15px 15px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.startup-name {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}

.startup-name a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.startup-name a:hover {
    color: #006A4E;
}

.startup-location {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 10px;
    line-height: 1.4;
}

.startup-location i {
    color: #006A4E;
    margin-right: 4px;
}

.startup-description {
    font-size: 0.9rem;
    color: #495057;
    line-height: 1.4;
    margin-bottom: 15px;
    flex-grow: 1;
}

.card-v3-footer {
    padding: 0 15px 15px 15px;
}

.btn-view-profile {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #006A4E, #28a745);
    color: white;
    text-decoration: none;
    padding: 10px 15px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 106, 78, 0.3);
}

.btn-view-profile:hover {
    background: linear-gradient(135deg, #00563f, #218838);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 106, 78, 0.4);
}

.btn-view-profile i {
    transition: transform 0.3s ease;
}

.btn-view-profile:hover i {
    transform: translateX(3px);
}

/* Responsive design */
@media (max-width: 768px) {
    .card-v3-image-wrapper {
        height: 150px;
    }

    .card-v3-logo {
        top: 110px;
        width: 50px;
        height: 50px;
    }

    .card-v3-content {
        padding: 25px 12px 12px 12px;
    }

    .startup-name {
        font-size: 1rem;
    }
}

/* Animation d'entrée pour les cartes */
.startup-card-v3 {
    animation: fadeInUp 0.6s ease forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Délai d'animation pour chaque carte */
.startup-card-v3:nth-child(1) { animation-delay: 0.1s; }
.startup-card-v3:nth-child(2) { animation-delay: 0.2s; }
.startup-card-v3:nth-child(3) { animation-delay: 0.3s; }
.startup-card-v3:nth-child(4) { animation-delay: 0.4s; }
.startup-card-v3:nth-child(5) { animation-delay: 0.5s; }
.startup-card-v3:nth-child(6) { animation-delay: 0.6s; }
