/* ====== RESET ====== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Rubik", sans-serif;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
  background: #fff;
}

/* ====== WRAPPER ====== */
.success-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  background: #096ead;
  padding-top: 40px;
  padding-bottom: 10px;
  background-size: cover;
  background-position: left;
  /* 🎯 GIF both sides ke background me */
  background-image: url("assets/images/gif/animation1.png");
  background-size: cover;
  background-position: left;
  background-repeat: no-repeat;

}

/* ====== MAIN CONTAINER WITH GIF BACKGROUND ====== */
.success-container {
  width: 100%;
  max-width: 1600px;
  min-height: 500px;
  display: flex;
  overflow: hidden;
  border-radius: 14px;



  /* Optional dark overlay effect */
  position: relative;
}

.success-container::after {
  content: "";
  position: absolute;
  inset: 0;

  z-index: 0;
}

/* ====== LEFT SIDE (EMPTY AREA) ====== */
.success-lefts {
  width: 50%;
  min-height: 500px;
  background: transparent;
  position: relative;
  z-index: 2;
}

/* ====== RIGHT CONTENT ====== */
.success-rights {
  width: 50%;
  padding: 60px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  z-index: 2;
  /* content visible above GIF */
}

.success-contents {
  max-width: 520px;
}

.success-contents h2 {
  font-size: 50px;
  font-weight: 700;
  margin-bottom: 10px;
}

.success-contents h3 {
  font-size: 20px;
  margin-bottom: 18px;
}

.success-contents h3 span {
  font-weight: 600;
}

.success-contents p {
  font-size: 15px;
  color: #e6f4ff;
  margin-bottom: 30px;
}

/* ====== STATS ====== */
.success-statss {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.success-stats {
  background: #fff;
  color: #0088CE;
  border-radius: 10px;
  padding: 10px 14px;
  flex: 1;
  min-width: 120px;

}

.success-stats h4 {
  font-size: 32px;
  font-weight: 700;
}

.success-stats p {
  font-size: 14px;
  color: #000;
}

/* ====== BUTTON ====== */
.success-btns {
  display: inline-block;
  color: #fff;
  border: 2px solid #fff;
  padding: 10px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  transition: .3s;
}

.success-btns:hover {
  background: #fff;
  color: #0088CE;
}

/* ====== MOBILE ====== */
@media (max-width: 768px) {

  .success-container {
    flex-direction: column;
    background-image: none;
    /* Mobile par GIF hatana ho */
    background: #096ead;
  }

  .success-lefts {
    display: none;
  }

  .success-rights {
    width: 100%;
    padding: 8px 20px;
    text-align: center;
  }

  .success-contents h2 {
    font-size: 32px;
  }

  .success-contents h3 {
    font-size: 15px;
  }

  .success-contents p {
    font-size: 14px;
  }

  .success-statss {
    justify-content: center;
  }

  .success-stats {
    min-width: 90px;
    text-align: center;
  }
}