
  * {
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  
    
  
  a, p {
    font-size: 18px;
    letter-spacing: 2px;
  }
  
  p {
    font-family: 'Bebas Neue', sans-serif;
  }
  
  .btn_devis a {
    font-size: 20px;
    letter-spacing: 5px;
    font-weight: 400;
  }
  
  .title_card_service h3 {
    font-size: 30px;
  }

  .btn_popup {
    margin-left: auto;
    display: flex;
    justify-content: flex-end;
    text-align: center;
  }
  
  .btn_popup a {
    color: #FB6E67;
    font-size: 30px;
    background: #FFF8F5;
    text-align: center;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    width: fit-content;
    letter-spacing: 8px;
    padding: 5px 30px;
    transition: all 0.3s ease;
  }
  
  .btn_popup a:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(251, 110, 103, 0.3);
  }

  /* Enhanced hover animations */
  .menu-link {
    position: relative;
    transition: all 0.3s ease-in-out;
  }
  
  .menu-link:hover {
    color: #FB6E67;
    transform: translateY(-2px);
  }
  
  .menu-link::after {
    content: "";
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0%;
    height: 2px;
    background: #FB6E67;
    transition: width 0.3s ease-in-out;
  }
  
  .menu-link:hover::after {
    width: 100%;
  }

  /* Banner responsive improvements */
  @media screen and (max-width: 991px) {
    .banner_grid {
      display: grid;
      align-content:center !important;
      grid-template-areas:
        "image"
        "text";
      gap: 20px;
    }
    .banner {
    height: 100% !important;
    margin: 130px 0 50px;
}
button.owl-prev, button.owl-next{
    display:none !important;
}
.media h2 {
        font-size: 29px !important;
        line-height: 1.2;
        padding: 0 20px;
    }

    .banner_grid > div:nth-child(1) {
      grid-area: text;
      margin-left: 0 !important;
      text-center: center;
      padding: 0 20px;
    }

    .banner_grid > div:nth-child(2) {
      grid-area: image;
    }
    
    .banner h1 {
      font-size: 40px !important;
      line-height: 1.2;
    }
    
    .banner p {
      font-size: 16px !important;
    }
  }

  /* Mobile responsive for media cards */
  @media screen and (max-width: 768px) {
      .media_container{
          align-content: center !important;
      }
      html, body {
          overflow-x: hidden; /* Prevent horizontal scrolling */
          width: 100%;
        }
    .container.flex.mx-auto.justify-evenly {
      flex-direction: column;
      gap: 20px;
      align-items: center;
    }
    
    .card_banner {
      width: 280px;
      text-align: center;
    }
    
    .contianer-banner {
      padding: 40px 20px !important;
      border-radius: 50px !important;
    }
    
    .media h2 {
      font-size: 40px !important;
      line-height: 1.2;
      padding: 0 20px;
    }
  }

  /* Enhanced card animations */
  .card_banner, .card_service, .card_pack {
    transition: all 0.3s ease;
    transform: translateY(0);
  }
  
  .card_service:hover, .card_pack:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  }

  /* Media cards */
  .title_card h2 {
    font-size: 20px;
    margin: 20px 0 10px;
  }

  .paragraphe_card {
    font-size: 16px;
    color: #797C7F;
  }
  
  .card_banner {
    width: 250px;
  }

  /* Carousel improvements */
  .owl-carousel.trusted .owl-item img {
    display: block;
    width: 70%;
    transition: all 0.3s ease;
  }
  
  .owl-carousel.trusted .owl-item img:hover {
    transform: scale(1.1);
  }
  
  .image_card_pack {
    border-bottom-left-radius: 30px;
    overflow: hidden;
  }
  
  .image_card_pack img {
    transition: all 0.3s ease;
  }
  
  .card_pack:hover .image_card_pack img {
    transform: scale(1.05);
  }

  /* Blog cards */
  .categorie_blog p {
    font-size: 14px;
    margin-bottom: 5px;
    color: #FB6E67;
    font-weight: bold;
  }
  
  .categorie_title p {
    font-size: 16px;
    margin-bottom: 5px;
    transition: color 0.3s ease;
  }
  
  .card_service:hover .categorie_title p {
    color: #FB6E67;
  }
  
  .date_blog p {
    font-size: 12px;
    margin-bottom: 5px;
    color: #AFAFAF;
  }

  /* Footer button */
  .btn_floating {
    position: absolute;
    top: -39px;
    right: 300px;
    width: 300px;
    text-align: center;
    font-size: 42px;
    letter-spacing: 13px;
    border-top-left-radius: 30px;
    border-bottom-right-radius: 30px;
    transition: all 0.3s ease;
    cursor: pointer;
  }

  .btn_floating:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(251, 110, 103, 0.4);
  }

  .card_banner {
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    cursor: pointer;
  }

  .content_popup img {
    width: 50px;
    display: inline;
}

  .card_banner:hover {
    transform: scale(1.05); /* zoom */
  }

  .owl-carousel .item {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  .owl-carousel .item img {
      border-radius: 30px;
  }
  .owl-carousel {
    position: relative;
  }
  button.owl-prev {
    position: absolute;
    top: 50%;
    left: -20px;
  }
  button.owl-next {
    position: absolute;
    top: 50%;
    right: -20px;
  }
  button.owl-prev img, button.owl-next img {
    width: 40px;
    height: 40px;
  }
  .owl-theme .owl-nav [class*=owl-]:hover {
    background: transparent !important;
    color: #FFF;
    text-decoration: none;
}
  /* Optional: staggered animation delay for AOS */
  .stagger-1 { transition-delay: 0.2s; }
  .stagger-2 { transition-delay: 0.4s; }
  .stagger-3 { transition-delay: 0.6s; }
  .stagger-4 { transition-delay: 0.8s; }

  /* Optional: image zoom on hover */
  .img_banner img {
    transition: transform 0.5s ease;
  }
  .card_banner:hover .img_banner img {
    transform: scale(1.2);
  }
  
  /* Mobile footer button */
  @media screen and (max-width: 768px) {
    .btn_floating {
      right: 20px;
      width: 200px;
      font-size: 24px;
      letter-spacing: 6px;
      top: -25px;
    }
  }

  /* Header positioning */
  #header {
    position: absolute;
    top: 30px;
    width: 95%;
    z-index: 99999;
    transition: all 0.3s ease;
  }
  
  .sticky-header {
    background: rgba(0, 0, 0, 0.95) !important;
    backdrop-filter: blur(10px);
  }

  /* Enhanced animations */
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(30px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes fadeInRight {
    from {
      opacity: 0;
      transform: translateX(50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes fadeInLeft {
    from {
      opacity: 0;
      transform: translateX(-50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
  }
  
  @keyframes scaleIn {
    from {
      opacity: 0;
      transform: scale(0.8);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }
  
  /* Animation classes */
  .animate-fadeInRight {
    animation: fadeInRight 0.8s ease-out;
  }
  
  .animate-fadeInLeft {
    animation: fadeInLeft 0.8s ease-out;
  }
  
  .animate-fadeInUp {
    animation: fadeInUp 0.8s ease-out;
  }
  
  .animate-scaleIn {
    animation: scaleIn 0.6s ease-out;
  }
  
  /* Scroll reveal animations */
  .scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
  }
  
  .scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
  }
  
  /* Staggered animations */
  .stagger-1 { animation-delay: 0.1s; }
  .stagger-2 { animation-delay: 0.2s; }
  .stagger-3 { animation-delay: 0.3s; }
  .stagger-4 { animation-delay: 0.4s; }

  /* Mobile menu improvements */
  #mobile-menu {
    transform: translateY(-20px);
    transition: all 0.3s ease;
  }
  
  #mobile-menu.show {
    transform: translateY(0);
  }

  /* Service cards mobile */
  @media screen and (max-width: 768px) {
    .grid.grid-cols-1.md\\:grid-cols-2 {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    
    .card_service {
      min-height: auto;
      padding: 20px;
    }
    
    .title_card_service h3 {
      font-size: 24px;
    }
    
    .contenue_card_service {
      font-size: 14px;
    }
  }

  /* Pack cards mobile */
  @media screen and (max-width: 768px) {
    .grid.grid-cols-1.sm\\:grid-cols-2.lg\\:grid-cols-3 {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    
    .card_pack {
      height: auto;
      min-height: 250px;
    }
    
    .image_card_pack {
      height: 120px;
    }
    
    .contenue_card_pack h3 {
      font-size: 16px;
    }
  }

  /* Blog cards mobile */
  @media screen and (max-width: 768px) {
    .grid.grid-cols-1.md\\:grid-cols-4 {
      grid-template-columns: 1fr;
      gap: 20px;
    }
    
    .card_service .image_card_blog {
      height: 200px;
    }
  }
  
  /* Modal improvements */
  #modalBox {
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    max-height: 90vh;
    overflow-y: auto;
  }
  
  @media screen and (max-width: 768px) {
    #modalBox {
      width: 95%;
      padding: 20px;
      max-height: 85vh;
    }
    
    .titre_popup_content h2 {
      font-size: 28px !important;
      padding-bottom: 20px !important;
    }
    
    .content_popup {
      font-size: 16px !important;
    }
    
    .content_popup .flex {
      flex-direction: column !important;
      gap: 20px !important;
    }
    
    .content_popup .flex > div {
      padding: 20px !important;
    }
    
    .content_popup h3 {
      font-size: 20px !important;
      padding-bottom: 15px !important;
    }
    
    .btn_popup a {
      font-size: 20px !important;
      letter-spacing: 4px !important;
      padding: 10px 20px !important;
    }
  }
  .content_popup ul li span{
      color: black !important;
  }

  /* Utility classes for better spacing */
  @media screen and (max-width: 768px) {
    .mobile-px-4 { padding-left: 1rem; padding-right: 1rem; }
    .mobile-py-8 { padding-top: 2rem; padding-bottom: 2rem; }
    .mobile-mb-6 { margin-bottom: 1.5rem; }
    .mobile-text-center { text-align: center; }
  }