/* Digital-market Hero Section */
.digital-market-hero-section {
  height: 100vh; /* Full viewport height */
  color: white;
  padding: 100px 20px;
  text-align: center;
  position: relative; /* Changed from absolute to relative */
  overflow: hidden;
  z-index: 1; /* Ensure it stays above other content */
  display: flex;
  align-items: center;
  justify-content: center;
}

.digital-market-bg {
  background: url("../assets/background/diversify.jpg") center/cover no-repeat; /* Background image */
  position: absolute;
  background-position: center;
  left: 0;
  background-attachment: fixed;
  right: 0;
  z-index: -1;
  height: 100vh;
  top: 3rem;
  /* background-size: 100% 100%; */
}

.digital-market-hero-content {
  max-width: 800px; /* Limit content width for better readability */
  margin: 0 auto; /* Center the content */
}

.digital-market-hero-content h1 {
  font-size: 3.5rem;
  margin-bottom: 20px;
  animation: fadeInDown 1s ease-out;
}

.digital-market-hero-content p {
  font-size: 1.5rem;
  margin-bottom: 30px;
  animation: fadeInUp 1s ease-out;
}

.digital-market-hero-section .breadcrumb {
  font-size: 14px;
  margin: 2rem auto;
  color: #f0f8ff;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.digital-market-hero-section .breadcrumb a {
  color: #b7fba9;
  text-decoration: none;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.digital-market-hero-section .breadcrumb a:hover {
  color: #bcffae;
}

.digital-market-hero-section .breadcrumb span {
  color: #f0f8ff;
  font-size: 1.1rem;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .digital-market-bg {
    top: 4rem;
  }
}

@media screen and (max-width: 767px) {
  .digital-market-bg {
    top: 4rem;
  }
}

.digital-market-intro-section,
.team-overview-section {
  padding: 0.5rem 1rem;
  background: #0e2440;
  border-radius: 0;
  position: relative;
  margin: 2rem auto 4rem;
}

.digital-market-intro-section::before,
.team-overview-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 70px;
  height: 70px;
  background-color: #111827;
  clip-path: polygon(
    0 0,
    100% 0,
    0 100%
  ); /* Creates the triangle cut-out shape */
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 10px;
  color: #8e91ff;
}

.sub-title-container {
  display: flex;
  justify-content: center;
  gap: 3rem;
  align-items: center;
  margin: 1rem auto;
}

.sub-title-container .subtitle-text,
.mission-section .text-content,
.team-overview-section .text-content {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 45%;
  color: #f0f8ff;
}

.sub-title-container .subtitle-text p,
.mission-section .text-content p,
.team-overview-section .text-content p {
  margin: 1rem;
}

.sub-title-container .image,
.paradigm-shift-section .image-content,
.team-overview-section .image-content {
  display: flex;
  justify-content: center;
  width: 45%;
  font-size: 1.2rem;
}

.sub-title-container .image img {
  width: 475px;
  height: auto;
  min-width: 300px;
}

.mission-section .image-content img,
.team-overview-section .image-content img {
  width: 400px;
  height: auto;
  min-width: 300px;
}

.section-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mission-section {
  padding: 0.5rem 1rem;
  background: #f0f8ff;
  border-radius: 0;
  position: relative;
  margin: 2rem auto 4rem;
}

.mission-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 70px;
  height: 70px;
  background-color: #111827;
  clip-path: polygon(
    100% 0,
    0 0,
    0 100%
  ); /* Creates the triangle cut-out shape */
}

.mission-section .text-content p {
  font-size: 1rem;
  color: #0e2440;
}

.team-overview-section .text-content p {
  font-size: 1rem;
  color: #f0f8ff;
}

.benefits-section {
  margin: 1rem auto 4rem;
}

.benefits-section .card-icon {
  color: #111827;
}

.benefits-section .card {
  position: relative;
  flex: 0 0 300px;
  background: #007878;
  padding: 20px;
  text-align: center;
  scroll-snap-align: start;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border-radius: 0;
}

.benefits-section .card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 70px;
  height: 70px;
  background-color: #111827;
  clip-path: polygon(
    0 0,
    100% 0,
    0 100%
  ); /* Creates the triangle cut-out shape */
}

@media screen and (max-width: 767px) {
  .mission-section .section-content,
  .team-overview-section .section-content,
  .sub-title-container {
    flex-direction: column-reverse;
  }

  .mission-section .section-content {
    flex-direction: column;
  }

  .sub-title-container .subtitle-text,
  .mission-section .text-content,
  .team-overview-section .text-content {
    width: 100%;
  }

  .sub-title-container .subtitle-text p,
  .team-overview-section .text-content p,
  .mission-section .text-content p {
    font-size: 0.85rem;
  }

  .section-title {
    font-size: 1.8rem !important;
  }

  .faq-question {
    font-size: 1rem;
  }

  .faq-answer {
    font-size: 0.85rem;
  }
}

/* Styling for the How-to Diversify Section */
.paradigm-shift-section {
  padding: 60px 20px;
  background-color: #f0f8ff;
  color: #0e2440;
  text-align: center;
  border-radius: 0;
  position: relative;
}

.paradigm-shift-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 70px;
  height: 70px;
  background-color: #111827;
  clip-path: polygon(
    100% 0,
    0 0,
    0 100%
  ); /* Creates the triangle cut-out shape */
}

.section-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #2b70f5;
  margin-bottom: 20px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #0e2440;
  margin-bottom: 30px;
  line-height: 1.6;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

/* Steps List Styling */
.shift-list {
  width: 50%;
  list-style-type: none;
  margin: 0;
  padding: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: #007878;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.shift-list li {
  margin-bottom: 20px;
}

.shift-list strong {
  font-weight: 600;
  color: #007878;
}

/* Image Styling */
.image-content img {
  width: 450px;
  max-width: 300px;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  margin-top: 30px;
  transition: transform 0.3s ease;
}

.image-content img:hover {
  transform: scale(1.05);
}

/* Responsive Design */
@media (max-width: 768px) {
  .section-content {
    flex-direction: column-reverse;
    align-items: center;
  }

  .image-content {
    margin-top: 30px;
  }

  .shift-list {
    width: 70%;
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 2rem;
  }

  .section-subtitle {
    font-size: 0.9rem;
  }

  .shift-list {
    width: 100%;
    font-size: 0.85rem;
  }
}
