/*!**********************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/next/dist/build/webpack/loaders/css-loader/src/index.js??ruleSet[1].rules[13].oneOf[12].use[2]!./node_modules/next/dist/build/webpack/loaders/postcss-loader/src/index.js??ruleSet[1].rules[13].oneOf[12].use[3]!./components/innerpages/services/s.css ***!
  \**********************************************************************************************************************************************************************************************************************************************************************************/
.cta-section {
    padding: 20px;
    background: linear-gradient(135deg, #f0f4ff, rgb(8, 23, 108));
  }
  
  .cta-card {
    position: relative;
    overflow: hidden;
    padding: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
  }
  
  .cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 10%, transparent 50%);
    transform: rotate(30deg);
    animation: rotate-gradient 10s linear infinite;
    pointer-events: none; /* Add this line to allow clicks to pass through */
  }
  
  .cta-button {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    margin-left:5px;
    margin-right: 5px;
    cursor: pointer;
    text-decoration: none; /* Remove underline from links */
    transition: all 0.3s ease;
  }
  
  .cta-button:hover {
    text-decoration: none; /* Ensure no underline on hover */
    transform: scale(1.1); /* Scale effect on hover */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Shadow effect on hover */
  }
  
  @keyframes rotate-gradient {
    0% {
      transform: rotate(0deg);
    }
    100% {
      transform: rotate(360deg);
    }
  }
