:root {
  --primary-blue: #0c1c3c;
  --accent-red: #e30613;
  --light-blue:#b5d3f2;
}


body {
  background-color: white;
  color: var(--primary-blue);
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
}

.navbar-brand {
  font-weight: bold;
  font-size: 1.5rem;
  color: var(--primary-blue) !important;
}

.navbar-nav .nav-link {
  color: var(--primary-blue) !important;
  font-weight: 500;
}

.navbar-nav .nav-link:hover {
  color: var(--accent-red) !important;
}

.hero-section {
  background: var(--primary-blue);
  padding: 100px 0;
  
}

.hero-title {
  color: white;
  font-weight: bold;
  font-size: 3rem;
  border-bottom: 1px solid var(--accent-red);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

.hero-subtitle {
  color: white;
  font-size: 1.2rem;
}

.btn-primary-custom {
  background-color: var(--accent-red);
  border-color: var(--accent-red);
  color: white;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 25px;
}

.btn-primary-custom:hover {
  background-color: #c1050f;
  border-color: #c1050f;
}

.btn-outline-custom {
  color: white;
  border-color: white;
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 25px;
}

.btn-outline-custom:hover {
  background-color: var(--accent-red);
  border-color: var(--primary-blue);
  color: white;
}
.btn-outline-custom-2 {
  color: var(--accent-red);
  border-color: var(--primary-blue);
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 25px;
}

.btn-outline-custom-2:hover {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
  color: white;
}

.section-title {
  color: var(--primary-blue);
  font-weight: bold;
  margin-bottom: 3rem;
}
.description-card {
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  height: 100%;
  background: 	#F5F5F5;
}

.service-card {
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  height: 100%;
  background: 	#F5F5F5;
}
.form-card {
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
 
  background: 	#F5F5F5;
  border-radius: 1rem; 
  padding: 1.5rem; 
 
}
.pack-card {
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  height: 720px; 
  width: 400px; 
  background: 	#F5F5F5;
  border-radius: 1rem; 
  padding: 1.5rem; 

}
.pack-description-card {
  border: none;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  height:370px;
  width: 400px; 
  background: 	#F5F5F5;
  border-radius: 1rem; 
  padding: 1.5rem; 

}



.service-card:hover {
  transform: translateY(-5px);
}

.service-icon {
  color: var(--accent-red);
  font-size: 3rem;
  margin-bottom: 1rem;
}

.service-title {
  color: var(--primary-blue);
  font-weight: bold;
}

.stats-section {
  background-color: var(--primary-blue);
  color: white;
  padding: 60px 0;
}

.stat-number {
  font-size: 3rem;
  font-weight: bold;
  color: var(--accent-red);
}

.contact-section {
  background-color: #f8fafc;
}

.contact-info {
  background-color: var(--primary-blue);
  color: white;
  border-radius: 10px;
  padding: 2rem;
}

.contact-icon {
  color: var(--accent-red);
  margin-right: 1rem;
}

.footer {
  background-color: var(--primary-blue);
  color: white;
  padding: 40px 0 20px 0;
}

.footer a {
  color: white;
  text-decoration: none;
}

.footer a:hover {
  color: var(--accent-red);
}

.social-icons a {
  color: white;
  font-size: 1.5rem;
  margin: 0 10px;
  transition: color 0.3s ease;
}

.social-icons a:hover {
  color: var(--accent-red);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .service-icon {
    font-size: 2rem;
  }
}

/* Additional utility classes */
.text-primary-blue {
  color: var(--primary-blue) !important;
}

.text-accent-red {
  color: var(--accent-red) !important;
}

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

.bg-accent-red {
  background-color: var(--accent-red) !important;
}

/* Form styling */
.form-control:focus {
  border-color: var(--accent-red);
  box-shadow: 0 0 0 0.2rem rgba(227, 6, 19, 0.25);
}

.form-select:focus {
  border-color: var(--accent-red);
  box-shadow: 0 0 0 0.2rem rgba(227, 6, 19, 0.25);
}

/* Animation for service cards */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.service-card {
  animation: fadeInUp 0.6s ease-out;
}

/* Navbar scroll effect */
.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
}

/* Additional styling for better visual hierarchy */
.text-danger {
  color: var(--accent-red) !important;
}

/* Enhanced button hover effects */
.btn-primary-custom:focus {
  box-shadow: 0 0 0 0.2rem rgba(227, 6, 19, 0.25);
}

.btn-outline-custom:focus {
  box-shadow: 0 0 0 0.2rem rgba(12, 28, 60, 0.25);
}

/* Service card hover effect enhancement */
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(12, 28, 60, 0.15);
}

/* Enhanced link styling */
a {
  text-decoration: none;
}
/*
a:hover {
  color: #c1050f;
}
*/

/* Navigation active state */
.navbar-nav .nav-link.active {
  color: var(--accent-red) !important;
}

/* Enhanced contact section styling */
.contact-info h4 {
  color: white;
  border-bottom: 2px solid var(--accent-red);
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
}

/* Footer enhancement */
.footer h5,
.footer h6 {
  color: white;
  border-bottom: 1px solid var(--accent-red);
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

/* Stats section enhancement */
.stats-section p {
  color: #e2e8f0;
  font-weight: 500;
}

/* Hero section icon styling */
.hero-section .fas {
  color: white !important;
}

/* About section icon styling */
#apropos .fas {
  color: var(--accent-red) !important;
}

.contact-item {
  display: flex;
  align-items: center; 
  gap: 10px;
} 


input[type="radio"].radio-custom:checked {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
}


input[type="radio"].radio-custom:checked::before {
  box-shadow: inset 0 0 0 4px white;
}

.icon-custom {
  color: var(--accent-red);
  border-color: var(--primary-blue);
  padding: 0 30px;     
  font-weight: 600;
  border-radius: 25px;
  height: 40px;         
  display: inline-flex; 
  align-items: center;   
  justify-content: center;
  cursor: pointer;
  border-style: solid;
  border-width: 1px;
  background-color: transparent;
  font-size: 1rem;
}

.icon-custom:hover {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
  color: white;
}

/* Override Bootstrap blue with your own color */
.custom-dropdown-item.active,
.custom-dropdown-item:active,
.custom-dropdown-item:hover {
  background-color: white !important; /* your custom color */
  color: var(--accent-red) !important; /* optional */
}

@media (max-width: 991px) {
  /* Le menu dropdown s'affiche sous le lien, plein largeur */
  .dropdown-menu {
    position: static !important;      
    float: none !important;            
    width: 100% !important;             
    box-shadow: none !important;      
    display: block !important;         
    visibility: visible !important;    
    margin-top: 0.5rem;                 
    border-radius: 0;                  
    border: none;                     
  }

}

input[type="checkbox"].custom-checkbox:checked {
  background-color: var(--primary-blue);
  border-color: var(--primary-blue);
}

input[type="checkbox"].custom-checkbox:focus {
  box-shadow: 0 0 0 0.2rem rgba(227, 6, 19, 0.25);
}
