.hero-container {
  background-color: #003399;
  background-image: url('../images/the-industry-4273622_1280.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  line-height: 1.6;
  z-index: 1;
}

.hero-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(325deg, rgba(0, 51, 153, 0.60) 0%, rgba(65, 112, 206, 0.60) 50%, rgba(0, 51, 153, 0.60) 100%);
  background-size: 250% 100%;
  background-position: right;
  transition: background-position 0.5s ease;
  z-index: -1;
}

.hero-container:hover::before {
  background-position: left;
}

.hero-section {
  text-align: center;
  padding: 60px 0;
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(6px);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: 4rem;
  font-weight: 900;
  font-family: "QuickSand", sans-serif;
  color: white;
  margin-bottom: 26px;
  letter-spacing: 0.5px;
  background: linear-gradient(135deg, #ffffff, #cce0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.8;
}

.whoweare-grid {
  width: 100%;
  position: relative;
}

.whoweare-card {
  background-color: #f5f5f5;
  position: sticky;
  top: 116px;
  width: 100%;
  height: calc(100vh - 116px);
  padding-left: 100px;
  padding-right: 100px;
  padding-top: 30px;
  padding-bottom: 30px;
  box-shadow: -1px 0 30px rgba(0, 0, 0, 0.1);
}

/* .whoweare-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #003399, #0066cc);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
} */

/* .whoweare-card:hover { */
/* transform: translateY(-8px); */
/* box-shadow: 0 32px 80px rgba(0, 51, 153, 0.15); */
/* background: rgba(255, 255, 255, 1); */
/* } */

/* .whoweare-card:hover::before {
  transform: scaleX(1);
} */

.whoweare-card .whoweare-inner {
  position: relative;
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.whoweare-card .whoweare-body {
  position: relative;
  max-width: 60%;
  width: 60%;
  height: 90%;
  padding: 25px;
  background: rgba(255, 255, 255, 1);
  box-shadow: 0 8px 32px rgba(0, 51, 153, 0.15);
  transition: box-shadow 0.3s ease;
  border-radius: 16px;
  z-index: 2;
}

.whoweare-card.left .whoweare-body {
  margin-right: auto;
}

.whoweare-card.right .whoweare-body {
  margin-left: auto;
}

.whoweare-inner .whoweare-image {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  height: 80%;
  width: 50%;
  z-index: 1;
}

.whoweare-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 51, 153, 0.15);
  /* box-shadow: 0 0 30px rgba(0, 0, 0, 0.15); */
}

.whoweare-card.left .whoweare-image {
  left: auto;
  right: 10px;
}

.whoweare-card.right .whoweare-image {
  left: 10px;
  right: auto;
}

.whoweare-header {
  margin-bottom: 26px;
}

.whoweare-title {
  font-size: 2rem;
  font-weight: 700;
  color: #003399;
  margin-bottom: 16px;
  line-height: 1.3;
}

.whoweare-description {
  font-size: 1.15rem;
  color: #4a5568;
  line-height: 1.6;
  margin-bottom: 0;
}

.whoweare-features {
  list-style: none;
  margin: 0;
}

.whoweare-features li {
  color: #2d3748;
  font-size: 1.15rem;
  margin-bottom: 12px;
  padding-left: 36px;
  position: relative;
  line-height: 1.6;
}

.whoweare-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #009933;
  font-weight: bold;
  font-size: 1.2rem;
  width: 24px;
  height: 24px;
  background: rgba(0, 153, 51, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.whoweare-features li:last-child {
  margin-bottom: 0;
}

.key-points {
  background: rgba(0, 51, 153, 0.05);
  border-radius: 16px;
  padding: 22px;
  margin-bottom: 26px;
  border-left: 4px solid #009933;
  width: fit-content;
}

.key-points h4 {
  color: #003399;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.key-points ul {
  list-style: none;
}

/* .highlight-text { */
/* background: linear-gradient(120deg, rgba(0, 153, 51, 0.1) 0%, rgba(0, 153, 51, 0.05) 100%); */
/* padding: 2px 8px; */
/* border-radius: 6px;
  font-weight: 600;
  color: #2d3748; */
/* } */

.icon-wrapper {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #003399, #0066cc);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  box-shadow: 0 8px 32px rgba(0, 51, 153, 0.3);
}

.icon {
  width: 40px;
  height: 40px;
  fill: white;
}

.service-bg {
  position: relative;
  background: linear-gradient(325deg, rgba(0, 51, 153, 1) 0%, rgba(65, 112, 206, 1) 50%, rgba(0, 51, 153, 1) 100%);
  background-size: 250% 100%;
  background-position: right;
  transition: background-position 0.5s ease;
  color: #fff;
  padding: 60px 0 60px;
  z-index: 1;
}

.service-bg h1 {
  color: #fff;
  font-size: 2.8em;
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.service-bg h3 {
  padding-right: 40px;
  margin: 0 auto 1em;
  color: #e8ecf1;
  line-height: 1.6;
  text-align: justify;
}

.service-bg h2 {
  color: #e8ecf1;
}

.service-bg:hover {
  background-position: left;
}

.heartrate-container {
  opacity: .15;
}

.heartrate-container svg .heartrate-line {
  stroke: #fff;
}

.vision-mission {
  position: relative;
  width: 100%;
  z-index: 1;
}

/* .vision-mission::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fafffb;
  clip-path: polygon(0 0, 51% 0, 46% 100%, 0% 100%);
  z-index: -1;
}

.vision-mission::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #ebf1ff;
  clip-path: polygon(51% 0, 100% 0%, 100% 100%, 46% 100%);
  z-index: -1;
} */

.vision,
.mission {
  padding: 50px 100px;
  background-color: #f0f5ff;
  display: block;
  width: 65%;
}

.mission {
  margin-bottom: 80px;
  border-top-right-radius: 300px;
  border-bottom-right-radius: 300px;
  box-shadow: 3px 3px 8px 0 rgba(0, 153, 51, 0.75);
}

.vision {
  border-top-left-radius: 300px;
  border-bottom-left-radius: 300px;
  margin-left: auto;
  box-shadow: -3px -3px 8px 0 rgba(0, 51, 153, 0.75);
}

.vision-mission .title {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 25px;
  color: #313131;
}

.vision-mission .desc {
  font-size: 1.75rem;
  font-weight: 400;
  line-height: 1.75;
  color: #313131;
}

.core-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.core-card {
  background: #f8f9fa;
  padding: 60px 100px;
  width: 80%;
}

.core-card.one {
  border-top-left-radius: 300px;
  border-bottom-left-radius: 300px;
  box-shadow: -3px -3px 8px 0 rgba(0, 51, 153, 0.75);
  margin-left: auto;
}

.core-card.two {
  border-top-right-radius: 300px;
  border-bottom-right-radius: 300px;
  box-shadow: 3px 3px 8px 0 rgba(0, 153, 51, 0.75);
  margin-right: auto;
}

.core-card.three {
  border-top-left-radius: 300px;
  border-bottom-left-radius: 300px;
  box-shadow: -3px -3px 8px 0 rgba(0, 153, 51, 0.75);
  margin-left: auto;
}

.core-card.four {
  border-top-right-radius: 300px;
  border-bottom-right-radius: 300px;
  box-shadow: 3px 3px 8px 0 rgba(0, 51, 153, 0.75);
  margin-right: auto;
}

.core-card h3 {
  font-family: var(--font-family-base);
  font-size: 24px;
  font-weight: 700;
  color: var(--vitt-blue);
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.core-card p {
  font-family: var(--font-family-base);
  font-size: 1.25rem;
  line-height: 1.5;
  color: #414141;
  margin-bottom: 0;
}

.core-card .icon {
  width: 80px;
  height: 80px;
  font-size: 3.5rem;
  color: #fff;
  border-radius: 10px;
  margin-bottom: 15px;
  background: #003399;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 110%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.core-card.one .icon {
  background-image: url('../images/vision_bg.png');
}

.core-card.two .icon {
  background-image: url('../images/mission_bg.png');
}

.core-card.four .icon {
  background-image: url('../images/vision_bg.png');
}

.core-card.three .icon {
  background-image: url('../images/mission_bg.png');
}

@media (min-width: 992px) and (max-width: 1600px) {
  .core-card {
    padding: 30px 50px 30px 100px;
    width: 100%;
  }

  .core-card.two,
  .core-card.four {
    padding: 30px 100px 30px 50px;
  }
}