/* shivename.html */
    .st3::before {
      content: "";
      position: absolute;
      top: -22px;
      right: 40%;
      z-index: -1;
      display: block;
      border-radius: 59px;
      background: #b1dae7;
      width: 55px;
      height: 55px;
      transition: all 0.3s ease;
    }
    .st2::before {
      content: "";
      position: absolute;
      top: -16px !important;
      z-index: 1;
      right: -7px !important;
      display: block;
      border-radius: 59px;
      background: #b1dae7;
      width: 55px;
      height: 55px;
      transition: all 0.3s ease;
    }

  
    /* From Uiverse.io by gagan-gv */
    .button {
      padding: 15px 20px;
      font-size: 16px;
      background: transparent;
      border: none;
      position: relative;
      color: #f0f0f0;
      z-index: 1;
      width: 62%;
    }
    .button::after,
    .button::before {
      content: "";
      position: absolute;
      bottom: 0;
      right: 0;
      z-index: -99999;
      transition: all 0.4s;
    }
    .button::before {
      transform: translate(0%, 0%);
      width: 100%;
      height: 100%;
      background: #ff9c00;
      border-radius: 10px;
    }
    .button::after {
      transform: translate(10px, 10px);
      width: 35px;
      height: 35px;
      background: #40acb447;
      backdrop-filter: blur(5px);
      border-radius: 50px;
    }
    .button:hover::before {
      transform: translate(5%, 20%);
      width: 110%;
      height: 110%;
    }
    .button:hover::after {
      border-radius: 10px;
      transform: translate(0, 0);
      width: 100%;
      height: 100%;
    }
    .button:active::after {
      transition: 0s;
      transform: translate(0, 5%);
    }

  
    /* From Uiverse.io by andrew-demchenk0 */
    .button2 {
      position: relative;
      width: 150px;
      height: 40px;
      cursor: pointer;
      display: flex;
      align-items: center;
      border: 1px solid #00abb5;
      background-color: #02b6bf;
      overflow: hidden;
      margin-top: 1rem;
      border-radius: 6px;
    }
    .button2,
    .button__icon,
    .button__text {
      transition: all 0.3s;
    }
    .button2 .button__text {
      font-family: IRANSansX !important;
      transform: translateX(36px);
      color: #fff;
      font-weight: 600;
    }
    .button2 .button__icon {
      position: absolute;
      transform: translateX(109px);
      height: 100%;
      width: 39px;
      background-color: #00abb5;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    .button2 .svg {
      width: 20px;
      fill: #fff;
    }
    .button2:hover {
      background: #00abb5;
    }
    .button2:hover .button__text {
      color: transparent;
    }
    .button2:hover .button__icon {
      width: 148px;
      transform: translateX(0);
    }
    .button2:active .button__icon {
      background-color: #146c54;
    }
    .button2:active {
      border: 1px solid #146c54;
    }
    .container {
      margin-top: 2rem !important;
      max-width: 1200px;
      width: 100%;
    }
    .card-content {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }
    .header2 {
      text-align: center;
      margin-bottom: 40px;
      color: white;
    }
    .header2 h2 {
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 10px;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
      color: #234567;
    }
    .header2 p {
      font-size: 1.1rem;
      opacity: 0.9;
      color: #006066;
      margin-top: 2rem;
    }
    .cards {
      display: grid;
      display: flex;
      flex-wrap: wrap;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 15px;
      padding: 20px;
      justify-content: center;
      justify-items: center;
    }
    .card {
      width: 100%;
      height: 100%;
      background: white;
      border-radius: 6px;
      padding: 30px 20px;
      text-align: center;
      cursor: pointer;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
      position: relative;
      overflow: hidden;
      max-width: 339px;
      max-height: 329px;
    }
    .card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 5px;
      background: var(--card-color);
    }
    .card.red {
      --card-color: #00abb5;
    }
    .card.blue {
      --card-color: #3b82f6;
    }
    .card.green {
      --card-color: #22c55e;
    }
    .card-icon {
      width: 80px;
      height: 80px;
      margin: 0 auto 20px;
      background: var(--card-color);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
      font-size: 2rem;
      transition: all 0.3s ease;
    }
    .card-content h3 {
      font-size: 1.3rem;
      font-weight: 600;
      color: #2d3748;
      margin-bottom: 10px;
      line-height: 1.4;
    }
    .card-content p {
      font-size: 0.95rem;
      color: #718096;
      line-height: 1.5;
    }
    .card:hover {
      transform: translateY(-10px) scale(1.02);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }
    .card:hover .card-icon {
      transform: rotateY(180deg);
      background: linear-gradient(135deg, var(--card-color), #3a5b78);
    }
    .cards:hover>.card:not(:hover) {
      filter: blur(4px);
      transform: scale(0.9, 0.9);
    }
    .badge {
      background: var(--card-color);
      color: white;
      padding: 4px 12px;
      border-radius: 20px;
      font-size: 0.8rem;
      font-weight: 500;
      margin-top: 15px;
      display: inline-block;
    }
    @media (max-width: 768px) {
      .cards {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 10px;
      }
      .header2 h2 {
        font-size: 2rem;
      }
      .card {
        padding: 25px 15px;
      }
    }
    .floating-elements {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      overflow: hidden;
    }
    .floating-elements::before,
    .floating-elements::after {
      content: '';
      position: absolute;
      background: rgb(2 182 191 / 50%);
      border-radius: 50%;
      animation: float 6s ease-in-out infinite;
    }
    .floating-elements::before {
      width: 100px;
      height: 100px;
      top: 20%;
      left: 0%;
      animation-delay: 0s;
    }
    .floating-elements::after {
      width: 150px;
      height: 150px;
      top: 60%;
      right: 0%;
      animation-delay: 3s;
    }
    @keyframes float {
      0%,
      100% {
        transform: translateY(0px) rotate(0deg);
      }
      50% {
        transform: translateY(-20px) rotate(180deg);
      }
    }

  
    .st::before {
      content: "";
      position: absolute;
      top: -21px;
      z-index: 1;
      right: 23%;
      display: block;
      border-radius: 59px;
      background: #b1dae7;
      width: 55px;
      height: 55px;
      transition: all 0.3s ease;
    }
    .page {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      background: linear-gradient(to bottom,
          #00acb51f 0%,
          #00abb559 50%,
          #00acb51f 100%) !important;
      height: fit-content !important;
    }

  
  .home-mamad-card {
    direction: rtl;
    text-align: justify;
    background: #e7f7f8;
    padding: 29px;
    border-radius: 16px;
    max-width: 50%;
    height: fit-content;
  }
  .home-mamad-papar {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50%;
    margin-bottom: 4rem;
    position: relative;
  }
  @media (max-width: 991px) {
    .cards {
      display: flex;
      flex-direction: column;
      width: 60%;
    }
    .home-mamad-papar {
      width: 96%;
      margin-bottom: 10rem;
    }
    .home-mamad-card {
      max-width: 77%;
    }
    .container {
      max-width: 100%;
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }
  }
