  .dsc-section {
      background: linear-gradient(135deg, #eef9ff, #f5fcff);
      position: relative;
      overflow: hidden;
  }

  .dsc-section::before {
      content: "";
      position: absolute;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(6, 163, 218, 0.18), transparent 70%);
      top: -100px;
      right: -100px;
      z-index: 0;
  }

  .dsc-card {
      background: rgba(255, 255, 255, 0.75);
      backdrop-filter: blur(14px);
      border-radius: 24px;
      box-shadow: 0 25px 70px rgba(0, 0, 0, 0.08);
      transition: all 0.4s ease;
      position: relative;
      z-index: 1;
      border: 1px solid rgba(6, 163, 218, 0.15);
  }

  .dsc-card:hover {
      transform: translateY(-12px) scale(1.01);
      box-shadow: 0 35px 90px rgba(6, 163, 218, 0.25);
  }

  .dsc-card::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0;
      width: 7px;
      height: 100%;
      background: linear-gradient(180deg, #06A3DA, #058bb8);
      border-radius: 24px 0 0 24px;
  }

  .dsc-card h5,
  .dsc-card h4 {
      font-weight: 700;
      color: #1d2b4f;
  }

  .dsc-card p {
      color: #555;
      line-height: 1.7;
      text-align: justify;
  }

  .icon-box {
      width: 55px;
      height: 55px;
      background: linear-gradient(135deg, #06A3DA, #058bb8);
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      box-shadow: 0 10px 25px rgba(6, 163, 218, 0.35);
  }

  .icon-circle {
      width: 50px;
      height: 50px;
      background: linear-gradient(135deg, #06A3DA, #058bb8);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      box-shadow: 0 10px 25px rgba(6, 163, 218, 0.35);
  }

  .dsc-list {
      list-style: none;
      padding-left: 0;
  }

  .dsc-list li {
      position: relative;
      padding-left: 32px;
      margin-bottom: 12px;
      font-weight: 500;
  }

  .dsc-list li::before {
      content: "✔";
      position: absolute;
      left: 0;
      color: #06A3DA;
      font-size: 18px;
  }

  .cta-box {
      background: linear-gradient(135deg, #e6f7ff, #d6f0ff);
      border-radius: 18px;
      padding: 30px;
      border: 1px solid #bfe9f7;
      box-shadow: inset 0 0 20px rgba(6, 163, 218, 0.12);
  }

  .cta-box .btn {
      background: linear-gradient(135deg, #06A3DA, #058bb8);
      border: none;
      font-weight: 600;
      transition: 0.3s ease;
      color: #fff;
  }

  .cta-box .btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 10px 25px rgba(6, 163, 218, 0.45);
  }

  .image-card {
      border-radius: 24px;
      overflow: hidden;
      box-shadow: 0 25px 70px rgba(0, 0, 0, 0.1);
      position: relative;
  }

  .image-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.15));
  }

  .image-card img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: 0.7s ease;
  }

  .image-card:hover img {
      transform: scale(1.1);
  }