.who-we-are-section {
  background: linear-gradient(135deg, #E3F2FD 0%, #ffffff 45%, #f4fbf8 100%);
  position: relative;
  overflow: hidden;
}

.who-we-are-section::before {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  background: rgba(88, 161, 26, 0.12);
  border-radius: 50%;
  top: -120px;
  right: -120px;
}

.who-we-are-section::after {
  content: "";
  position: absolute;
  width: 280px;
  height: 280px;
  background: rgba(2, 76, 145, 0.12);
  border-radius: 50%;
  bottom: -100px;
  left: -100px;
}

.who-image-box {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.image-bg-shape {
  position: absolute;
  width: 420px;
  height: 420px;
  background: linear-gradient(135deg, #024c91, #0878b8, #0b8f75);
  border-radius: 42% 58% 55% 45%;
  box-shadow: 0 30px 80px rgba(2, 76, 145, 0.25);
  animation: morphShape 7s ease-in-out infinite;
}

.main-visual-card {
  position: relative;
  width: 82%;
  max-width: 420px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  padding: 45px 35px;
  border-radius: 28px;
  box-shadow: 0 25px 70px rgba(7, 59, 90, 0.18);
  text-align: center;
  border: 1px solid rgba(255,255,255,0.8);
}

.icon-circle {
  width: 86px;
  height: 86px;
  background: linear-gradient(135deg, #58a11a, #0b8f75);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
  font-size: 38px;
  box-shadow: 0 15px 35px rgba(88, 161, 26, 0.35);
}

.main-visual-card h3 {
  color: #024c91;
  font-weight: 800;
  margin-bottom: 14px;
}

.main-visual-card p {
  color: #566;
  font-size: 15px;
  line-height: 1.7;
}

.mini-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 28px;
}

.mini-stats div {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #E3F2FD;
  padding: 13px 16px;
  border-radius: 16px;
  color: #073b5a;
  font-weight: 600;
  font-size: 14px;
}

.mini-stats i {
  color: #0b8f75;
  font-size: 20px;
}

.floating-badge {
  position: absolute;
  background: #ffffff;
  color: #024c91;
  padding: 12px 18px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 15px 40px rgba(7, 59, 90, 0.18);
  display: flex;
  align-items: center;
  gap: 8px;
}

.floating-badge i {
  color: #58a11a;
}

.badge-one {
  top: 80px;
  left: 25px;
}

.badge-two {
  bottom: 90px;
  right: 20px;
}

.who-content {
  position: relative;
  z-index: 1;
}

.section-label {
  display: inline-block;
  background: rgba(88, 161, 26, 0.12);
  color: #58a11a;
  padding: 9px 20px;
  border-radius: 50px;
  font-weight: 800;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  font-size: 14px;
  margin-bottom: 18px;
}

.who-content h2 {
  color: #073b5a;
  font-size: 42px;
  line-height: 1.2;
  font-weight: 800;
  margin-bottom: 22px;
}

.who-content h2 span {
  color: #024c91;
  display: block;
}

.who-content p {
  color: #5c6f7c;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 14px;
}

.feature-list {
  margin: 26px 0;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: #073b5a;
  font-weight: 600;
}

.feature-item i {
  color: #58a11a;
  font-size: 20px;
  margin-top: 2px;
}

.highlight-box {
  background: linear-gradient(135deg, #024c91, #0878b8);
  color: #ffffff;
  padding: 22px 24px;
  border-radius: 22px;
  display: flex;
  gap: 15px;
  margin-bottom: 28px;
  box-shadow: 0 18px 45px rgba(2, 76, 145, 0.22);
}

.highlight-box i {
  font-size: 34px;
  color: #E3F2FD;
}

.highlight-box p {
  color: #ffffff;
  margin: 0;
  font-weight: 500;
}

.theme-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #58a11a, #0b8f75);
  color: #ffffff;
  padding: 14px 26px;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 15px 35px rgba(88, 161, 26, 0.28);
  transition: all 0.35s ease;
}

.theme-btn:hover {
  color: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 20px 45px rgba(88, 161, 26, 0.4);
}

@keyframes morphShape {
  0%, 100% {
    border-radius: 42% 58% 55% 45%;
  }
  50% {
    border-radius: 58% 42% 45% 55%;
  }
}

@media (max-width: 991px) {
  .who-content h2 {
    font-size: 34px;
  }

  .who-image-box {
    min-height: 460px;
  }
}

@media (max-width: 575px) {
  .who-content h2 {
    font-size: 29px;
  }

  .main-visual-card {
    width: 92%;
    padding: 35px 22px;
  }

  .image-bg-shape {
    width: 320px;
    height: 320px;
  }

  .floating-badge {
    font-size: 12px;
    padding: 10px 14px;
  }

  .badge-one {
    top: 55px;
    left: 5px;
  }

  .badge-two {
    bottom: 65px;
    right: 5px;
  }

  .highlight-box {
    flex-direction: column;
  }
}
.dpc-story-area {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, #E3F2FD 48%, #f3faf6 100%);
}

.dpc-story-area::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: rgba(8, 120, 184, 0.08);
  border-radius: 50%;
  top: -160px;
  left: -130px;
}

.dpc-story-area::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(88, 161, 26, 0.1);
  border-radius: 50%;
  right: -100px;
  bottom: -100px;
}

.dpc-story-image-wrap {
  position: relative;
  z-index: 1;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dpc-story-img-shape {
  position: absolute;
  width: 86%;
  height: 86%;
  background: linear-gradient(135deg, #024c91, #0878b8, #0b8f75);
  border-radius: 34px;
  transform: rotate(5deg);
  box-shadow: 0 30px 80px rgba(2, 76, 145, 0.22);
}

.dpc-story-main-img {
  position: relative;
  width: 88%;
  border-radius: 34px;
  overflow: hidden;
  border: 8px solid #ffffff;
  box-shadow: 0 24px 65px rgba(7, 59, 90, 0.22);
}

.dpc-story-main-img img {
  width: 100%;
  
  object-fit: cover;
  display: block;
}

.dpc-story-experience-card {
  position: absolute;
  left: 15px;
  bottom: 55px;
  background: #ffffff;
  padding: 18px 22px;
  border-radius: 22px;
  box-shadow: 0 18px 50px rgba(7, 59, 90, 0.2);
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 260px;
}

.dpc-story-experience-card i {
  width: 54px;
  height: 54px;
  background: linear-gradient(135deg, #58a11a, #0b8f75);
  color: #ffffff;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  flex-shrink: 0;
}

.dpc-story-experience-card h4 {
  color: #024c91;
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 3px;
}

.dpc-story-experience-card p {
  color: #5d707c;
  margin: 0;
  font-size: 14px;
}

.dpc-story-content-box {
  position: relative;
  z-index: 1;
}

.dpc-story-label {
  display: inline-block;
  background: rgba(2, 76, 145, 0.1);
  color: #024c91;
  padding: 9px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  margin-bottom: 18px;
}

.dpc-story-content-box h2 {
  color: #073b5a;
  font-size: 42px;
  line-height: 1.18;
  font-weight: 850;
  margin-bottom: 22px;
}

.dpc-story-content-box h2 span {
  color: #58a11a;
  display: block;
}

.dpc-story-content-box p {
  color: #5f7280;
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 14px;
}

.dpc-story-timeline {
  position: relative;
  margin-top: 28px;
  margin-bottom: 26px;
}

.dpc-story-step {
  position: relative;
  display: flex;
  gap: 16px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(8, 120, 184, 0.12);
  padding: 18px 18px;
  border-radius: 20px;
  margin-bottom: 16px;
  box-shadow: 0 12px 35px rgba(7, 59, 90, 0.08);
  transition: all 0.35s ease;
}

.dpc-story-step:hover {
  transform: translateX(6px);
  box-shadow: 0 18px 45px rgba(7, 59, 90, 0.13);
}

.dpc-story-step-icon {
  width: 48px;
  height: 48px;
  background: #E3F2FD;
  color: #0878b8;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.dpc-story-step h5 {
  color: #073b5a;
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 5px;
}

.dpc-story-step p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
}

.dpc-story-note {
  background: linear-gradient(135deg, #024c91, #0878b8);
  color: #ffffff;
  padding: 16px 20px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  box-shadow: 0 16px 40px rgba(2, 76, 145, 0.24);
}

.dpc-story-note i {
  color: #E3F2FD;
  font-size: 22px;
}

@media (max-width: 991px) {
  .dpc-story-content-box h2 {
    font-size: 34px;
  }

  .dpc-story-image-wrap {
    min-height: 480px;
  }

  .dpc-story-main-img img {
    height: 430px;
  }
}

@media (max-width: 575px) {
  .dpc-story-content-box h2 {
    font-size: 29px;
  }

  .dpc-story-image-wrap {
    min-height: 420px;
  }

  .dpc-story-main-img {
    width: 92%;
    border-width: 6px;
  }

  .dpc-story-main-img img {
    height: 350px;
  }

  .dpc-story-img-shape {
    width: 88%;
    height: 78%;
  }

  .dpc-story-experience-card {
    left: 0;
    bottom: 35px;
    padding: 14px 16px;
  }

  .dpc-story-step {
    padding: 16px;
  }

  .dpc-story-note {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}
.dpc-mv-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(
    135deg,
    #024c91 0%,
    #073b5a 35%,
    #0878b8 68%,
    #0b8f75 100%
  );
  z-index: 1;
}

.dpc-mv-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(255,255,255,0.08), transparent 30%),
    radial-gradient(circle at bottom right, rgba(88,161,26,0.12), transparent 35%);
  z-index: -1;
}

.dpc-mv-heading-wrap {
  margin-bottom: 20px;
}

.dpc-mv-mini-title {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 50px;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 18px;
  border: 1px solid rgba(255,255,255,0.12);
}

.dpc-mv-heading-wrap h2 {
  color: #ffffff;
  font-size: 48px;
  font-weight: 850;
  line-height: 1.15;
  margin-bottom: 20px;
}

.dpc-mv-heading-wrap h2 span {
  color: #58a11a;
  display: block;
}

.dpc-mv-heading-wrap p {
  color: rgba(255,255,255,0.82);
  font-size: 17px;
  line-height: 1.8;
}

.dpc-mv-card {
  position: relative;
  height: 100%;
  padding: 45px 35px;
  border-radius: 32px;
  overflow: hidden;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 30px 80px rgba(0,0,0,0.15);
  transition: all 0.45s ease;
}

.dpc-mv-card:hover {
  transform: translateY(-10px);
  border-color: rgba(255,255,255,0.25);
}

.dpc-mv-glow-circle {
  position: absolute;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(88,161,26,0.12);
  top: -120px;
  right: -80px;
  filter: blur(10px);
}

.dpc-mv-icon-box {
  width: 88px;
  height: 88px;
  border-radius: 24px;
  background: linear-gradient(135deg, #58a11a, #0b8f75);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 38px;
  margin-bottom: 28px;
  position: relative;
  box-shadow: 0 20px 40px rgba(88,161,26,0.28);
  animation: dpcMvFloat 4s ease-in-out infinite;
}

.dpc-mv-card-tag {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 50px;
  background: rgba(255,255,255,0.12);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.7px;
}

.dpc-mv-card-content h3 {
  color: #ffffff;
  font-size: 30px;
  line-height: 1.25;
  font-weight: 800;
  margin-bottom: 22px;
}

.dpc-mv-card-content p {
  color: rgba(255,255,255,0.82);
  font-size: 15.8px;
  line-height: 1.85;
  margin-bottom: 16px;
}

.dpc-mv-points {
  margin-top: 30px;
}

.dpc-mv-point-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 15px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.35s ease;
}

.dpc-mv-point-item:hover {
  transform: translateX(6px);
  background: rgba(255,255,255,0.1);
}

.dpc-mv-point-item i {
  color: #58a11a;
  font-size: 20px;
  margin-top: 1px;
}

.dpc-mv-point-item span {
  color: #ffffff;
  font-weight: 600;
  font-size: 15px;
}

.dpc-mv-floating-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.18;
  z-index: -1;
  animation: dpcMvShapeMove 10s ease-in-out infinite;
}

.dpc-mv-shape-one {
  width: 180px;
  height: 180px;
  background: #58a11a;
  top: 8%;
  left: 4%;
}

.dpc-mv-shape-two {
  width: 120px;
  height: 120px;
  background: #ffffff;
  right: 7%;
  top: 18%;
}

.dpc-mv-shape-three {
  width: 220px;
  height: 220px;
  background: #0878b8;
  bottom: -60px;
  left: 42%;
}

@keyframes dpcMvFloat {
  0%,100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
}

@keyframes dpcMvShapeMove {
  0%,100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-18px) rotate(8deg);
  }
}

@media (max-width: 991px) {
  .dpc-mv-heading-wrap h2 {
    font-size: 38px;
  }

  .dpc-mv-card {
    padding: 38px 28px;
  }

  .dpc-mv-card-content h3 {
    font-size: 26px;
  }
}

@media (max-width: 575px) {

  .dpc-mv-section {
    padding-top: 70px !important;
    padding-bottom: 70px !important;
  }

  .dpc-mv-heading-wrap h2 {
    font-size: 30px;
  }

  .dpc-mv-heading-wrap p {
    font-size: 15px;
  }

  .dpc-mv-card {
    padding: 30px 22px;
    border-radius: 24px;
  }

  .dpc-mv-card-content h3 {
    font-size: 24px;
  }

  .dpc-mv-icon-box {
    width: 74px;
    height: 74px;
    font-size: 30px;
    border-radius: 20px;
  }

  .dpc-mv-point-item {
    padding: 12px 14px;
  }

  .dpc-mv-point-item span {
    font-size: 14px;
  }
}
.dpc-experts-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, #E3F2FD 48%, #f5fbf7 100%);
}

.dpc-experts-section::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: rgba(2, 76, 145, 0.08);
  border-radius: 50%;
  top: -150px;
  right: -130px;
}

.dpc-experts-section::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  background: rgba(88, 161, 26, 0.1);
  border-radius: 50%;
  bottom: -130px;
  left: -100px;
}

.dpc-experts-label {
  display: inline-block;
  padding: 9px 22px;
  border-radius: 50px;
  background: rgba(2, 76, 145, 0.1);
  color: #024c91;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 18px;
}

.dpc-experts-title {
  color: #073b5a;
  font-size: 44px;
  line-height: 1.15;
  font-weight: 850;
  margin-bottom: 18px;
}

.dpc-experts-title span {
  display: block;
  color: #58a11a;
}

.dpc-experts-desc {
  color: #5f7280;
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
}

.dpc-expert-card {
  position: relative;
  z-index: 1;
  height: 100%;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 32px;
  padding: 28px;
  border: 1px solid rgba(8, 120, 184, 0.14);
  box-shadow: 0 24px 70px rgba(7, 59, 90, 0.12);
  overflow: hidden;
  transition: all 0.4s ease;
}

.dpc-expert-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 85px rgba(7, 59, 90, 0.18);
}

.dpc-expert-card::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  background: linear-gradient(135deg, rgba(2,76,145,0.13), rgba(8,120,184,0.08));
  border-radius: 50%;
  top: -90px;
  right: -80px;
  z-index: -1;
}

.dpc-expert-card-green::before {
  background: linear-gradient(135deg, rgba(88,161,26,0.16), rgba(11,143,117,0.08));
}

.dpc-expert-top {
  display: flex;
  gap: 22px;
  align-items: center;
  margin-bottom: 26px;
}

.dpc-expert-img-box {
  width: 170px;
  height: 190px;
  border-radius: 26px;
  overflow: hidden;
  flex-shrink: 0;
  background: #E3F2FD;
  border: 6px solid #ffffff;
  box-shadow: 0 16px 40px rgba(7, 59, 90, 0.16);
}

.dpc-expert-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.dpc-expert-badge {
  display: inline-block;
  background: rgba(8, 120, 184, 0.1);
  color: #0878b8;
  padding: 8px 14px;
  border-radius: 50px;
  font-size: 12.5px;
  font-weight: 800;
  margin-bottom: 12px;
}

.dpc-expert-card-green .dpc-expert-badge {
  background: rgba(88, 161, 26, 0.12);
  color: #58a11a;
}

.dpc-expert-info h3 {
  color: #073b5a;
  font-size: 25px;
  font-weight: 850;
  margin-bottom: 10px;
}

.dpc-expert-info h3 small {
  color: #58a11a;
  font-size: 16px;
}

.dpc-expert-info p {
  color: #5f7280;
  font-size: 15px;
  line-height: 1.7;
  margin: 0;
}

.dpc-expert-special-box {
  background: linear-gradient(135deg, #E3F2FD, #ffffff);
  border-radius: 24px;
  padding: 22px;
  margin-bottom: 22px;
  border: 1px solid rgba(8, 120, 184, 0.1);
}

.dpc-expert-special-box h4 {
  color: #024c91;
  font-size: 18px;
  font-weight: 850;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.dpc-expert-special-box h4 i {
  color: #58a11a;
}

.dpc-expert-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.dpc-expert-tags span {
  background: #ffffff;
  color: #073b5a;
  padding: 9px 13px;
  border-radius: 50px;
  font-size: 13.5px;
  font-weight: 700;
  border: 1px solid rgba(8, 120, 184, 0.1);
  box-shadow: 0 8px 22px rgba(7, 59, 90, 0.06);
}

.dpc-expert-quote {
  position: relative;
  background: linear-gradient(135deg, #024c91, #0878b8);
  border-radius: 24px;
  padding: 22px 22px 22px 70px;
  overflow: hidden;
}

.dpc-expert-card-green .dpc-expert-quote {
  background: linear-gradient(135deg, #0b8f75, #58a11a);
}

.dpc-expert-quote i {
  position: absolute;
  left: 22px;
  top: 20px;
  color: rgba(255,255,255,0.32);
  font-size: 34px;
}

.dpc-expert-quote p {
  color: #ffffff;
  font-size: 15px;
  line-height: 1.7;
  font-weight: 600;
  margin: 0;
}

@media (max-width: 991px) {
  .dpc-experts-title {
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .dpc-experts-title {
    font-size: 29px;
  }

  .dpc-expert-card {
    padding: 22px;
    border-radius: 26px;
  }

  .dpc-expert-top {
    flex-direction: column;
    align-items: flex-start;
  }

  .dpc-expert-img-box {
    width: 100%;
    height: 320px;
  }

  .dpc-expert-info h3 {
    font-size: 23px;
  }

  .dpc-expert-quote {
    padding: 22px;
  }

  .dpc-expert-quote i {
    position: static;
    display: block;
    margin-bottom: 8px;
  }
}
.dpc-healing-approach-section {
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.dpc-healing-approach-section::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  background: rgba(8, 120, 184, 0.06);
  border-radius: 50%;
  top: -180px;
  right: -150px;
}

.dpc-healing-approach-section::after {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(88, 161, 26, 0.08);
  border-radius: 50%;
  bottom: -140px;
  left: -120px;
}

.dpc-healing-content-wrap {
  position: relative;
  z-index: 1;
}

.dpc-healing-mini-title {
  display: inline-block;
  padding: 9px 22px;
  border-radius: 50px;
  background: rgba(2, 76, 145, 0.1);
  color: #024c91;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 18px;
}

.dpc-healing-main-title {
  color: #073b5a;
  font-size: 46px;
  line-height: 1.15;
  font-weight: 850;
  margin-bottom: 20px;
}

.dpc-healing-main-title span {
  color: #58a11a;
  display: block;
}

.dpc-healing-main-desc {
  color: #5f7280;
  font-size: 16px;
  line-height: 1.85;
  margin-bottom: 16px;
}

.dpc-healing-highlight-box {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 24px;
  border-radius: 28px;
  background: linear-gradient(135deg, #E3F2FD, #f7fcff);
  border: 1px solid rgba(8, 120, 184, 0.1);
  margin-top: 28px;
  margin-bottom: 28px;
  box-shadow: 0 18px 45px rgba(7, 59, 90, 0.08);
}

.dpc-healing-highlight-icon {
  width: 70px;
  height: 70px;
  border-radius: 22px;
  background: linear-gradient(135deg, #024c91, #0878b8);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 30px;
  flex-shrink: 0;
  box-shadow: 0 14px 30px rgba(2, 76, 145, 0.2);
}

.dpc-healing-highlight-box h4 {
  color: #073b5a;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 8px;
}

.dpc-healing-highlight-box p {
  color: #5f7280;
  line-height: 1.75;
  margin: 0;
}

.dpc-healing-feature-card {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px;
  border-radius: 22px;
  background: #ffffff;
  border: 1px solid rgba(8, 120, 184, 0.12);
  box-shadow: 0 12px 30px rgba(7, 59, 90, 0.06);
  transition: all 0.35s ease;
}

.dpc-healing-feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(7, 59, 90, 0.1);
}

.dpc-healing-feature-card i {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: linear-gradient(135deg, #58a11a, #0b8f75);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}

.dpc-healing-feature-card span {
  color: #073b5a;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}

.dpc-healing-bottom-note {
  margin-top: 30px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 20px 22px;
  border-radius: 22px;
  background: linear-gradient(135deg, #024c91, #0878b8);
  box-shadow: 0 18px 40px rgba(2, 76, 145, 0.18);
}

.dpc-healing-bottom-note i {
  color: #ffffff;
  font-size: 26px;
  margin-top: 2px;
}

.dpc-healing-bottom-note p {
  color: #ffffff;
  font-size: 15.5px;
  line-height: 1.8;
  font-weight: 600;
  margin: 0;
}

.dpc-healing-image-area {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dpc-healing-shape-bg {
  position: absolute;
  width: 88%;
  height: 88%;
  background: linear-gradient(135deg, #024c91, #0878b8, #0b8f75);
  border-radius: 38px;
  transform: rotate(6deg);
  box-shadow: 0 28px 75px rgba(2, 76, 145, 0.22);
}

.dpc-healing-main-image {
  position: relative;
  width: 88%;
  border-radius: 36px;
  overflow: hidden;
  border: 8px solid #ffffff;
  box-shadow: 0 25px 70px rgba(7, 59, 90, 0.18);
}

.dpc-healing-main-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.dpc-healing-floating-card {
  position: absolute;
  left: 10px;
  bottom: 55px;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  padding: 18px 20px;
  border-radius: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 290px;
  box-shadow: 0 18px 50px rgba(7, 59, 90, 0.16);
}

.dpc-healing-floating-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: linear-gradient(135deg, #58a11a, #0b8f75);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

.dpc-healing-floating-card h5 {
  color: #073b5a;
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 4px;
}

.dpc-healing-floating-card p {
  color: #5f7280;
  font-size: 13.5px;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 991px) {

  .dpc-healing-main-title {
    font-size: 36px;
  }

  .dpc-healing-image-area {
    min-height: 480px;
  }

  .dpc-healing-main-image img {
    height: 430px;
  }
}

@media (max-width: 575px) {

  .dpc-healing-main-title {
    font-size: 30px;
  }

  .dpc-healing-highlight-box {
    flex-direction: column;
  }

  .dpc-healing-image-area {
    min-height: 400px;
  }

  .dpc-healing-main-image {
    width: 92%;
    border-width: 6px;
  }

  .dpc-healing-main-image img {
    height: 350px;
  }

  .dpc-healing-floating-card {
    left: 0;
    right: 0;
    margin: auto;
    bottom: 20px;
    width: 90%;
  }

  .dpc-healing-feature-card {
    padding: 16px;
  }

  .dpc-healing-bottom-note {
    padding: 18px;
  }
}
.dpc-values-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(227, 242, 253, 0.75), rgba(255, 255, 255, 0.96)),
    repeating-linear-gradient(
      45deg,
      rgba(2, 76, 145, 0.035) 0px,
      rgba(2, 76, 145, 0.035) 1px,
      transparent 1px,
      transparent 18px
    );
}

.dpc-values-section::before {
  content: "";
  position: absolute;
  width: 440px;
  height: 440px;
  background: radial-gradient(circle, rgba(88,161,26,0.18), transparent 65%);
  top: -160px;
  right: -160px;
}

.dpc-values-section::after {
  content: "";
  position: absolute;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(8,120,184,0.16), transparent 65%);
  bottom: -140px;
  left: -150px;
}

.dpc-values-intro {
  position: relative;
  z-index: 1;
  background: linear-gradient(135deg, #024c91, #0878b8, #0b8f75);
  padding: 38px 30px;
  border-radius: 34px;
  box-shadow: 0 28px 75px rgba(7, 59, 90, 0.18);
  overflow: hidden;
}

.dpc-values-intro::before {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  top: -80px;
  right: -70px;
}

.dpc-values-intro::after {
  content: "";
  position: absolute;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  bottom: 25px;
  right: 25px;
}

.dpc-values-label {
  display: inline-block;
  padding: 9px 20px;
  border-radius: 50px;
  background: rgba(255,255,255,0.14);
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.dpc-values-intro h2 {
  position: relative;
  z-index: 1;
  color: #ffffff;
  font-size: 40px;
  line-height: 1.15;
  font-weight: 850;
  margin-bottom: 18px;
}

.dpc-values-intro h2 span {
  display: block;
  color: #E3F2FD;
}

.dpc-values-intro p {
  position: relative;
  z-index: 1;
  color: rgba(255,255,255,0.86);
  font-size: 15.5px;
  line-height: 1.8;
  margin-bottom: 0;
}

.dpc-values-highlight {
  position: relative;
  z-index: 1;
  margin-top: 28px;
  padding: 20px;
  border-radius: 24px;
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.16);
}

.dpc-values-highlight i {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: #ffffff;
  color: #58a11a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 15px;
}

.dpc-values-highlight p {
  color: #ffffff;
  font-weight: 600;
}

.dpc-values-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.dpc-value-item {
  position: relative;
  min-height: 230px;
  padding: 30px 26px;
  border-radius: 28px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(8,120,184,0.12);
  box-shadow: 0 18px 50px rgba(7, 59, 90, 0.08);
  overflow: hidden;
  transition: all 0.35s ease;
}

.dpc-value-item:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: 0 26px 70px rgba(7, 59, 90, 0.14);
}

.dpc-value-item::before {
  content: "";
  position: absolute;
  width: 135px;
  height: 135px;
  border-radius: 50%;
  top: -55px;
  right: -48px;
  opacity: 0.13;
}

.dpc-value-item::after {
  content: "";
  position: absolute;
  width: 0;
  height: 5px;
  left: 0;
  bottom: 0;
  transition: all 0.35s ease;
}

.dpc-value-item:hover::after {
  width: 100%;
}

.dpc-value-number {
  position: absolute;
  right: 20px;
  top: 18px;
  font-size: 46px;
  font-weight: 900;
  line-height: 1;
  opacity: 0.08;
  color: #073b5a;
}

.dpc-value-icon {
  width: 66px;
  height: 66px;
  border-radius: 20px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 27px;
  margin-bottom: 22px;
  box-shadow: 0 14px 32px rgba(7, 59, 90, 0.15);
}

.dpc-value-item h3 {
  color: #073b5a;
  font-size: 21px;
  font-weight: 850;
  margin-bottom: 12px;
}

.dpc-value-item p {
  color: #5f7280;
  font-size: 15px;
  line-height: 1.75;
  margin: 0;
}

.dpc-value-item-one .dpc-value-icon,
.dpc-value-item-one::after {
  background: linear-gradient(135deg, #024c91, #0878b8);
}

.dpc-value-item-one::before {
  background: #024c91;
}

.dpc-value-item-two .dpc-value-icon,
.dpc-value-item-two::after {
  background: linear-gradient(135deg, #58a11a, #0b8f75);
}

.dpc-value-item-two::before {
  background: #58a11a;
}

.dpc-value-item-three .dpc-value-icon,
.dpc-value-item-three::after {
  background: linear-gradient(135deg, #0878b8, #0b8f75);
}

.dpc-value-item-three::before {
  background: #0878b8;
}

.dpc-value-item-four .dpc-value-icon,
.dpc-value-item-four::after {
  background: linear-gradient(135deg, #073b5a, #024c91);
}

.dpc-value-item-four::before {
  background: #073b5a;
}

.dpc-value-item-five .dpc-value-icon,
.dpc-value-item-five::after {
  background: linear-gradient(135deg, #0b8f75, #58a11a);
}

.dpc-value-item-five::before {
  background: #0b8f75;
}

.dpc-value-item-six .dpc-value-icon,
.dpc-value-item-six::after {
  background: linear-gradient(135deg, #58a11a, #0878b8);
}

.dpc-value-item-six::before {
  background: #58a11a;
}

.dpc-values-bottom-line {
  position: relative;
  z-index: 1;
  margin-top: 24px;
  padding: 20px 24px;
  border-radius: 24px;
  background: #ffffff;
  border-left: 6px solid #58a11a;
  box-shadow: 0 18px 45px rgba(7, 59, 90, 0.09);
  display: flex;
  align-items: center;
  gap: 14px;
}

.dpc-values-bottom-line i {
  color: #58a11a;
  font-size: 26px;
  flex-shrink: 0;
}

.dpc-values-bottom-line span {
  color: #073b5a;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
}

@media (max-width: 991px) {
  .dpc-values-intro h2 {
    font-size: 34px;
  }

  .dpc-values-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .dpc-values-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .dpc-values-intro {
    padding: 30px 22px;
    border-radius: 28px;
  }

  .dpc-values-intro h2 {
    font-size: 30px;
  }

  .dpc-value-item {
    padding: 26px 22px;
    border-radius: 24px;
  }

  .dpc-values-bottom-line {
    align-items: flex-start;
  }
}
.dpc-services-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #ffffff 0%, #E3F2FD 58%, #f7fcf8 100%);
}

.dpc-services-section::before {
  content: "";
  position: absolute;
  width: 430px;
  height: 430px;
  background: rgba(2, 76, 145, 0.07);
  border-radius: 50%;
  top: -170px;
  left: -140px;
}

.dpc-services-section::after {
  content: "";
  position: absolute;
  width: 330px;
  height: 330px;
  background: rgba(88, 161, 26, 0.1);
  border-radius: 50%;
  right: -120px;
  bottom: -120px;
}

.dpc-services-heading,
.dpc-services-intro,
.dpc-service-card,
.dpc-services-bottom-box {
  position: relative;
  z-index: 1;
}

.dpc-services-label {
  display: inline-block;
  padding: 9px 22px;
  border-radius: 50px;
  background: rgba(2, 76, 145, 0.1);
  color: #024c91;
  font-size: 14px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 18px;
}

.dpc-services-heading h2 {
  color: #073b5a;
  font-size: 45px;
  line-height: 1.15;
  font-weight: 850;
  margin: 0;
}

.dpc-services-heading h2 span {
  display: block;
  color: #58a11a;
}

.dpc-services-intro {
  background: rgba(255,255,255,0.82);
  border: 1px solid rgba(8,120,184,0.12);
  padding: 26px;
  border-radius: 28px;
  box-shadow: 0 18px 45px rgba(7,59,90,0.08);
}

.dpc-services-intro p {
  color: #5f7280;
  font-size: 15.8px;
  line-height: 1.85;
  margin-bottom: 14px;
}

.dpc-services-intro p:last-child {
  margin-bottom: 0;
}

.dpc-service-card {
  height: 100%;
  padding: 32px 26px;
  border-radius: 30px;
  background: #ffffff;
  border: 1px solid rgba(8, 120, 184, 0.12);
  box-shadow: 0 18px 52px rgba(7,59,90,0.09);
  overflow: hidden;
  transition: all 0.4s ease;
}

.dpc-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 75px rgba(7,59,90,0.15);
}

.dpc-service-card::before {
  content: "";
  position: absolute;
  width: 145px;
  height: 145px;
  border-radius: 50%;
  top: -58px;
  right: -55px;
  opacity: 0.12;
  transition: all 0.35s ease;
}

.dpc-service-card:hover::before {
  transform: scale(1.3);
  opacity: 0.2;
}

.dpc-service-icon {
  width: 76px;
  height: 76px;
  border-radius: 22px;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  margin-bottom: 24px;
  box-shadow: 0 16px 35px rgba(7,59,90,0.16);
}

.dpc-service-card h3 {
  color: #073b5a;
  font-size: 21px;
  line-height: 1.35;
  font-weight: 850;
  margin-bottom: 14px;
}

.dpc-service-card p {
  color: #5f7280;
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 22px;
}

.dpc-service-card span {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 800;
  background: #E3F2FD;
  color: #024c91;
}

.dpc-service-card-one .dpc-service-icon {
  background: linear-gradient(135deg, #024c91, #0878b8);
}

.dpc-service-card-one::before {
  background: #024c91;
}

.dpc-service-card-two .dpc-service-icon {
  background: linear-gradient(135deg, #58a11a, #0b8f75);
}

.dpc-service-card-two::before {
  background: #58a11a;
}

.dpc-service-card-three .dpc-service-icon {
  background: linear-gradient(135deg, #0878b8, #0b8f75);
}

.dpc-service-card-three::before {
  background: #0878b8;
}

.dpc-service-card-four .dpc-service-icon {
  background: linear-gradient(135deg, #073b5a, #024c91);
}

.dpc-service-card-four::before {
  background: #073b5a;
}

.dpc-service-card-five .dpc-service-icon {
  background: linear-gradient(135deg, #0b8f75, #58a11a);
}

.dpc-service-card-five::before {
  background: #0b8f75;
}

.dpc-service-card-six .dpc-service-icon {
  background: linear-gradient(135deg, #58a11a, #0878b8);
}

.dpc-service-card-six::before {
  background: #58a11a;
}

.dpc-services-bottom-box {
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
  padding: 24px 28px;
  border-radius: 28px;
  background: linear-gradient(135deg, #024c91, #0878b8, #0b8f75);
  box-shadow: 0 22px 55px rgba(2,76,145,0.2);
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.dpc-services-bottom-icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: rgba(255,255,255,0.16);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  flex-shrink: 0;
}

.dpc-services-bottom-box p {
  color: #ffffff;
  font-size: 16px;
  line-height: 1.8;
  font-weight: 600;
  margin: 0;
}

@media (max-width: 991px) {
  .dpc-services-heading h2 {
    font-size: 36px;
  }
}

@media (max-width: 575px) {
  .dpc-services-heading h2 {
    font-size: 30px;
  }

  .dpc-services-intro {
    padding: 22px;
    border-radius: 24px;
  }

  .dpc-service-card {
    padding: 28px 22px;
    border-radius: 24px;
  }

  .dpc-service-icon {
    width: 68px;
    height: 68px;
    font-size: 30px;
  }

  .dpc-services-bottom-box {
    flex-direction: column;
    padding: 22px;
    border-radius: 24px;
  }
}
.dpc-therapy-tech-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 15%, rgba(8, 120, 184, 0.13), transparent 28%),
    radial-gradient(circle at 88% 85%, rgba(88, 161, 26, 0.15), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #E3F2FD 50%, #f7fcf8 100%);
}

.dpc-therapy-tech-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(2, 76, 145, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(2, 76, 145, 0.035) 1px, transparent 1px);
  background-size: 42px 42px;
}

.dpc-therapy-tech-section .container {
  position: relative;
  z-index: 1;
}

.dpc-therapy-tech-label {
  display: inline-block;
  padding: 9px 22px;
  border-radius: 50px;
  background: rgba(2, 76, 145, 0.1);
  color: #024c91;
  font-size: 14px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 18px;
}

.dpc-therapy-tech-title {
  color: #073b5a;
  font-size: 44px;
  line-height: 1.15;
  font-weight: 850;
  margin-bottom: 18px;
}

.dpc-therapy-tech-title span {
  display: block;
  color: #58a11a;
}

.dpc-therapy-tech-desc {
  color: #5f7280;
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
}

.dpc-therapy-tech-card {
  position: relative;
  height: 100%;
  padding: 30px 26px;
  border-radius: 28px;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(8,120,184,0.12);
  box-shadow: 0 18px 50px rgba(7, 59, 90, 0.09);
  overflow: hidden;
  transition: all 0.35s ease;
}

.dpc-therapy-tech-card::before {
  content: "";
  position: absolute;
  width: 145px;
  height: 145px;
  right: -58px;
  top: -58px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(2,76,145,0.18), rgba(88,161,26,0.16));
  transition: all 0.35s ease;
}

.dpc-therapy-tech-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 70px rgba(7, 59, 90, 0.15);
}

.dpc-therapy-tech-card:hover::before {
  transform: scale(1.25);
}

.dpc-therapy-tech-icon {
  position: relative;
  width: 70px;
  height: 70px;
  border-radius: 22px;
  background: linear-gradient(135deg, #024c91, #0878b8);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  margin-bottom: 22px;
  box-shadow: 0 15px 35px rgba(2, 76, 145, 0.2);
}

.dpc-therapy-tech-card:nth-child(2n) .dpc-therapy-tech-icon {
  background: linear-gradient(135deg, #58a11a, #0b8f75);
}

.dpc-therapy-tech-card:nth-child(3n) .dpc-therapy-tech-icon {
  background: linear-gradient(135deg, #073b5a, #0878b8);
}

.dpc-therapy-tech-card h3 {
  color: #073b5a;
  font-size: 21px;
  line-height: 1.35;
  font-weight: 850;
  margin-bottom: 12px;
}

.dpc-therapy-tech-card p {
  color: #5f7280;
  font-size: 15px;
  line-height: 1.75;
  margin: 0;
}

.dpc-therapy-tech-bottom {
  margin-top: 42px;
  padding: 30px;
  border-radius: 32px;
  background: linear-gradient(135deg, #024c91, #0878b8, #0b8f75);
  box-shadow: 0 25px 70px rgba(2, 76, 145, 0.2);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: center;
}

.dpc-therapy-tech-bottom-content span {
  display: inline-block;
  color: #E3F2FD;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 10px;
}

.dpc-therapy-tech-bottom-content h3 {
  color: #ffffff;
  font-size: 30px;
  line-height: 1.25;
  font-weight: 850;
  margin: 0;
}

.dpc-therapy-tech-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.dpc-therapy-tech-points div {
  background: rgba(255,255,255,0.13);
  border: 1px solid rgba(255,255,255,0.16);
  color: #ffffff;
  padding: 12px 15px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
}

.dpc-therapy-tech-points i {
  color: #E3F2FD;
  margin-right: 6px;
}

@media (max-width: 991px) {
  .dpc-therapy-tech-title {
    font-size: 36px;
  }

  .dpc-therapy-tech-bottom {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .dpc-therapy-tech-title {
    font-size: 29px;
  }

  .dpc-therapy-tech-card {
    padding: 26px 22px;
    border-radius: 24px;
  }

  .dpc-therapy-tech-bottom {
    padding: 24px 20px;
    border-radius: 26px;
  }

  .dpc-therapy-tech-bottom-content h3 {
    font-size: 24px;
  }
}
.dpc-process-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 10%, rgba(88, 161, 26, 0.13), transparent 28%),
    radial-gradient(circle at 90% 80%, rgba(8, 120, 184, 0.14), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #E3F2FD 55%, #f8fff7 100%);
}

.dpc-process-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(2, 76, 145, 0.12) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: 0.35;
}

.dpc-process-section .container {
  position: relative;
  z-index: 1;
}

.dpc-process-label {
  display: inline-block;
  padding: 9px 22px;
  border-radius: 50px;
  background: rgba(2, 76, 145, 0.1);
  color: #024c91;
  font-size: 14px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 18px;
}

.dpc-process-title {
  color: #073b5a;
  font-size: 44px;
  line-height: 1.15;
  font-weight: 850;
  margin-bottom: 18px;
}

.dpc-process-title span {
  display: block;
  color: #58a11a;
}

.dpc-process-desc {
  color: #5f7280;
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
}

.dpc-process-roadmap {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.dpc-process-roadmap::before {
  content: "";
  position: absolute;
  left: 8%;
  right: 8%;
  top: 49%;
  height: 4px;
  background: linear-gradient(90deg, #024c91, #58a11a, #0878b8, #0b8f75);
  border-radius: 50px;
  opacity: 0.22;
}

.dpc-process-item {
  position: relative;
  min-height: 300px;
  padding: 34px 26px;
  border-radius: 30px;
  background: rgba(255,255,255,0.95);
  border: 1px solid rgba(8,120,184,0.12);
  box-shadow: 0 20px 55px rgba(7, 59, 90, 0.09);
  overflow: hidden;
  transition: all 0.4s ease;
}

.dpc-process-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 75px rgba(7, 59, 90, 0.15);
}

.dpc-process-item::before {
  content: "";
  position: absolute;
  width: 155px;
  height: 155px;
  border-radius: 50%;
  right: -65px;
  top: -65px;
  opacity: 0.16;
  transition: all 0.4s ease;
}

.dpc-process-item:hover::before {
  transform: scale(1.3);
}

.dpc-process-number {
  position: absolute;
  right: 22px;
  top: 18px;
  font-size: 54px;
  font-weight: 900;
  line-height: 1;
  color: #073b5a;
  opacity: 0.08;
}

.dpc-process-icon {
  width: 76px;
  height: 76px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 32px;
  margin-bottom: 24px;
  box-shadow: 0 16px 36px rgba(7, 59, 90, 0.16);
}

.dpc-process-content h3 {
  color: #073b5a;
  font-size: 21px;
  line-height: 1.35;
  font-weight: 850;
  margin-bottom: 13px;
}

.dpc-process-content p {
  color: #5f7280;
  font-size: 15px;
  line-height: 1.75;
  margin: 0;
}

.dpc-process-item-one .dpc-process-icon {
  background: linear-gradient(135deg, #024c91, #0878b8);
}

.dpc-process-item-one::before {
  background: #024c91;
}

.dpc-process-item-two .dpc-process-icon {
  background: linear-gradient(135deg, #58a11a, #0b8f75);
}

.dpc-process-item-two::before {
  background: #58a11a;
}

.dpc-process-item-three .dpc-process-icon {
  background: linear-gradient(135deg, #0878b8, #0b8f75);
}

.dpc-process-item-three::before {
  background: #0878b8;
}

.dpc-process-item-four .dpc-process-icon {
  background: linear-gradient(135deg, #073b5a, #024c91);
}

.dpc-process-item-four::before {
  background: #073b5a;
}

.dpc-process-item-five .dpc-process-icon {
  background: linear-gradient(135deg, #0b8f75, #58a11a);
}

.dpc-process-item-five::before {
  background: #0b8f75;
}

.dpc-process-item-six .dpc-process-icon {
  background: linear-gradient(135deg, #58a11a, #0878b8);
}

.dpc-process-item-six::before {
  background: #58a11a;
}

@media (max-width: 991px) {
  .dpc-process-title {
    font-size: 36px;
  }

  .dpc-process-roadmap {
    grid-template-columns: repeat(2, 1fr);
  }

  .dpc-process-roadmap::before {
    display: none;
  }
}

@media (max-width: 575px) {
  .dpc-process-title {
    font-size: 29px;
  }

  .dpc-process-roadmap {
    grid-template-columns: 1fr;
  }


  .dpc-process-item {
    min-height: auto;
    padding: 28px 22px;
    border-radius: 24px;
  }

  .dpc-process-icon {
    width: 68px;
    height: 68px;
    font-size: 29px;
  }
}
.dpc-gallery-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top left, rgba(8,120,184,0.12), transparent 28%),
    radial-gradient(circle at bottom right, rgba(88,161,26,0.13), transparent 30%),
    linear-gradient(135deg, #ffffff 0%, #E3F2FD 55%, #f8fff8 100%);
}

.dpc-gallery-label {
  display: inline-block;
  padding: 9px 22px;
  border-radius: 50px;
  background: rgba(2,76,145,0.1);
  color: #024c91;
  font-size: 14px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 18px;
}

.dpc-gallery-title {
  color: #073b5a;
  font-size: 44px;
  line-height: 1.15;
  font-weight: 850;
  margin-bottom: 18px;
}

.dpc-gallery-title span {
  display: block;
  color: #58a11a;
}

.dpc-gallery-desc {
  color: #5f7280;
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
}

.dpc-gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  cursor: pointer;
  height: 320px;
  box-shadow: 0 22px 60px rgba(7,59,90,0.1);
}

.dpc-gallery-large-item {
  height: 420px;
}

.dpc-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s ease;
}

.dpc-gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(2,76,145,0.65),
    rgba(11,143,117,0.45)
  );
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s ease;
}

.dpc-gallery-item:hover .dpc-gallery-overlay {
  opacity: 1;
}

.dpc-gallery-item:hover img {
  transform: scale(1.08);
}

.dpc-gallery-open-btn {
  width: 74px;
  height: 74px;
  border-radius: 50%;
  border: none;
  background: #ffffff;
  color: #024c91;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 18px 40px rgba(0,0,0,0.2);
  transition: all 0.35s ease;
}

.dpc-gallery-open-btn:hover {
  transform: scale(1.08);
}

/* Lightbox */
.dpc-gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(3, 12, 20, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.35s ease;
}

.dpc-gallery-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.dpc-gallery-lightbox-content {
  width: 85%;
  max-width: 1100px;
}

.dpc-gallery-lightbox-img {
  width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 25px 70px rgba(0,0,0,0.4);
}

.dpc-gallery-close,
.dpc-gallery-prev,
.dpc-gallery-next {
  position: absolute;
  border: none;
  background: rgba(255,255,255,0.12);
  color: #ffffff;
  width: 62px;
  height: 62px;
  border-radius: 50%;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.dpc-gallery-close:hover,
.dpc-gallery-prev:hover,
.dpc-gallery-next:hover {
  background: #ffffff;
  color: #024c91;
}

.dpc-gallery-close {
  top: 28px;
  right: 28px;
}

.dpc-gallery-prev {
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
}

.dpc-gallery-next {
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 991px) {
  .dpc-gallery-title {
    font-size: 36px;
  }

  .dpc-gallery-item {
    height: 280px;
  }

  .dpc-gallery-large-item {
    height: 340px;
  }
}

@media (max-width: 575px) {

  .dpc-gallery-title {
    font-size: 29px;
  }

  .dpc-gallery-item,
  .dpc-gallery-large-item {
    height: 260px;
    border-radius: 24px;
  }

  .dpc-gallery-open-btn {
    width: 62px;
    height: 62px;
    font-size: 24px;
  }

  .dpc-gallery-close,
  .dpc-gallery-prev,
  .dpc-gallery-next {
    width: 52px;
    height: 52px;
    font-size: 22px;
  }

  .dpc-gallery-prev {
    left: 12px;
  }

  .dpc-gallery-next {
    right: 12px;
  }

  .dpc-gallery-close {
    top: 15px;
    right: 15px;
  }

  .dpc-gallery-lightbox-content {
    width: 92%;
  }
}
.dpc-video-gallery-section {
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.dpc-video-gallery-label {
  display: inline-block;
  padding: 9px 22px;
  border-radius: 50px;
  background: rgba(2, 76, 145, 0.1);
  color: #024c91;
  font-size: 14px;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 18px;
}

.dpc-video-gallery-title {
  color: #073b5a;
  font-size: 44px;
  line-height: 1.15;
  font-weight: 850;
  margin-bottom: 18px;
}

.dpc-video-gallery-title span {
  display: block;
  color: #58a11a;
}

.dpc-video-gallery-desc {
  color: #5f7280;
  font-size: 16px;
  line-height: 1.8;
  margin: 0;
}

.dpc-video-gallery-card {
  background: linear-gradient(135deg, #E3F2FD, #ffffff);
  padding: 12px;
  border-radius: 26px;
  border: 1px solid rgba(8, 120, 184, 0.12);
  box-shadow: 0 18px 50px rgba(7, 59, 90, 0.1);
}

.dpc-video-gallery-video {
  width: 100%;
 
  object-fit: cover;
  border-radius: 20px;
  display: block;
  background: #073b5a;
}

@media (max-width: 991px) {
  .dpc-video-gallery-title {
    font-size: 36px;
  }

  .dpc-video-gallery-video {
   
  }
}

@media (max-width: 575px) {
  .dpc-video-gallery-title {
    font-size: 29px;
  }

  .dpc-video-gallery-video {
  
  }
}