
/* ================= CTA SECTION ================= */
.medsoft-cta-section{
  width:100%;
  padding:65px 5%;
  display:flex;
  justify-content:center;
  background:#f3f7ff;
  margin-top: 150px;
}




/* ================= CTA SECTION ================= */
.medsoft-cta-sections{
  width:100%;
  padding:60px 5%;
  display:flex;
  justify-content:center;
  /* background:#f0f0f0; */
}




/* ================= CTA BOX ================= */
.medsoft-cta-box{
  width:100%;
  max-width:1500px;
  margin:0 auto; 
  /* margin-left: 30px; */
  max-width: none;
  background:#ffffff;
  padding:56px 70px;
  border-radius:18px;
  text-align:center;
  box-shadow:0 25px 60px rgba(0,0,0,0.1);
}

/* ================= HEADING ================= */
.medsoft-cta-box h2{
  font-size:34px;
  font-weight:500;
  color:#0d58c1;
  margin-bottom:18px;
}

/* ================= DESCRIPTION ================= */
.medsoft-cta-box p{
  font-size:18px;
  /* line-height:1.6; */
  color:#4b5563;
  max-width:1900px;
  margin:0 auto 12px;
}




/* ================= BUTTON ROW ================= */
.medsoft-cta-buttons{
  width:50%;
  margin:0 auto;
  display:flex;
  gap:18px;
}

/* ================= BUTTON BASE ================= */
.cta-btn{
  flex:1;
  padding:16px 10px;
  border-radius:10px;
  font-size:16px;
  font-weight:500;
  text-decoration:none;
  text-align:center;
  transition:all 0.35s ease;
}







.wave-hand {
  display: inline-block;
  transform-origin: 90% 90%;
  animation: wave 1.5s infinite;
}

@keyframes wave {
  0%   { transform: rotate(0deg); }
  10%  { transform: rotate(14deg); }
  20%  { transform: rotate(-8deg); }
  30%  { transform: rotate(14deg); }
  40%  { transform: rotate(-4deg); }
  50%  { transform: rotate(10deg); }
  60%  { transform: rotate(0deg); }
  100% { transform: rotate(0deg); }
}


/* ================= BUTTON COLORS ================= */
.cta-btn.primary{
  background:#4f7cff;
  color:#ffffff;
}

.cta-btn.secondary{
  background:#6b7280;
  color:#ffffff;
}

.cta-btn.success{
  background:#10b981;
  color:#ffffff;
}

/* ================= HOVER EFFECT ================= */
.cta-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 14px 28px rgba(0,0,0,0.18);
}

/* ================= RESPONSIVE ================= */
@media(max-width:768px){
  .medsoft-cta-box{
    padding:40px 26px;
  }

  .medsoft-cta-box h2{
    font-size:28px;
  }

  .medsoft-cta-buttons{
    flex-direction:column;
    width:100%;
  }
}






































/* ================= CTA SECTION ================= */
.math-cta {
  width: 100%;
  padding: 60px 20px;
  background: #f5f5f5;
 
  /* light outer background */
}
/* 
.math-cta-box {
  max-width: 1290px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 12px;
  padding: 50px 30px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
   background-image: url("../images/resources-section.png");
          background-size: cover;
          background-position: center;
          background-repeat: no-repeat;
          margin-top: -65px;
} */



.math-cta-box {
  max-width: 1290px;
  margin: 0 auto;
  border-radius: 12px;
  padding: 50px 30px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  margin-top: -65px;

  position: relative;
  overflow: hidden;
}



.math-cta-box::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background-image: url("../images/resources-section.png");
  background-size: left;
  background-position: right;
  background-repeat: no-repeat;

  filter: blur(17px);
  transform: scale(1.15);

  z-index: 0;
}


.math-cta-box h2,
.math-cta-box p,
.math-cta-box a {
  position: relative;
  z-index: 2;
}


/* Heading */
.math-cta-box h2 {
  font-size: 38px;
  font-weight: 500;
  color: #111;
  margin-bottom: 14px;
}

.math-cta-box h2 span {
  color: #fdfdfe;
  /* dark red */
  font-weight: 600;
}

/* Description */
.math-cta-box p {
  font-size: 16px;
  color: #ffffff;
  max-width: 760px;
  margin: 0 auto 28px;
  line-height: 1.6;
}

/* Button */
.math-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 34px;
  background: #4f7cff;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
}

.math-cta-btn:hover {
  background: #1b32e3;
  transform: translateY(-2px);
  color: #ffffff;
}

/* ================= RESPONSIVE ================= */
@media (max-width:768px) {
  .math-cta-box {
    padding: 40px 20px;
  }

  .math-cta-box h2 {
    font-size: 28px;
  }

  .math-cta-box p {
    font-size: 15px;
  }
}









