   /* * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    }

    body {
      background-color: #111;
      color: #fff;
    }
*/
    .success-section {
      background:url(../images/bg_pattern.jpg) center/cover no-repeat;
      padding: 90px 20px;
      text-align: center;
      position: relative;
    }

    .overlay {
     /* background: rgb(0 14 77 / 85%);*/
      padding: 50px 50px;
      border-radius: 12px;
      max-width: 1100px;
      margin: 0 auto;
     /* box-shadow: 0 0 50px rgba(0, 230, 230, 0.2);*/
    }

    .celibration_txt {
      font-size: 50px;
			line-height:60px;
      background: linear-gradient(270deg, #00ffff, #2fff00, #ffb900, #feef00);
      background-size: 800% 800%;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: animatedGradient 6s ease infinite, fadeInUp 1.5s ease forwards;
      margin-bottom: 10px;
			margin-top: -10px;
      opacity: 0;
      animation-delay: 0.5s;
      animation-fill-mode: forwards;
			    font-family: 'FranklinGothic';
					-webkit-text-stroke: 1px #00008b;
    }

    .celibration_txt .neon {
    /*  color: #3EF8FF;
      -webkit-text-fill-color: #ffe400;*/
      /*-webkit-text-stroke: 2px #ffe400;*/
      /*text-shadow: 0 0 1px #0021b0, 0 0 5px #0021b0, 0 0 5px #0021b0, 0 0 5px #0021b0, 0 0 10px #0021b0;*/
      font-weight: 800;
			-webkit-text-stroke: 1px #00008b;
			
			  background: linear-gradient(270deg, #ff02cc, #ff2100, #ff1f8e, #feef00);
      background-size: 800% 800%;
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      animation: animatedGradient 6s ease infinite, fadeInUp 1.5s ease forwards;
      margin-bottom: 10px;
			margin-top: -10px;
      opacity: 0;
      animation-delay: 0.5s;
      animation-fill-mode: forwards;
			    font-family: 'FranklinGothic';
    }

    .into_info_txt {
      font-size: 1.2rem;
      color: #ffffff;
      margin-bottom: 25px;
    }

    .stats {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 30px;
    }

    .stat-item {
      background: rgb(0 0 0 / 31%);
      padding: 10px 10px;
      border-radius: 65px;
          box-shadow: 0 0 15px rgb(0 255 255 / 75%);
      transition: transform 0.3s ease;
    }

    .stat-item:hover {
      transform: translateY(-6px);
      box-shadow: 0 0 25px rgba(0, 230, 230, 0.6);
    }

    .stat-item h3 {
      font-size: 35px;
      color: #3EF8FF;
      margin-bottom: 10px;
    }

    .counter {
      display: inline-block;
      color: #3EF8FF;
     /* text-shadow:
        0 0 5px #3EF8FF,
        0 0 10px #3EF8FF,
        0 0 15px #6FE9F7,
        0 0 20px #A1F3FF;*/
      animation: pop 0.6s ease forwards;
      font-weight: bold;
      transition: color 0.3s ease, text-shadow 0.3s ease;
    }

    /* Hover effect on counter */
    .counter:hover {
      color: #ffe400;
      /*text-shadow:
        0 0 5px #ff6ec4,
        0 0 10px #ff6ec4,
        0 0 15px #ff94d4,
        0 0 20px #ffc4e9;*/
      cursor: default;
    }

    .stat-item p {
      font-size: 1.1rem;
      color: #fff;
      opacity: 0.9;
    }

    @media (max-width: 600px) {
      .celibration_txt {
        font-size: 2rem;
      }

      .stat-item h3 {
        font-size: 2rem;
      }

      .content p {
        font-size: 1rem;
      }
    }

    /* Animations */
    @keyframes animatedGradient {
      0% {
        background-position: 0% 50%;
      }
      50% {
        background-position: 100% 50%;
      }
      100% {
        background-position: 0% 50%;
      }
    }

    @keyframes fadeInUp {
      0% {
        transform: translateY(30px);
        opacity: 0;
      }
      100% {
        transform: translateY(0);
        opacity: 1;
      }
    }

    @keyframes pop {
      0% {
        transform: scale(0.8);
        opacity: 0.5;
      }
      100% {
        transform: scale(1.1);
        opacity: 1;
      }
    }