.elementor-28 .elementor-element.elementor-element-7d726cb > .elementor-container{min-height:370px;}.elementor-28 .elementor-element.elementor-element-7d726cb{margin-top:0px;margin-bottom:0px;padding:0px 0px 0px 0px;}/* Start custom CSS for html, class: .elementor-element-be8e12f */:root {
  --brand: #EB5729;
}

/* RESET */
.talha-hero-wrapper,
.talha-hero-wrapper * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* OUTER WRAPPER */
.talha-hero-wrapper {
  width: 100%;
  background: #000;
}

/* HERO LAYOUT */
.talha-hero {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5vw;
  background: #000;      /* keeps base black */
  overflow: hidden;
  position: relative;    /* important for the overlay */
}
/* Black shadow/gradient from left → right */
.talha-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;  /* don’t block clicks */
  background: linear-gradient(
    to right,
    #000 0%,                 /* full black on the far left */
    #000 35%,                /* solid black for text area */
    rgba(0, 0, 0, 0.7) 55%,  /* softer shadow over mid part */
    rgba(0, 0, 0, 0) 100%    /* fully transparent on the right */
  );
  z-index: 0;
}

.talha-hero-content,
.talha-hero-image {
  position: relative;
  z-index: 1;
}


/* LEFT SIDE */
.talha-hero-content {
  flex: 2;
  max-width: 600px;
}

.talha-hero-name {
  font-size: 5rem;
  font-weight: 800;
  color: var(--brand);
  margin-bottom: 0.4rem;
}

.talha-hero-title {
  font-size: 3rem;
  font-weight: 650;
  line-height: 1.;
  margin-bottom: 1.4rem;
  color: #fff;
}

.talha-hero-list {
  list-style: disc;
  margin-left: 1.2rem;
  margin-bottom: 2rem;
  font-size: 1rem;
  color: #d0d0d0;
}

.talha-hero-list li {
  margin-bottom: 0.6rem;
}

/* BUTTON */
.talha-hero-buttons {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.talha-btn {
  background: var(--brand);
  color: #fff;
  padding: 0.8rem 1.6rem;
  border-radius: 8px;
  text-decoration: none;
  border: 2px solid transparent;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.25s ease;
  box-shadow: 0 8px 20px rgba(235, 87, 41, 0.35);
}

/* HOVER EFFECT */
.talha-btn:hover {
  background: #fff;
  color: var(--brand) !important;
  border-color: var(--brand);
  box-shadow: none;
}

/* CLICK EFFECT */
.talha-btn:active {
  transform: scale(0.96);
}

/* SOCIAL ICONS */
.talha-hero-socials {
  display: flex;
  gap: 1.5rem;
}

.social-link {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  font-size: 1.5rem;
}

.social-link.linkedin {
  background: #0a66c2;
}

.social-link.instagram {
  background: #E4405F;
}

/* RIGHT IMAGE */
.talha-hero-image {
  flex: 1;
  height: 100vh;
}

.talha-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* MOBILE */
@media (max-width: 992px) {
  .talha-hero {
    flex-direction: column;
    padding: 3rem 1.5rem;
  }

  .talha-hero-image {
    order: -1;
    width: 100%;
    height: 60vh;
    margin-bottom: 2rem;
  }

  .talha-hero-name {
    font-size: 2.2rem;
  }

  .talha-hero-title {
    font-size: 1.6rem;
  }
}/* End custom CSS */