/* Custom CTA Section */
.new-custom-cta {
  padding: 60px 0;
  direction: rtl;
  font-family: "IBM Plex Sans Arabic", "Tajawal", sans-serif;
}

.custom-cta-wrapper {
  background: linear-gradient(90deg, #0b1622 0%, #152436 100%);
  border-radius: 50px;
  padding: 50px 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Dots pattern on the left */
.custom-cta-wrapper::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 200px;
  height: 150%;
  background-image: radial-gradient(
    rgba(20, 184, 177, 0.3) 2px,
    transparent 2px
  );
  background-size: 20px 20px;
  z-index: 1;
  display: none;
}

/* Diagonal shape decoration */
.custom-cta-wrapper::after {
  content: "";
  position: absolute;
  top: -70px;
  left: 350px;
  width: 320px;
  height: 140%;
  /* border-right: 1px solid rgba(255, 255, 255, 0.2); */
  background-image: url(assets/images/teal4_cta.png);
  transform: rotate(-21deg);
  z-index: 1;
  background-size: 120%;
  background-repeat: no-repeat;
}
html[dir="ltr"] .new-custom-cta {
  direction: ltr;
}
html[dir="ltr"] .custom-cta-text h2 {
  font-size: 2rem;
}
.custom-cta-text {
  position: relative;
  z-index: 2;
}
html[dir="ltr"] .custom-cta-wrapper::after {
  left: 430px;
}
.custom-cta-text h2 {
  color: #ffffff;
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  margin-top: 0;
}

.custom-cta-text h2 span {
  color: #14b8b1;
}

.custom-cta-text p {
  color: #e0e0e0;
  font-size: 1.1rem;
  margin: 0;
}

.custom-cta-buttons {
  display: flex;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.custom-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 24px 10px 16px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  gap: 12px;
}

.custom-btn-white {
  background-color: #ffffff;
  color: #0d1b2a;
}

.custom-btn-white:hover {
  background-color: #f0f0f0;
}

.custom-btn-cyan {
  background-color: #14b8b1;
  color: #ffffff;
}

.custom-btn-cyan:hover {
  background-color: #0fa3a0;
}

.custom-icon-cyan {
  background-color: #14b8b1;
  color: #ffffff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.custom-icon-white {
  background-color: #ffffff;
  color: #14b8b1;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .custom-cta-wrapper {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
    border-radius: 30px;
    gap: 30px;
  }
  .custom-cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  .custom-btn {
    width: 100%;
  }
}
