* {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      line-height: 1.6;
      color: #1f2937;
    }

    /* Custom Navbar */
    .custom-navbar {
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.2);
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 1000;
      transition: all 0.3s ease;
      padding: 1rem 0;
    }

    .custom-navbar.scrolled {
      background: rgba(255, 255, 255, 0.98);
      box-shadow: 0 10px 25px rgba(0,0,0,0.1);
      padding: 0.5rem 0;
    }

    .navbar-brand {
      font-weight: 700;
      font-size: 1.5rem;
      background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    .nav-links {
      display: flex;
      list-style: none;
      gap: 2rem;
      margin: 0;
    }

    .nav-link {
      text-decoration: none;
      color: #1f2937;
      font-weight: 500;
      position: relative;
      transition: color 0.3s ease;
    }

    .nav-link:hover {
      color: #1e40af;
    }

    .nav-link::after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: -5px;
      left: 0;
      background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
      transition: width 0.3s ease;
    }

    .nav-link:hover::after,
    .nav-link.active::after {
      width: 100%;
    }

    .menu-toggle {
      display: none;
      flex-direction: column;
      cursor: pointer;
      gap: 4px;
    }

    .menu-toggle span {
      width: 25px;
      height: 3px;
      background: #1f2937;
      transition: 0.3s;
    }

    /* Hero Section */
    .hero {
      background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
      min-height: 100vh;
      display: flex;
      align-items: center;
      position: relative;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1000 1000"><polygon fill="rgba(255,255,255,0.1)" points="0,1000 1000,800 1000,1000"/></svg>');
      background-size: cover;
    }

    .hero-content {
      position: relative;
      z-index: 2;
    }

    .btn-custom {
      background: #f59e0b;
      color: white;
      border: none;
      padding: 1rem 2rem;
      border-radius: 50px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
    }

    .btn-custom:hover {
      transform: translateY(-2px);
      box-shadow: 0 20px 40px rgba(0,0,0,0.15);
      background: #d97706;
      color: white;
    }

    /* Cards */
    .service-card {
      background: white;
      border-radius: 20px;
      padding: 2rem;
      box-shadow: 0 10px 25px rgba(0,0,0,0.1);
      transition: all 0.3s ease;
      border: none;
      height: 100%;
    }

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

    .service-icon {
      width: 80px;
      height: 80px;
      background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
      border-radius: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1.5rem;
      color: white;
      font-size: 2rem;
      transition: transform 0.3s ease;
    }

    
    .stats-section {
      background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
      color: white;
      padding: 4rem 0;
    }

    .stat-item {
      text-align: center;
    }

    .stat-number {
      font-size: 3rem;
      font-weight: 700;
      color: #f59e0b;
    }

    
    .avis-card {
      background: white;
      border-radius: 20px;
      padding: 2rem;
      box-shadow: 0 10px 25px rgba(0,0,0,0.1);
      position: relative;
      margin-top: 2rem;
      transition: all 0.3s ease;
    }

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

    .quote-icon {
      position: absolute;
      top: -15px;
      left: 2rem;
      background: #1e40af;
      color: white;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

   
    .banniere {
      background: #f59e0b;
      color: white;
      padding: 1rem 0;
      position: sticky;
      top: 80px;
      z-index: 999;
      box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    }

    .pulse {
      animation: pulse 2s infinite;
    }

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

    /* Contact Form */
    .form-floating label {
      color: rgba(255, 255, 255, 0.8);
    }

    .form-floating input,
    .form-floating textarea {
      background: rgba(255, 255, 255, 0.1);
      border: 1px solid rgba(255, 255, 255, 0.3);
      color: white;
    }

    .form-floating input:focus,
    .form-floating textarea:focus {
      background: rgba(255, 255, 255, 0.2);
      border-color: #f59e0b;
      box-shadow: 0 0 0 0.2rem rgba(245, 158, 11, 0.25);
      color: white;
    }

    .form-floating input::placeholder,
    .form-floating textarea::placeholder {
      color: rgba(255, 255, 255, 0.6);
    }

    /* Footer */
    .footer {
      background: #1f2937;
      color: white;
    }

    .footer a {
      color: #f59e0b;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .footer a:hover {
      color: #d97706;
    }

  
    @media (max-width: 768px) {
      .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
      }

      .nav-links.active {
        left: 0;
      }

      .menu-toggle {
        display: flex;
      }

      .hero h1 {
        font-size: 2.5rem !important;
      }

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

      .service-card {
        margin-bottom: 1rem;
      }
    }

    /* Animations */
    .fade-in {
      opacity: 0;
      transform: translateY(30px);
      animation: fadeIn 0.6s ease forwards;
    }

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

    .section-title {
      position: relative;
      display: inline-block;
      margin-bottom: 3rem;
    }

    .section-title::after {
      content: '';
      position: absolute;
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
      width: 60px;
      height: 4px;
      background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
      border-radius: 2px;
    }

    /* Additional hover effects */
    .btn-outline-light:hover {
      background: rgba(255, 255, 255, 0.1);
      border-color: white;
      color: white;
    }

    .bg-primary {
      background: #1e40af !important;
    }

    .text-primary {
      color: #1e40af !important;
    }

    .bg-secondary {
      background: #f59e0b !important;
    }

    .text-secondary {
      color: #f59e0b !important;
    }

    .bg-success {
      background: #10b981 !important;
    }

    .text-success {
      color: #10b981 !important;
    }

    .text-warning {
      color: #f59e0b !important;
    }

   
    .position-fixed.btn {
      animation: float 3s ease-in-out infinite;
    }

    @keyframes float {
      0%, 100% { transform: translateY(0px); }
      50% { transform: translateY(-10px); }
    }

    .contact-section {
    background: #0d25a0; 
    color: #ffffff;
    padding: 5rem 0;
    font-family: 'Inter', sans-serif;
}

.contact-title {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255,255,255,0.8);
}

.contact-form {
    background-color: #0d1a33;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #ffffff;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    border: none;
    border-radius: 0.5rem;
    background-color: #1e2d5c;
    color: #ffffff;
    font-size: 1rem;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(255,255,255,0.7);
}

.contact-btn {
    background-color: #f59e0b;
    color: #1e40f0;
    border: none;
    font-weight: 600;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.contact-btn:hover {
    background-color: #ffffff;
    color: #1e40f0;
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    margin-bottom: 1rem;
    font-weight: 500;
}

.contact-info li i {
    color: #f59e0b;
    margin-right: 0.5rem;
}

.contact-info a {
    color: #ffffff;
    text-decoration: none;
}

.contact-info a:hover {
    color: #f59e0b;
}

.map-responsive {
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
    height: 0;
    margin-top: 2rem;
}

.map-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 0.5rem;
}

.footer-section {
    background-color: #1e40f0;
    color: #ffffff;
    text-align: center;
    padding: 2rem 1rem;
    font-family: 'Inter', sans-serif;
}

.footer-section .footer-paires {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap; 
    margin-bottom: 0.5rem;
}

.footer-section p {
    margin: 0;
}

.footer-section .footer-liens {
    margin-top: 0.5rem;
}

.footer-section a {
    color: #ffffff;
    text-decoration: none;
    margin: 0 0.3rem;
}

.footer-section a:hover {
    color: #f59e0b;
}


.modal-content {
    background-color: #e7e1d1; 
    border: 2px solid #1e40af; 
    border-radius: 1rem;
    color: #1e40af; 
    font-family: 'Inter', sans-serif;
}

.modal-header {
    border-bottom: 2px solid #1e40af;
}

.modal-title {
    color: #1e40af; 
    font-weight: 700;
}

.modal-body {
    font-size: 0.95rem;
    color: #082276; 
}