.partner-section {
  background: linear-gradient(to right, #f5fbff 0%, #ffffff 100%);
  position: relative;
  padding: 100px 20px;
  overflow: hidden;
  margin-top: 70px;
}

.partner-container {
  max-width: 1000px;
  margin: auto;
  text-align: center;
  z-index: 2;
  position: relative;
  animation: fadeUp 1s ease-out forwards;
  opacity: 0;
  transform: translateY(40px);
}

.partner-heading {
  font-size: 45px;
  font-weight: 700;
  color: #111;
  margin-bottom: 20px;
}

.partner-heading .highlight {
  background: linear-gradient(95.76deg, #03D382 -0.95%, #0171E7 116.32%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.partner-description {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  max-width: 800px;
  margin: 0 auto 40px;
}

.partner-image-container {
  display: flex;
  justify-content: center;
}

.partner-image-container img {
  width: 100%;
  /* max-width: 600px; */
  border-radius: 20px;
  /* box-shadow: 0 10px 30px rgba(0,0,0,0.1); */
}

/* Fade-up animation */
@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Particle dots */
.partner-particles::before,
.partner-particles::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  z-index: 1;
}

.partner-particles::before {
  background: linear-gradient(135deg, #00c853, #00e5ff);
  top: 40px;
  left: 60px;
}

.partner-particles::after {
  background: linear-gradient(135deg, #00c853, #00e5ff);
  bottom: 50px;
  right: 80px;
}

/* Additional floating particles */
.partner-section::before,
.partner-section::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1e88e5, #42a5f5);
  animation: float 6s ease-in-out infinite;
}

.partner-section::before {
  top: 30%;
  left: 10%;
}

.partner-section::after {
  bottom: 20%;
  right: 10%;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

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


  .partner-section {
    background: linear-gradient(to right, #f5fbff 0%, #ffffff 100%);
    position: relative;
    padding: 100px 20px;
    overflow: hidden;
    margin-top: 40px;
  }

  .partner-heading {
    font-size: 28px;
  }

  .partner-description {
    font-size: 14px;
  }
}




.info-section {
  background: linear-gradient(to right, #eef9fc, #f5f7fc);
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.info-wrapper {
  display: flex;
  background: #fff;
  border-radius: 30px;
  padding: 40px;
  max-width: 1200px;
  width: 100%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  gap: 40px;
  align-items: center;
  position: relative;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s ease-out forwards;
}

.info-image {
  position: relative;
  flex: 1;
  min-width: 250px;
}

.info-image img {
  max-width: 100%;
  height: auto;
  display: block;
}

.particle {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: radial-gradient(circle, #1e88e5, #42a5f5);
  animation: float 5s infinite ease-in-out;
}

.particle1 {
  top: 10%;
  left: 20%;
}

.particle2 {
  bottom: 10%;
  right: 15%;
}

.particle3 {
  top: 60%;
  left: 5%;
}

.info-text {
  flex: 2;
}

.info-text h3 {
  font-size: 26px;
  color: #0070f3;
  margin-bottom: 15px;
}

.info-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

/* Responsive */
@media (max-width: 768px) {
  .info-wrapper {
    flex-direction: column;
    text-align: left;
  }

  .info-text {
    padding-top: 20px;
  }
}




.value-section {
  background: linear-gradient(to right, #eef9fc, #f5f7fc);
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.value-wrapper {
  display: flex;
  background: #fff;
  border-radius: 30px;
  padding: 40px;
  max-width: 1200px;
  width: 100%;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  gap: 40px;
  align-items: center;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s ease-out forwards;
}

.value-image {
  position: relative;
  flex: 1;
  min-width: 250px;
}

.value-image img {
  max-width: 100%;
  height: auto;
  display: block;
}

.yellow-dot {
  position: absolute;
  width: 20px;
  height: 20px;
  background: radial-gradient(circle, #ffeb3b, #fbc02d);
  border-radius: 50%;
  animation: float 6s infinite ease-in-out;
}

.dot1 {
  top: 10%;
  left: 10%;
}
.dot2 {
  bottom: 20%;
  right: 5%;
}
.dot3 {
  top: 60%;
  right: 15%;
}

.value-text {
  flex: 2;
}

.value-text h3 {
  font-size: 24px;
  color: #0070f3;
  margin-bottom: 15px;
}

.value-text p {
  font-size: 16px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 15px;
}

.value-text ul {
  padding-left: 20px;
  color: #000;
  list-style: none;
}

.value-text ul li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 20px;
  font-size: 15px;
}

.value-text ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #0070f3;
  font-size: 20px;
  line-height: 22px;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

@media (max-width: 768px) {
  .value-wrapper {
    flex-direction: column;
    text-align: left;
  }

  .value-text {
    padding-top: 20px;
  }

  .value-text ul {
    padding-left: 0;
  }

  .value-text ul li {
    padding-left: 0;
  }

  .value-text ul li::before {
    display: none;
  }
}
