.hero {
      background: url('hero-image.jpg') center/cover no-repeat;
      min-height: 300px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      text-shadow: 1px 1px 4px rgba(0,0,0,0.6);
    }
    .btn-danger-custom {
      background-color: #e60000;
      border: none;
    }
    .btn-outline-dark:hover {
      background-color: #e60000;
      color: white;
      border: none;
    }
    .domain-button {
      border-radius: 30px;
      padding: 10px 20px;
      font-size: 0.9rem;
    }
    footer {
      background-color: #1d1d8f;
      color: white;
      padding: 40px 0;
    }
    footer a {
      color: white;
      font-size: 0.9rem;
      text-decoration: none;
    }
    footer a:hover {
      text-decoration: underline;
    }

    /* Section des partenaires */
    .logos-slider {
      position: relative;
      width: 100%;
      white-space: nowrap;
    }

    .logos-track {
      display: inline-flex;
      animation: scroll 30s linear infinite;
    }

    @keyframes scroll {
      0% { transform: translateX(0); }
      100% { transform: translateX(-50%); }
    }

    .logos-track img {
      transition: transform 0.3s ease;
    }

    .logos-track img:hover {
      transform: scale(1.1);
    }

    /*Nvar - effet de glassmorphisme*/
    .nav-link {
        transition: color 0.3s ease;
    }

    .nav-link:hover {
        color: #dc3545;
        /* Rouge Bootstrap (ou la couleur que tu veux) */
    }

    .glass-navbar {
        background: rgba(255, 255, 255, 0.2);
        /* fond semi-transparent */
        backdrop-filter: blur(10px);
        /* flou en arrière-plan */
        -webkit-backdrop-filter: blur(10px);
        /* support Safari */
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        /* fine bordure */
        box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
        /* ombre douce */
        z-index: 999;
        /* rester au-dessus du contenu */
    }
    
    .glass-navbar.scrolled {
        background: rgba(255, 255, 255, 0.85);
        backdrop-filter: blur(20px);
    }

    .nav-link {
        transition: color 0.3s ease;
    }

    .nav-link:hover {
        color: #dc3545;
        /* Rouge Bootstrap (ou la couleur que tu veux) */
    }


    /*Bouton mon compte*/
    .glass-button {
        background: rgba(220, 53, 69, 0.75);
        /* Rouge Bootstrap avec transparence */
        border: 1px solid rgba(255, 255, 255, 0.3);
        backdrop-filter: blur(6px);
        -webkit-backdrop-filter: blur(6px);
        transition: all 0.3s ease;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }

    .glass-button:hover {
        background: rgba(220, 53, 69, 1);
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    }

    /* Section Hero*/
    .hero {
        margin-bottom: 4rem;
        /* ou 3rem, selon besoin */
    }

    /* Carte des offres*/
    .fade-in-up {
        opacity: 0;
        transform: translateY(30px);
        animation: fadeInUp 0.8s ease-out forwards;
    }

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

    /* Pour ajouter un décalage progressif entre les cartes */
    .fade-delay-1 {
        animation-delay: 0.1s;
    }

    .fade-delay-2 {
        animation-delay: 0.2s;
    }

    .fade-delay-3 {
        animation-delay: 0.3s;
    }

    .fade-delay-4 {
        animation-delay: 0.4s;
    }

    .fade-delay-5 {
        animation-delay: 0.4s;
    }

    .fade-delay-6 {
        animation-delay: 0.4s;
    }

    .fade-delay-7 {
        animation-delay: 0.4s;
    }

    .fade-delay-8 {
        animation-delay: 0.4s;
    }

    /*Boutons des cartes entreprises*/
    .animate-button:hover {
        transform: scale(1.05) translateY(-2px);
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

    /*Effets sur les cartes des offres*/
    .card-hover {
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }

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

    .card-hover img {
        transition: transform 0.4s ease;
    }

    .card-hover:hover img {
        transform: scale(1.05);
    }
    /*Sign page - Page de connexion*/
    body {
      background-color: #f8f9fa;
    }
    .registration-container {
      max-width: 900px;
      margin: 50px auto;
      background: white;
      padding: 30px;
      border-radius: 10px;
      box-shadow: 0 0 15px rgba(0,0,0,0.1);
    }
    .btn-red, .btn-danger {
      background-color: #D53D18;
      color: white;
    }

    .none {
      cursor: not-allowed;
    }

    #submit:hover, #submit:active{
      background-color: #dc3545;
      color: #fff;
    }

    .jq-toast-single {
      font-size: 14px;
    }

    /*Login page*/
    body {
            font-family: 'Segoe UI', sans-serif;
        }

        .form-container {
            max-width: 450px;
            margin: 60px auto;
            padding: 30px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
            border-radius: 12px;
            background-color: #fff;
        }

        .btn-red {
            background-color: #e50914;
            color: white;
        }

        .btn-red:hover {
            background-color: #c20812;
        }

        .form-title {
            font-weight: bold;
        }

        .jq-toast-single {
          font-size: 14px;
        }

        /*Section Footer*/
        .footer a:hover {
          color: #dc3545;
          text-decoration: underline;
        }

        .footer .form-control {
          border-radius: 0.3rem 0 0 0.3rem;
        }

        .footer .btn {
          border-radius: 0 0.3rem 0.3rem 0;
        }
        /* SECTION DES VILLES */
        .ville-card {
          height: 220px;
        }

        .ville-card img {
          object-fit: cover;
          height: 100%;
          width: 100%;
          transition: transform 0.4s ease;
        }

        .ville-card .overlay {
          background-color: rgba(0, 0, 0, 0.4);
          backdrop-filter: blur(3px);
          transition: all 0.3s ease;
        }

        .ville-card:hover img {
          transform: scale(1.05);
        }

        .ville-card:hover .overlay {
          background-color: rgba(0, 0, 0, 0.6);
          backdrop-filter: blur(5px);
        }

        .ville-card h5 {
          text-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
        }

        .ville-card a.btn {
          transition: all 0.3s ease;
        }

        .ville-card a.btn:hover {
          background-color: #dc3545;
          color: white;
        }

        /* Bouton voir plus d'offre*/
        .btn-voir-plus {
          transition: all 0.3s ease;
          box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }
        .btn-voir-plus:hover {
          transform: scale(1.05);
          box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
        }

        /* Section des domaines d'activités */
        .glass-card {
          background: rgba(255, 255, 255, 0.2);
          backdrop-filter: blur(12px);
          border-radius: 1rem;
          border: 1px solid rgba(255, 255, 255, 0.3);
          transition: transform 0.3s ease, box-shadow 0.3s ease;
          box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
          cursor: pointer;
        }

        .glass-card:hover {
          transform: translateY(-5px);
          box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
        }

        /*Carte des villes*/
        .city-card {
            height: 200px;
            background-size: cover;
            background-position: center;
            position: relative;
            margin-bottom: 30px;
            border-radius: 10px;
            overflow: hidden;
        }
        .city-name {
            position: absolute;
            top: 20px;
            left: 20px;
            color: white;
            font-size: 1.5rem;
            font-weight: bold;
            text-shadow: 1px 1px 3px rgba(0,0,0,0.8);
        }
        .offer-btn {
            position: absolute;
            bottom: 20px;
            left: 20px;
            background-color: #D53D18;
            border: none;
            padding: 8px 20px;
            color: white;
            font-weight: bold;
            border-radius: 5px;
        }
        .offer-btn:hover {
            background-color: #7C7C7C;
        }

        /*Section chiffrés*/
        .card-body i {
        transition: transform 0.3s ease;
        }

        .card-body:hover i {
            transform: scale(1.2);
        }

