.bg-blue-two {
  background-color: #0074B7;
}

.text-blue-allcomp {
        color: #003B73;
}

.text-blue-two {
        color: #0074B7;
}

.gradient {
  background: linear-gradient(90deg, #003B73 0%, #003B73 100%);
}

/* Animations et styles pour la section about-us */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

.animate-fadeInUp {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease-out forwards;
}

.animate-slideInLeft {
  opacity: 0;
  transform: translateX(-50px);
  animation: slideInLeft 0.8s ease-out forwards;
}

.animate-slideInRight {
  opacity: 0;
  transform: translateX(50px);
  animation: slideInRight 0.8s ease-out forwards;
}

.animate-slideInUp {
  opacity: 0;
  transform: translateY(50px);
  animation: fadeInUp 1s ease-out forwards;
}

.animate-pulse-custom {
  animation: pulse 2s infinite;
}

/* Animation delays pour un effet en cascade */
.delay-100 {
  animation-delay: 0.1s;
}
.delay-200 {
  animation-delay: 0.2s;
}
.delay-300 {
  animation-delay: 0.3s;
}
.delay-400 {
  animation-delay: 0.4s;
}
.delay-500 {
  animation-delay: 0.5s;
}
.delay-600 {
  animation-delay: 0.6s;
}

.card-hover {
  transition: all 0.3s ease;
}

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

.text-gradient {
  background: linear-gradient(135deg, #003B73 0%, #003B73 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-light {
  background: linear-gradient(
    135deg,
    rgba(21, 48, 122, 0.1) 0%,
    rgba(62, 93, 178, 0.1) 100%
  );
}

.border-gradient {
  border: 2px solid transparent;
  background: linear-gradient(white, white) padding-box,
    linear-gradient(135deg, #15307a, #3e5db2) border-box;
}

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

.timeline-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 12px;
  height: 12px;
  background: linear-gradient(135deg, #15307a, #3e5db2);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(21, 48, 122, 0.2);
}

.timeline-item::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 1.5rem;
  width: 2px;
  height: calc(100% - 1rem);
  background: linear-gradient(to bottom, #15307a, #3e5db2);
}

.timeline-item:last-child::after {
  display: none;
}

.department-card {
  background: white;
  border-radius: 12px;
  padding: 1rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

@media (min-width: 1024px) {
  .department-card {
    border-radius: 16px;
    padding: 1.5rem;
    min-height: 140px;
  }
}

.department-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  /*background: linear-gradient(90deg, #15307a, #3e5db2);*/
}

@media (min-width: 1024px) {
  .department-card::before {
    height: 4px;
  }
}

.department-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(21, 48, 122, 0.15);
}

@media (min-width: 1024px) {
  .department-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(21, 48, 122, 0.15);
  }
}

.icon-wrapper {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #0074B7, #0074B7);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .icon-wrapper {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    margin-bottom: 1rem;
  }
}
