
/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  position: relative;
  padding: 75px 0;
  background-color: #000;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../img/construction/showcase-5.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.3;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero .hero-content {
  margin-bottom: 30px;
}

.hero .hero-content .subtitle {
  display: inline-block;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  color: #ff9e9e;
  margin-bottom: 15px;
  letter-spacing: 1px;
  position: relative;
  padding-left: 25px;
}

.hero .hero-content .subtitle::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 15px;
  height: 2px;
  background-color: var(--accent-color);
  transform: translateY(-50%);
}

.hero .hero-content h1 {
    position: relative;
    display: inline-block;
    font-weight: 900;
    line-height: 1.15;
    letter-spacing: .5px;
    margin: 15px auto 30px;
    padding-bottom: 18px;
    text-align: center;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    text-shadow:
        0 2px 10px rgba(255,255,255,.15),
        0 10px 35px rgba(0,0,0,.35);
}
.hero .hero-content h1{
    position: relative;
    display: inline-block;
    overflow: hidden;

    background: linear-gradient(
        90deg,
        #d8d8d8 0%,
        #ffffff 25%,
        #ffffff 50%,
        #d8d8d8 75%,
        #ffffff 100%
    );

    background-size: 250% auto;

    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    animation: shineText 6s linear infinite;
}

@keyframes shineText{
    from{
        background-position:200% center;
    }
    to{
        background-position:-200% center;
    }
}



.hero .hero-content h1::after{
    content:"";
    position:absolute;

    left:50%;
    bottom:0;
    transform:translateX(-50%);

    width:100px;
    height:4px;

    border-radius:50px;

    background:linear-gradient(
        90deg,
        transparent,
        #ffb703,
        #ff6b00,
        transparent
    );
}
.hero .hero-content h1::after{

    animation: lineMove 3s ease-in-out infinite;
}

@keyframes lineMove{

    0%,100%{
        width:80px;
        opacity:.7;
    }

    50%{
        width:120px;
        opacity:1;
    }

}




.hero .hero-content h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
  color: var(--surface-color);
}

@media (max-width: 992px) {
  .hero .hero-content h1 {
    font-size: 28px;
  }
  .hero .hero-content h2 {
    font-size: 17px;
  }
}

@media (max-width: 768px) {
  .hero .hero-content h1 {
    font-size: 24px;
  }
  .hero .hero-content h2 {
    font-size: 14px;
  }
}

.hero .hero-content p {
  font-size: 18px;
  margin-bottom: 30px;
  color: #fcfcfc;
  line-height: 1.6;
}
html[lang="ar"] .hero .hero-content p {
  text-align: justify;
}

.hero .hero-buttons {
  display: flex;
  gap: 15px;
  margin-bottom: 40px;
}

@media (max-width: 576px) {
  .hero .hero-buttons {
    gap: 10px;
  }
  .hero .hero-buttons .btn-primary,
  .hero .hero-buttons .btn-secondary {
    width: 48%;
    text-align: center;
    padding: 10px !important;
  }
}

.hero .hero-buttons .btn-primary {
  display: inline-block;
  padding: 14px 32px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero .hero-buttons .btn-primary:hover {
  background-color: color-mix(in srgb, var(--accent-color), black 15%);
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.hero .hero-buttons .btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  background-color: transparent;
  /* color: var(--default-color); */
  color: #eee3e3;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 10%);
  border-radius: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.hero .hero-buttons .btn-secondary:hover {
  background-color: color-mix(in srgb, var(--default-color), transparent 95%);
  border-color: var(--default-color);
  transform: translateY(-3px);
}

.hero .trust-badges {
  display: flex;
  gap: 30px;
  justify-content: space-around;
}

@media (max-width: 768px) {
  .hero .trust-badges {
    flex-wrap: wrap;
    gap: 20px;
  }
}

.hero .trust-badges .badge-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero .trust-badges .badge-item i {
  font-size: 32px;
  color: var(--accent-color);
}

.hero .trust-badges .badge-item .badge-text {
  display: flex;
  flex-direction: column;
}

.hero .trust-badges .badge-item .badge-text .count {
  font-size: 24px;
  font-weight: 700;
  /* color: var(--heading-color); */
  color: var(--surface-color);
  line-height: 1;
}

.hero .trust-badges .badge-item .badge-text .label {
  font-size: 14px;
  /* color: color-mix(in srgb, var(--default-color), transparent 30%); */
  color: #eee3e3;
}

.hero .hero-image {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hero .hero-image img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  transition: transform 0.5s ease, opacity 0.5s ease;
  opacity: 0.8;
}

.hero .hero-image:hover img {
  transform: scale(1.05);
  opacity: 1;
}

.hero .hero-image .image-badge {
  position: absolute;
  bottom: 6px;
  left: 3px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 5px 10px;
  border-radius: 4px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.hero .hero-image .image-badge span {
  display: block;
  font-weight: 700;
  font-size: 18px;
}

.hero .hero-image .image-badge p {
  margin: 0;
  font-size: 14px;
  opacity: 0.9;
}

@media (max-width: 992px) {
  .hero {
    padding: 80px 0;
  }

  .hero .hero-content {
    margin-bottom: 50px;
  }
}





