.navbar-custom {
    background-color: #2874f0;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
    background-color: #2874f0 !important; /* Utilisation de !important pour forcer l'application */
    border-radius: 50% !important;
    width: 50px !important;
    height: 50px !important; /* Hauteur du cercle */
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px !important; /* Largeur du conteneur de la flèche */
    height: 50px !important; /* Hauteur du conteneur de la flèche */
    top: 50% !important; /* Position verticale */
    transform: translateY(-50%) !important; /* Centrage vertical */
}

.carousel-control-prev-icon::before,
.carousel-control-next-icon::before {
    content: "";
    width: 15px !important;
    height: 15px !important;
    color: white !important; /* Couleur de l'icône à l'intérieur du cercle */
    display: inline-block !important;
    border-radius: 3px !important;
    font-size: 25px !important;
}
.imgActu {
    width: 400px !important;
    height: 250px !important;
}
.carousel-control-prev-icon {
    transform: rotate(10deg) !important;
}

.carousel-control-next-icon {
    transform: rotate(8deg) !important;
}
.custom-margin-top {
    margin-top: 50px; /* Ajustez cette valeur pour contrôler l'espace */
}
.cl {
    background-color: #00008B !important; /* Utilisation de !important pour forcer l'application */
}
.orange {
    color: #ff3300 !important; 
}
.nl  {
    background-color: #ff3300 !important; /* Utilisation de !important pour forcer l'application */
}
#ima {
    height: 190px;
    width: 190px;
}

.border-hover {
    border: 2px solid #00008B; /* Bordure bleue par défaut */
    transition: border-color 0.3s ease, transform 0.3s ease;
  }

  /* Dans votre fichier CSS */
.navbar-nav .nav-link:hover {
    color: #ff3300 !important;
}

  /* État au survol */
  .border-hover:hover {
    border-color: #ff3300; /* Bordure devient orange */
    transform: scale(1.05); /* La carte devient légèrement plus grande */
  }
  
  .video-container {
    position: relative;
    width: 100%;
    height: 100%;
  }
  
  video {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cela permet à l'image de couverture de se redimensionner et de couvrir toute la vidéo */
  }
  .navbar-brand .logo {
    width: 120px; /* Largeur optimale */
    height: 120; /* Préserve les proportions */
}

@media (max-width: 768px) {
    /* Réduction supplémentaire pour les écrans plus petits */
    .navbar-brand .logo {
        width: 120px;
    }
}


body {
    font-family: 'Arial', sans-serif;
}
.hero-section {
    background-color: #004080;
    color: white;
    padding: 100px 0;
}
.hero-section h1 {
    font-size: 3rem;
    font-weight: bold;
}
.hero-section p {
    font-size: 1.2rem;
    margin-top: 20px;
    
}
.values-section {
    padding: 60px 0;
    background-color: #f5f5f5;
}
.values-section h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 40px;
    text-align: center;
}
.value-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    text-align: center;
}
.value-card h5 {
    font-weight: 600;
    margin-bottom: 15px;
}
.team-section {
    padding: 60px 0;
}
.team-member {
    text-align: center;
}
.team-member img {
    border-radius: 50%;
    width: 150px;
    height: 150px;
    object-fit: cover;
    margin-bottom: 20px;
}
.team-member h5 {
    font-size: 1.25rem;
    font-weight: 600;
}
.team-member p {
    font-size: 0.9rem;
    color: #6c757d;
}
.contact-section {
    padding: 40px 20px;
    background-color: #f8f9fa;
    text-align: left;
}

.contact-section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
}

.contact-section p {
    margin-bottom: 30px;
    font-size: 16px;
    
}
.contact-info p {
    color: white;
}

.contact-info {
    background-color: #ff3300;
    padding: 20px;
    border-radius: 8px;
    color: #fff;
}

.info-card {
    margin-bottom: 20px;
}

.info-card .icon {
    font-size: 24px;
    margin-right: 10px;
}

.info-card h5 {
    font-size: 18px;
    margin: 10px 0;
}

.contact-form .form-group {
    margin-bottom: 15px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
}

.contact-form button {
    background-color: #ff3300;
    color: #fff;
    border: none;
    padding: 10px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
}

.contact-form button:hover {
    background-color: #ff3300;
}
/* css pour base.blade.php*/
.carousel-inner {
    position: relative;
  }
  
  .carousel-img {
    transition: transform 10s ease, scale 10s ease;
  }
  
  /* Effet de zoom et translation */
  .carousel-item.active .carousel-img {
    animation: zoomEffect 10s ease-in-out;
  }
  
  @keyframes zoomEffect {
    0% {
      transform: scale(1) translateY(0px);
    }
    50% {
      transform: scale(1.05) translateY(-10px);
    }
    100% {
      transform: scale(1) translateY(0px);
    }
  }

  .scrolling-text {
    overflow: hidden;
    white-space: nowrap;
  }
  
  .scrolling-text h1 {
    display: inline-block;
    animation: scroll-text 10s linear infinite;
    font-size: 2.5rem;
    font-weight: bold;
    background-color: #ff3300;
    padding: 10px;
    border-radius: 10px;
  }
  
  @keyframes scroll-text {
    0% {
      transform: translateX(100%);
    }
    100% {
      transform: translateX(-100%);
    }
  }

  .hero-sectio {
    position: relative;
    height: 70vh;
    overflow: hidden;
}

.hero-sectio img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    background-color: rgba(0, 0, 0, 0.6);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
}
