:root {
  --main-color: #89ca5d;
  --second-color: #ffffff;
  --third-color: #477c0e;
  --fourth-color: #9d9fa2;
  --placeholder-color: #a1a1a1;
  --box-shadow: 0 8px 32px 0 hsla(96, 51%, 58%, 0.18);
}

@media (max-width: 576px) {
  .offcanvas-body .nav-item.dropdown {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0.5rem 0;
  }

  .offcanvas-body .nav-item.dropdown:last-child {
    border-bottom: none;
  }

  .offcanvas-body .dropdown-menu-list {
    background-color: rgba(2, 174, 239, 0.05);
    border-radius: 0.5rem;
    margin: 0.5rem 0;
    /* border: 1px solid rgba(2, 174, 239, 0.1); */
  }

  .offcanvas-body .dropdown-menu-list .dropdown-item {
    color: var(--third-color);
    font-weight: 500;
    border-bottom: 1px solid rgba(2, 174, 239, 0.1);
  }

  .offcanvas-body .dropdown-menu-list .dropdown-item:last-child {
    border-bottom: none;
  }

  .offcanvas-body .dropdown-menu-list .dropdown-item:hover {
    background-color: rgba(2, 174, 239, 0.1);
    color: var(--main-color);
  }

  /* تحسين مظهر الأيقونة */
  .offcanvas-body .iconToggle {
    color: var(--main-color);
    font-size: 0.8rem;
  }

  /* تحسين مظهر زر التبديل */
  .offcanvas-body #products-toggle {
    background-color: rgba(2, 174, 239, 0.1);
    border-radius: 0.25rem;
    padding: 0.25rem 0.5rem;
    margin-left: 0.5rem;
  }

  .offcanvas-body #products-toggle:hover {
    background-color: rgba(2, 174, 239, 0.2);
  }
  .hero-slider-pages .text-slider h1 {
    font-size: 1rem !important;
    color: var(--second-color) !important;
    font-weight: bold !important;
    text-wrap: nowrap;
  }

  
}


@media (max-width: 1200px) {
}

@media (max-width: 992px) {
}

@media (max-width: 768px) {
  nav .logo{
    width: 100px !important;
  }
  .hero-title {
    font-size: 1.8rem !important;
    font-weight: 800;
    margin-bottom: 1.5rem;

    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  }
  .background-video {
    position: relative;
    height: calc(100vh - 118px) !important;
    overflow: hidden;
  }
  .hero-content {
    position: absolute;
    top: 40% !important;
  
    transform: translateY(-50%);
    color: white;
    z-index: 3;
  }
  .hero-cta {
    position: absolute;
    bottom: 0% !important;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(10px) !important;
    border-radius: 0px !important;
    padding: 1rem 2rem;
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 0px !important;
    text-align: center;
  }
  .services-cards {
    flex-direction: column; /* خلي الكروت تحت بعض */
    gap: 20px;
  }

  .service-card {
    width: 100% !important;
    height: 350px !important;
    margin-bottom: 20px;
    border-radius: 20px;
  }

  .service-img {
    width: 100% !important;
    height: 250px; /* صورة أصغر للموبايل */
  }

  .service-content {
    position: relative;
    padding: 1rem;
  }

  .service-content .content {
    display: block; /* خلي التفاصيل تظهر على طول بدون ضغط */
  }

  /* ألغِ وضع expanded/collapsed في الموبايل */
  .service-card.expanded {
    width: 100% !important;
    height: 350px !important;
  }
  .service-card.collapsed {
    max-width: 100% !important;
  }
}


@media (min-width: 992px) {
  
}


