/* ===============================
   HORIZONTAL CTA SECTION
==================================*/

.cta-section {
    padding: 40px 0;
    background: #f5f7fa;
}

.cta-wrapper{
width:100%;
max-width:1200px;
margin:auto;
background:linear-gradient(135deg,#1e9aa7,#178e9b);
border-radius:20px;
padding:40px 60px;
display:flex;
justify-content:space-between;
align-items:center;
position:relative;
overflow:hidden;
color:#fff;
}

.cta-left h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 15px;
}

.cta-left p {
    font-size: 16px;
    opacity: 0.9;
}

.cta-btn {
    padding: 14px 35px;
    border: 2px solid #ffc107;
    color: #ffc107;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
}

.cta-btn:hover {
    background: #ffc107;
    color: #000;
}

/* Decorative circles */

.circle {
    position: absolute;
    background: rgba(255,255,255,0.15);
    border-radius: 50%;
}

.circle-1 {
    width: 220px;
    height: 220px;
    left: 50px;
    top: 20px;
}

.circle-2 {
    width: 40px;
    height: 40px;
    top: 30px;
    left: 50%;
}

.circle-3 {
    width: 60px;
    height: 60px;
    bottom: 30px;
    right: 25%;
}

/* Responsive */

@media (max-width: 992px) {
    .cta-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }
}
@media(max-width:768px){

.cta-content{
flex-direction:column;
align-items:flex-start;
}

.cta-text h3{
font-size:22px;
}

.cta-btn{
margin-top:10px;
}

}