/* Add custom CSS styles below */ 
/* Hero Container */
.custom-hero {
  position: relative;
  height: 80vh; /* Adjust height for desktop */
  min-height: 400px;
  background-image: url('YOUR_IMAGE_URL_HERE'); /* Use a high-quality photo of cartons/warehousing */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
  font-family: 'Frutiger LT Arabic', sans-serif; /* Matching Ma5azen's font */
}

/* Purple Gradient Overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(75, 0, 130, 0.8) 0%, rgba(128, 0, 128, 0.6) 100%);
  z-index: 1;
}

/* Content Styling */
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 20px;
  max-width: 800px;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: bold;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-content p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

/* Action Button */
.hero-btn {
  display: inline-block;
  padding: 15px 40px;
  background-color: #ffffff;
  color: #4b0082;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
  .custom-hero {
    height: 60vh;
  }
  
  .hero-content h1 {
    font-size: 1.8rem;
  }
  
  .hero-content p {
    font-size: 1rem;
  }
}