/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: May 05 2026 | 15:44:28 */
.hero {
  min-height: 100vh;
  padding-top: 100px; /* same as header height */
  position: relative;
  width: 100%;
	
	 
    display: flex;
    align-items: center;      /* vertical centering */
   justify-content : flex-start; 
  
 
  background: url("https://hijazexpress.com/wp-content/uploads/2026/04/Home-Page-Hero-Final-1920x1080-1.png") center center / cover no-repeat;
  overflow: hidden;
}



/* Radial overlay on left 50% */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;

  /* Only cover left half */
  width: 100%;

  /* Radial gradient: strongest in center, fades outward */
  background: radial-gradient(
    circle at center left,
    rgba(0, 0, 0, 0.8) 0%,   /* strong in center */
    rgba(0, 0, 0, 0.5) 50%,
    rgba(0, 0, 0, 0.0) 100%  /* fades out */
  );

  pointer-events: none;
}



/* container takes full screen */
.hero-content {
  
  position: relative;
  z-index: 1;	
  height: 100%;
/*   max-width: 1200px; */
  margin: 0 auto;	
  display: flex;
  align-items: flex-start; 
 
  	
}

/* LEFT HALF TEXT AREA */
.hero-text {

  text-align: center; 	
  width: 60%;
/*   padding: 10px; */
  color: white;
  z-index: 2;
  	
 
}

/* typography */
.hero-text h1 {
  font-size: clamp(28px, 5vw, 56px);
/*   margin-bottom: 10px; */
 color : white; 	
 	
	
}

.hero-text h2 {
  font-size: 1.3rem;
  font-weight: bold;
/*   margin-bottom: 15px; */
 
  color : pink; 	
}

.hero-text p {
  font-size: 1.1rem;
/*   margin-bottom: 15px; */
  line-height: 1.4;
 
  	
  font-weight : bold; 
}

/* BUTTON (green, bold, limited width) */
.btn {
/* 	bottom: 20px;
  left: 50%;
  transform: translateX(-50%);  */
	
  display: inline-block;
  background: rgba(0, 122, 0,80);
  color: white;
  font-weight: 700;
  text-decoration: none;
  padding: 12px;
  border-radius: 6px;
 width: fit-content; 
	
  text-align: center;
  align-self : center; 	
  transition: 0.3s ease;
	
}

.btn:hover {
  background: #168800;
  transform: translateY(-2px);
 
}

/* TABLET */
@media (max-width: 992px) {
  .hero-text {
    width: 60%;
    padding: 5px;
  }

  .hero-text h1 {
    font-size: 2.4rem;
  }
}

/* MOBILE */
@media (max-width: 1024px) {
	
.hero {
    position: relative;
    min-height: 100vh;

  background: url("https://hijazexpress.com/wp-content/uploads/2026/04/MobilePhoneBackgroundImage.png") center / cover no-repeat;
}
	
	
	
  .hero::before {
    display: none;
  }	
	
.overlay {
  position: absolute;
  inset: 0;
}	

.hero-content,
.hero-text {
  width: 100% !important;
  max-width: 100% !important;
  text-align: center !important;
  align-items: center !important;
}	
	
.hero-content {
  position: relative;
  z-index: 2;

  height: 100vh;              /* critical */
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;

  padding-top: 10vh;
  text-align: center;
}

.hero-text h1,
.hero-text h2,
.hero-text p {
  
  font-weight : bold; 	
}

.hero-text h1 {
  color: darkgreen;
  font-size: 28px;
  line-height: 1.2;
  text-shadow: 0 2px 6px rgba(0,122,0,0.8);
 	
}
	
.hero-text h2{
		color : red; 
}	
	

.hero-text p {
  color: orange;
  font-size: 1rem;
  margin-top: 10px;
  text-shadow: 0 2px 6px rgba(0,0,0,0.5);
}

.hero-text .accent {
  color: #0b5e2b;
  font-weight: 600;
}

/* BUTTON → bottom ~20% */
.hero-button {
  flex: 0;
  padding-bottom: 10vh;

  display: flex;
  justify-content: center;
  align-items: flex-end;
}
	
/* Button styling stays simple */
 .btn {
  position: static; /* IMPORTANT: remove absolute */
}	
	 
	

}