/* Full Background Hero */
.about-hero-split {
  display: flex;
  align-items: center;
  min-height: 550px;
  background: url('../assests/Amal_Website_Image_4.jpg') no-repeat center center / cover;
  position: relative;
  overflow: hidden;
}

/* Left Content with Dark Overlay */
.hero-left-content {
  width: 50%;
  color: #fff;
  padding: 100px 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* Homepage Button (Note: The provided CSS has conflicting styles for .hero-left-content and a separate block for .homepage-button) */
.hero-left-content{
  color: #fff;
  padding: 32px 5rem;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 4px;
  margin-bottom: 40px;
  transition: background 0.3s ease;
}
.homepage-button {
  background-color: rgb(148, 164, 170); 
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  padding: 16px 32px;
  font-size: 1rem;
  text-decoration: none;
  text-align: center;
  display: inline-block;
  width: fit-content;
  transition: background-color 0.3s ease, transform 0.2s ease;
} 
.homepage-button:hover {
  background-color: #d1d1d1;
}

/* Heading */
.hero-left-content h1 {
  font-size: 64px;
  font-weight: 100;
  margin-bottom: 20px;
  line-height: 1.1;
}

/* Tagline */
.hero-left-content .subtitle{
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 50px;
  max-width: 80%;
  color: #ddd;
  justify-content: space-between;
}

/* View Jobs Button */
.hero-left-content .view-jobs-button {
  background-color: #e64c5d; 
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  padding: 16px 32px;
  font-size: 1rem;
  text-decoration: none;
  text-align: center;
  display: inline-block;
  width: fit-content;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.hero-left-content .view-jobs-button:hover {
  background-color: #c93d4c;
  transform: translateY(-2px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.25);
}

.mission-statement-section {
  padding: 0;
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  position: relative;
  gap: 5%; /* Spacing between left and right columns */
  background-color: #fff;
}

.red-triangle {
  position: absolute;
  top: 50px;
  left: 4%; 
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 50px 50px 0; 
  border-color: transparent #FF0000 transparent transparent; 
  transform: rotate(90deg);
}

.mission-content-left {
  width: 40%;
  min-width: 200px;
  display: flex; 
  align-items: center; 
  justify-content: flex-end; 
  padding-right: 5%; 
}

.mission-content-left h2 {
  font-size: 3rem; 
  font-weight: 400;
  color: #333;
  padding-top: 0; 
  text-align: right; 
}

.mission-content-right {
  width: 55%; 
  padding-top: 0; 
  color: #141414;
  font-size: 1.05rem;
  line-height: 1.6;
}

.mission-content-right p {
  margin-bottom: 0.5rem; 
  color: #141414;
}
.highlights{
  display: flex;
  flex-wrap: wrap; /* Allow wrapping to next line */
  gap: 8px; /* Vertical aur horizontal gap */
  justify-content: center; /* Center align */
  text-align: left;
}

.highlights span {
  flex: 1 1 40%; /* 2 items per line (roughly 50% width minus gap) */
  margin-right: 0;
  white-space: nowrap;
}

.highlights span::before {
  content: "★ ";
  color: #faa200;
  font-weight: bold;
}
.responsive-hero-image{
  display: none;
}
@media (max-width: 926px) {
  .responsive-hero-image {
    display: block;
    width: 100%;
    height: auto;
  }
}
/* Hide image by default (desktop view uses background) */
.responsive-hero-image {
  display: none;
}

/* Show image on mobile/tablet (below 926px) */
@media (max-width: 926px) {
  .about-hero-split {
    background: none; /* remove background image */
    flex-direction: column;
    padding: 0;
  }

  .responsive-hero-image {
    display: block;
    width: 100%;
    height: auto;
  }

  .hero-left-content {
    background-color: #1e1e1e; /* dark background like screenshot */
    color: #fff;
    text-align: center;
    padding: 40px 20px;
  }

  .hero-left-content h1 {
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 10px;
  }

  .hero-left-content .subtitle {
    font-size: 1rem;
    color: #ddd;
    margin-bottom: 25px;
  }

  .homepage-button {
    background-color: #9caab0;
    color: #fff;
    padding: 10px 24px;
    font-size: 0.9rem;
    border-radius: 5px;
    margin-bottom: 25px;
    display: inline-block;
  }

  .view-jobs-button {
    background-color: #e64c5d;
    color: #fff;
    border-radius: 5px;
    padding: 12px 26px;
    font-size: 0.95rem;
    display: inline-block;
  }
}
/* ----------------------------
   Responsive Design (Mobile)
----------------------------- */
@media (max-width: 600px) {
  /* Hero Section */
  .about-hero-split {
    flex-direction: column;
    min-height: auto;
    padding: 0;
    margin: 0;
  }

  /* Left Content */
  .hero-left-content {
    width: 100%;
    padding: 40px 1.5rem;
    text-align: left;
  }

  .hero-left-content h1 {
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 15px;
     position: relative;
    left: 2rem;
  }

  .hero-left-content .subtitle {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 100%;
     position: relative;
    left: 2rem;
  }

  .hero-left-content .view-jobs-button,
  .homepage-button {
    font-size: 0.9rem;
    padding: 12px 24px;
    width: fit-content;
     position: relative;
    left: 2rem;
  }

  /* Hero Right Image */
  .hero-right-image {
    width: 100%;
    min-height: 250px;
    clip-path: none;
  }

  /* Mission Section */
  .mission-statement-section {
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
    margin: 0;
    gap: 0;
  }

  .mission-content-left {
    width: 100%;
    justify-content: flex-start;
    text-align: left;
    padding: 0;
  }

  .mission-content-left h2 {
    font-size: 1.8rem;
    text-align: left;
    margin-bottom: 0.5rem;
  }

  .mission-content-right {
    width: 100%;
    font-size: 0.95rem;
    line-height: 1.6;
    padding: 0;
  }

  .red-triangle {
    position: relative;
    top: 0;
    left: 0;
    margin-bottom: 0;
    border-width: 0 35px 35px 0;
  }

  /* Highlights */
  .highlights {
    flex-direction: column;
    gap: 6px;
    text-align: left;
  }

  .highlights span {
    flex: 1 1 100%;
    white-space: normal;
    font-size: 0.95rem;
  }
}
