/*=========================================
        PREMIUM CTA SECTION
=========================================*/

.cta-section{

    position:relative;

    padding:120px 0;

    overflow:hidden;

    background:linear-gradient(135deg,#06142b 0%,#0b2348 45%,#12386d 100%);

}

/* Glow Effect */

.cta-section::before{

    content:"";

    position:absolute;

    width:500px;

    height:500px;

    top:-220px;

    left:-180px;

    border-radius:50%;

    background:rgba(0,183,255,.12);

    filter:blur(120px);

}

.cta-section::after{

    content:"";

    position:absolute;

    width:420px;

    height:420px;

    bottom:-180px;

    right:-150px;

    border-radius:50%;

    background:rgba(13,110,253,.18);

    filter:blur(120px);

}

.cta-wrapper{

    position:relative;

    z-index:2;

    text-align:center;

}

/* Tag */

.cta-tag{

    display:inline-block;

    padding:10px 24px;

    background:rgba(255,255,255,.08);

    border:1px solid rgba(255,255,255,.15);

    border-radius:50px;

    color:#6fd6ff;

    font-size:14px;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:25px;

}

/* Heading */

.cta-wrapper h2{

    font-size:52px;

    color:#fff;

    font-weight:800;

    line-height:1.2;

    margin-bottom:20px;

}

.cta-wrapper h2 span{

    color:#53c7ff;

}

/* Description */

.cta-wrapper p{

    max-width:760px;

    margin:auto;

    color:#d5e4f5;

    font-size:18px;

    line-height:1.9;

}

/*======================
Cards
======================*/

.cta-card{

    display:block;

    text-decoration:none;

    background:rgba(255,255,255,.06);

    border:1px solid rgba(255,255,255,.12);

    backdrop-filter:blur(18px);

    border-radius:28px;

    padding:45px 30px;

    transition:.4s;

    height:100%;

    position:relative;

    overflow:hidden;

}

.cta-card:hover{

    transform:translateY(-10px);

    background:rgba(255,255,255,.10);

    border-color:#3ecbff;

    box-shadow:0 20px 45px rgba(0,183,255,.20);

}

.cta-card::before{

    content:"";

    position:absolute;

    top:0;

    left:0;

    width:100%;

    height:4px;

    background:linear-gradient(90deg,#00b7ff,#0d6efd);

}

/* Icon */

.cta-icon{

    width:80px;

    height:80px;

    margin:auto;

    margin-bottom:25px;

    border-radius:20px;

    display:flex;

    justify-content:center;

    align-items:center;

    background:linear-gradient(135deg,#00b7ff,#0d6efd);

    color:#fff;

    font-size:30px;

    transition:.4s;

}

.cta-card:hover .cta-icon{

    transform:rotateY(180deg);

}

/* Card Text */

.cta-card h4{

    color:#fff;

    font-size:24px;

    font-weight:700;

    margin-bottom:15px;

}

.cta-card span{

    display:block;

    color:#6fd6ff;

    font-size:18px;

    font-weight:600;

    margin-bottom:8px;

}

.cta-card small{

    color:#c7d5e6;

    font-size:14px;

}

/*======================
Button
======================*/

.cta-btn{

    display:inline-flex;

    align-items:center;

    gap:12px;

    padding:18px 42px;

    background:linear-gradient(135deg,#00b7ff,#0d6efd);

    color:#fff;

    font-size:17px;

    font-weight:700;

    text-decoration:none;

    border-radius:60px;

    transition:.35s;

    box-shadow:0 15px 35px rgba(0,183,255,.25);

}

.cta-btn:hover{

    transform:translateY(-5px);

    color:#fff;

    box-shadow:0 20px 45px rgba(0,183,255,.35);

}

/*======================
Responsive
======================*/

@media(max-width:991px){

.cta-section{

padding:90px 0;

}

.cta-wrapper h2{

font-size:40px;

}

.cta-card{

margin-bottom:25px;

}

}

@media(max-width:767px){

.cta-section{

padding:70px 0;

}

.cta-wrapper h2{

font-size:32px;

}

.cta-wrapper p{

font-size:16px;

}

.cta-card{

padding:35px 25px;

}

.cta-icon{

width:70px;

height:70px;

font-size:26px;

}

.cta-card h4{

font-size:22px;

}

.cta-btn{

width:100%;

justify-content:center;

}

}