/* ========== CURVED CTA SECTION ========== */
.cta-section {
  margin-bottom: 20px;
  padding: 0 25px;
}

.cta-bg {
  background: url("../images/cows-new.jpg") center center / cover no-repeat;
  width: 82%;
  height: 260px;   /* adjust as needed */
  position: relative;
  margin-left: 110px;
}

.cta-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.cta-content {
  position: absolute;
  top: 20%;
  left: 120px;
  transform: translateY(-50%);
  max-width: 380px;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 12px;
}

.cta-icon {
  width: 60px;
  height: 60px;
  background: #007BFF;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  position: relative;
  top: -10px;
}

.cta-icon img {
  width: 35px;   /* make image smaller */
  height: 35px;
  object-fit: contain;
  filter: brightness(0) invert(1); /* makes it white */
}

.cta-content h3 {
  font-size: 24px;
  margin-bottom: 18px;
  font-weight: 700;
}

.cta-btn {
  position: absolute;
  top: 10px;   /* distance from top */
  right: -500px;
  background: #ffffff;
  color: #000000;
  padding: 6px 15px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  transition: 0.3s ease;
  z-index: 3;
}

.cta-btn img{
  padding-left: 5px;
}

.cta-btn:hover {
  background: #0056b3;
}