.solution-hero {
  background: linear-gradient(180deg, #0c9c4f 0%, #0bb259 100%);
  padding: 80px 0 100px 0;
  color: #ffffff;
  min-height: 260px;
}

.custom-breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 25px;
  display: flex;
  align-items: center;
  list-style: none;
  gap: 10px;
}
.custom-breadcrumb .breadcrumb-item,
.custom-breadcrumb .breadcrumb-item a {
  color: #f9f9f9;
  text-decoration: none;
  font-weight: 400;
  line-height: 100%;
  gap: 5px;
  font-size: 16px;
  display: flex;
  align-items: center;
}
.breadcrumb-item + .breadcrumb-item::before {
  color: #f9f9f9;
  content: "/";
  padding-right: 6px;
}

.solution-title {
  font-size: 50px;
  color: #f9f9f9;
  font-weight: 900;
  margin-bottom: 20px;
  letter-spacing: 0%;
  line-height: 100%;
}
.solution-desc {
  font-size: 20px;
  line-height: 1.6;
  font-weight: 700;
  color: #062d1a;
}
.school-description {
  font-size: 24px;
  line-height: 1.8;
  font-weight: 700;
  color: #0c9c4f;
}
/* Project Detail Section */
.project-detail-section {
  padding: 70px 0;
}

.project-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  width: 100%;
  height: 319px;
  opacity: 1;
  padding-top: 16px;
}

.project-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
}

.project-badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  padding: 40px 16px 16px;
}

.video-controls {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  opacity: 0;
  transition: opacity 0.3s;
  z-index: 3;
}

.project-image-wrapper:hover .video-controls {
  opacity: 1;
}

.vc-btn {
  background: none;
  border: none;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.vc-seek {
  flex: 1;
  height: 4px;
  accent-color: #0c9c4f;
  cursor: pointer;
}

.vc-time {
  font-size: 12px;
  color: #fff;
  white-space: nowrap;
}

.badge-label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: #0c9c4f;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.badge-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.play-btn {
  position: absolute;
  top: 42%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #0c9c4f;
  cursor: pointer;
  transition:
    transform 0.2s,
    background 0.2s;
  z-index: 2;
}

.play-btn:hover {
  background: #fff;
  transform: translate(-50%, -50%) scale(1.1);
}

.project-solution-btn-container {
  background: linear-gradient(180deg, #0c9c4f 0%, #0bb259 100%);
  border-radius: 15px;
  height: 100px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  width: 100%;
}

.project-solution-btn-container:hover {
  text-decoration: none;
}

.solution-btn {
  color: #0c9c4f;
  background-color: white;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 30px;
}

.solution-btn:hover {
  color: #0c9c4f;
}

.solutions-btn-arrow {
  background: linear-gradient(180deg, #0c9c4f 0%, #0bb259 100%);
  border-radius: 50%;
  padding: 5px;
  margin-left: 10px;
}

.feature-card {
  background: #dfefe780;
  border: 0.8px solid #f3f4f6;
  border-radius: 10px;
  padding: 20px;
  width: 100%;
  min-height: 116.6px;
  opacity: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.feature-icon {
  font-size: 20px;
  color: #0c9c4f;
  line-height: 1;
}

.feature-card p {
  font-size: 14px;
  color: #646464;
  margin: 0;
  line-height: 19.25px;
  width: 100%;
  font-weight: 400;
}
.project-content {
  gap: 26px;
  opacity: 1;
  display: flex;
  flex-direction: column;
}

.project-content p {
  font-size: 16px;
  line-height: 26px;
  color: #646464;
  margin-bottom: 10px;
  max-width: 100%;
}

.project-content p:last-child {
  margin-bottom: 0;
}
/* Budget Section */
.budget-section {
  padding: 70px 0;
  background: #fff;
}
.budget-title {
  font-family: "Figtree", sans-serif;
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  color: #062d1a;
  margin-bottom: 48px;
  line-height: 40px;
}
.budget-card {
  background: linear-gradient(180deg, #f7f7f7 0%, #f2f2f2 100%);
  border-top: 0.8px solid #dedede;
  padding: 32px;
  width: 272px;
  height: 260.6px;
  opacity: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.budget-icon {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  background: linear-gradient(
    180deg,
    rgba(12, 156, 79, 0.1) 0%,
    rgba(11, 178, 89, 0.1) 100%
  );
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #0c9c4f;
}

.budget-card-title {
  font-size: 18px;
  font-weight: 700;
  background: linear-gradient(180deg, #0c9c4f 0%, #0bb259 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin: 0;
}

.budget-card-desc {
  font-size: 14px;
  color: #646464;
  line-height: 22.75px;
  margin: 0;
}

.financial-section {
  background: #fff;
  padding-top: 50px;
  padding-bottom: 50px;
}

.financial-section .container {
  width: 1182px;
  height: 454.4px;
  padding-top: 50px;
  padding-bottom: 50px;
  background: linear-gradient(180deg, #f7f7f7 0%, #f2f2f2 100%);
  padding-left: 80px;

  opacity: 1;
}

.financial-card {
  opacity: 1;
}

.financial-title {
  font-size: 28px;
  font-weight: 700;
  color: #0c9c4f;
  line-height: 1.3;
  margin-bottom: 16px;
}

.financial-desc {
  font-weight: 400;
  font-size: 16px;
  line-height: 29.25px;
  color: #646464;
  margin: 0;
}

.financial-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.financial-item {
  background: #ffffff;
  border: 0.8px solid #ffffff1a;
  border-top: 0.8px solid #ffffff1a;
  border-radius: 14px;
  padding: 20px;
  width: 100%;
  min-height: 67.6px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  color: #0c9c4f;
  font-weight: 600;
  line-height: 22px;
  opacity: 1;
  box-shadow:
    0px 2px 4px 0px #00000014,
    0px 0px 6px 0px #00000005;
}

.financial-item i {
  font-size: 16px;
  color: #0c9c4f;
  flex-shrink: 0;
}
