/* الهيدر العام */
.top-header {
  background-color: #f0fdf4;
  border-bottom: 1px solid #cdeccd;
  padding: 10px 20px;
}

#contact-link ul {
  padding: 0;
  margin: 0;
}

#contact-link li {
  position: relative;
  padding-left: 55px;
  list-style: none;
  margin-bottom: 10px;
  font-size: 14px;
  color: #333;
}

#contact-link li .material-icons {
  background-color: #72ad00;
  border-radius: 50%;
  color: white;
  font-size: 22px;
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
  transition: transform 0.4s ease, background-color 0.3s ease;
}

#contact-link li:hover .material-icons {
  transform: rotate(360deg);
  background-color: #66bb6a;
}

#contact-link .service-title {
  font-size: 15px;
  color: #444;
  font-style: italic;
  line-height: 1.4;
}

#contact-link span {
  font-size: 17px;
  font-weight: bold;
  color: #1a1a1a;
}

/* الشعار */
#_desktop_logo {
  margin: 10px auto;
  z-index: 1;
}

.head{
  width: 92%; margin: auto;
}
.logo-img {
  max-height: 143px;
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.05);
}

/* أيقونات الجانب الأيسر */
.icon-group a {
  color: #28a745;
  font-size: 1.5rem;
  transition: color 0.3s, transform 0.3s;
}

.icon-group a:hover {
  color: #ff9800;
  transform: scale(1.2);
}
.navbar-custom {
  background-color: #72ad00;
  border-radius: 27px;
}

.navbar-custom .nav-link {
  color: white;
  font-weight: bold;
}

.navbar-custom .nav-link:hover {
  color: #ffd700;
}

.dropdown-menu .dropdown-item:hover {
  background-color: #e9fbe5;
  color: #28a745;
}
 body {
      margin: 0;
      padding: 0;
    }

    .background-container {
      background-image: url('../img/BG.jpg');
      background-size: cover;
      background-repeat: no-repeat;
      background-position: center;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -1;
    }

    .overlay {
      background-color: rgba(255, 255, 255, 0.5); /* أبيض شفاف - غيّر اللون والشفافية */
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      z-index: -1;
    }

    .slider {
		position: relative;
		width: 80%;
		overflow: hidden;
		margin: auto;
    }

    .slide {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      /*background: #fff url('img/bg.jpg') no-repeat center center;*/
      background-size: cover;
      position: absolute;
      opacity: 0;
      transition: opacity 1s ease-in-out;
    }

    .slide.active {
      opacity: 1;
      position: relative;
    }

    .slide-content {
      max-width: 50%;
	   margin: auto;
    }

    .slide-content h2 {
      color: #7bb600;
      font-size: 28px;
    }

    .slide-content h1 {
      font-size: 50px;
      font-weight: bold;
      margin: 10px 0;
    }

    .slide-content .btns {
      margin-top: 20px;
    }

    .slide-content .btns a {
      display: inline-block;
      margin-right: 15px;
      padding: 12px 24px;
      border-radius: 25px;
      text-decoration: none;
      font-size: 16px;
    }

    .btn-offer {
      background: #1a4dff;
      color: #fff;
    }

    .btn-shop {
      background: #222;
      color: #fff;
    }

    .slide img {
      width: 100%;
      height: 390PX;
	  border-radius: 0 0 109px 109px;
    }

   .nav-arrow {
	  position: absolute;
	  top: 50%;
	  transform: translateY(-50%);
	  background: #fff;
	  border: 2px solid #7bb600;
	  border-radius: 50%;
	  width: 40px;
	  height: 40px;
	  color: #7bb600;
	  font-size: 24px;
	  text-align: center;
	  line-height: 36px;
	  cursor: pointer;
	  z-index: 10;
	  transition: all 0.3s ease;
	}

    .nav-left {
      left: 20px;
    }

    .nav-right {
      right: 20px;
    }
	
	
	/* ✅ تحسينات الهاتف */
@media (max-width: 768px) {
	.head{
  width: 100%;
}
  .top-header {
    text-align: center;
    padding: 10px;
  }

  #contact-link li {
    padding-left: 45px;
    /*font-size: 13px;*/
  }
#contact-link .service-title {
        font-size: 10px;
 
}

#contact-link span {
        font-size:11px;

}
  .logo-img {
    max-height: 152px;
  }

  .icon-group a {
    font-size: 1.2rem;
  }

  .navbar-custom {
    border-radius: 0;
    text-align: center;
  }

  .navbar-custom .nav-link {
    display: block;
    padding: 10px 0;
  }

  .slider {
    width: 100%;
    height: auto;
  }

  .slide {
    flex-direction: column;
    text-align: center;
    height: auto;
    padding: 20px;
  }

  .slide-content {
    max-width: 100%;
	margin: auto;
  }

  .slide-content h1 {
    font-size: 32px;
  }

  .slide-content h2 {
    font-size: 20px;
  }

  .slide-content .btns a {
    padding: 10px 16px;
    margin: 5px;
    font-size: 14px;
  }

  .slide img {
    width: 100%;
	HEIGHT: 179PX;
    margin-top: 20px;
	border-radius: 0 0 109px 109px;
  }

  .nav-arrow {
    width: 30px;
    height: 30px;
    font-size: 18px;
    line-height: 28px;
  }

  .nav-arrow.left {
    left: 10px;
  }

  .nav-arrow.right {
    right: 10px;
  }
}

/* ✅ تحسينات شاشة متوسطة (تابلت مثلاً) */
@media (min-width: 769px) and (max-width: 1024px) {
  .slide-content h1 {
    font-size: 40px;
  }

  .slide-content h2 {
    font-size: 24px;
  }

  .slide img {
		width: 100%;
        HEIGHT: 333PX;
  }
}
.product-card {
  height: 59%;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.nav-arrow {
	top:75%
    width: 36px;
    height: 36px;
    font-size: 22px;
    line-height: 34px;
  }

  .nav-arrow.left {
    left: 15px;
  }

  .nav-arrow.right {
    right: 15px;
  }

.product-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: all 0.3s ease-in-out;
}

.product-card:hover .product-overlay {
  opacity: 1;
}
.product-info {
  min-height: 170px; /* اضبط حسب المحتوى */
  padding: 10px 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.Galarry{
	background: #72ad0075;
    border-radius: 72px;
    padding: 23px;
    height: fit-content;
}

.Font
 {
     font-size: smaller;
    font-weight: bold;
}
#brands {
  max-width: 1200px;
  margin: 0 auto;
}

#brands .brands-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 25px;
  justify-items: center;
}

#brands .brand-item {
  background: #f9f9f9;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgb(0 0 0 / 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
  text-align: center;
}

/* تأثير عند المرور */
#brands .brand-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgb(0 0 0 / 0.2);
}

/* ✅ الكونتينر تبع الصورة */
#brands .brand-logo {
  width: 100px;
  height: 100px;
  border-radius: 12px; /* إذا بدك تخليهم دائريين حط 50% */
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px auto;
  overflow: hidden;
  border: 1px solid #eee;
}

/* ✅ الصورة نفسها */
#brands .brand-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

/* النص تحت الصورة */
#brands .brand-name {
  font-size: 14px;
  font-weight: 600;
  color: #333;
  text-align: center;
  text-transform: capitalize;
}

	  /*توهج كلم ترندينج براند*/
	  
	  .fire-text {
	 text-align: center;
	  font-size: 3rem;
	  font-weight: 900;
	  color: #416625;
	  position: relative;
	  animation: flicker 1.5s infinite;
	  text-transform: uppercase;
	  letter-spacing: 2px;
	  user-select: none;
	  text-shadow:
		 0 0 10px #32cd32,
      0 0 20px #00ff00,
      0 0 30px #32cd32,
      0 0 40px #00ff00,
      0 0 50px #00ff00;
	}

@keyframes flicker {
  0%, 19%, 21%, 23%, 25%, 54%, 56%, 100% {
    text-shadow:
      0 0 5px #00ff00,   /* أخضر نيون */
      0 0 10px #32cd32,  /* LimeGreen */
      0 0 20px #00ff00,
      0 0 30px #00ff00,
      0 0 40px #32cd32;
  }
  20%, 22%, 24%, 55% {
    text-shadow:
      0 0 10px #32cd32,
      0 0 20px #00ff00,
      0 0 30px #32cd32,
      0 0 40px #00ff00,
      0 0 50px #00ff00;
  }
}

@media (max-width: 600px) {
  .fire-text {
    font-size: 1.8rem; /* حجم أصغر يناسب الموبايل */
    letter-spacing: 1px; /* تقليل التباعد لو حابب */
	text-align:center;
  }
}
.footer {
  background-color: #416625; /* اللون الزيتتي */
  color: white;
  padding: 40px 20px;
  font-family: Arial, sans-serif;
}

.footer-container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: space-between;
}

.footer-section {
  flex: 1 1 300px;
  min-width: 220px;
}

.footer-section h3 {
  margin-bottom: 10px;
  font-size: 1.8rem;
  font-weight: bold;
}

.footer-section h4 {
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.footer-section p {
  line-height: 1.5;
  font-size: 1rem;
  max-width: 320px;
}

.footer-section .phone {
  margin-top: 10px;
  font-size: 1.1rem;
  font-weight: 600;
}

.send-email-btn {
  display: inline-block;
  background-color: #2f4f17;
  color: #fff;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: bold;
  transition: background-color 0.3s;
}

.send-email-btn:hover {
  background-color: #1d320d;
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  font-size: 0.9rem;
  color: #d0d0d0;
}

.footer-bottom a {
  color: #c1d64f;
  text-decoration: none;
}

.footer-bottom a:hover {
  text-decoration: underline;
}

/* استجابة الهواتف */
@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
    gap: 30px;
  }
}
@media (max-width: 600px) {
  .footer {
    padding: 30px 15px;
    width: 100vw; /* تأكد أن الفوتر يعرض بعرض كامل شاشة العرض */
    box-sizing: border-box; /* لمنع تجاوز الحواف */
  }

  .footer-container {
    flex-direction: column;
    gap: 0;
    max-width: 100% !important; /* تزيل الحد الأقصى للعرض */
    width: 100% !important;
    padding: 0 10px; /* حواف داخلية بسيطة */
    box-sizing: border-box;
  }

  .footer-section {
	  flex: 0;
    padding-bottom: 5px;
    width: 100%; /* تأكد العرض الكامل لكل قسم */
  }

  .footer-section h3 {
    font-size: 1.5rem;
  }

  .footer-section h4 {
    font-size: 1.2rem;
  }

  .footer-section p {
    font-size: 1.05rem;
    max-width: 100%;
  }

  .send-email-btn {
    padding: 12px 25px;
    font-size: 1.1rem;
  }

  .footer-bottom {
    font-size: 1rem;
    padding-top: 20px;
  }
}


.reveal {
  opacity: 0;
  transform: scale(0.95) translateY(50px);
  filter: blur(8px);
  transition: all 0.8s ease-in-out;
  will-change: transform, opacity;
}

.reveal.active {
  opacity: 1;
  transform: scale(1) translateY(0);
  filter: blur(0);
}
/* 🌿 ستايل خاص بالموبايل (تحسين إضافي) */
@media (max-width: 600px) {
  /* الهيدر */
  .top-header {
    padding: 8px 10px;
    background-color: #f6fff7;
  }

  #contact-link li {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 6px 0;
    margin-bottom: 8px;
    text-align: center;
  }

  #contact-link li .material-icons {
    position: static;
    margin-right: 8px;
    height: 32px;
    width: 32px;
    font-size: 20px;
  }

  #contact-link span,
  #contact-link .service-title {
    display: block;
    font-size: 13px;
    line-height: 1.3;
  }

  /* الشعار */
  .logo-img {
    max-height: 110px;
    margin: 10px auto;
    display: block;
  }

  /* شريط التنقل */
  .navbar-custom {
    border-radius: 0;
    padding: 8px;
  }

  .navbar-custom .nav-link {
    display: inline-block;
    font-size: 15px;
    padding: 8px 12px;
  }

  /* السلايدر */
  .slider {
    width: 100%;
    height: auto;
  }

  .slide {
    flex-direction: column;
    text-align: center;
    padding: 15px;
  }

  .slide-content h1 {
    font-size: 26px;
  }

  .slide-content h2 {
    font-size: 18px;
  }

  .slide-content .btns a {
    display: block;
    margin: 6px auto;
    width: 70%;
    font-size: 15px;
  }

  .slide img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 0 0 60px 60px;
  }

  /* المنتجات */
  .product-card {
    width: 100%;
    margin-bottom: 15px;
    border-radius: 12px;
  }

  .product-info {
    min-height: auto;
    font-size: 14px;
  }

  /* البراندات */
  #brands .brand-logo {
    width: 80px;
    height: 80px;
  }

  #brands .brand-name {
    font-size: 13px;
  }

  /* العنوان المتوهج */
  .fire-text {
    font-size: 1.6rem;
  }

  /* الفوتر */
  .footer {
    padding: 25px 10px;
    text-align: center;
  }

  .footer-section h3 {
    font-size: 1.3rem;
  }

  .footer-section p,
  .footer-bottom {
    font-size: 0.95rem;
  }

  .send-email-btn {
    padding: 10px 20px;
    font-size: 1rem;
    width: 80%;
  }
}
