/* ============================================
   CTA BANNER CSS - Knowledge Wave India
   Colors: #0A210F #14591D #99AA38 #392F5A #F6F8FF
   ============================================ */

.cta-banner {
    padding: 60px 0;
    background: #F6F8FF;
}

.cta-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

/* ========== CTA CARD ========== */
.cta-card {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 20px;
    padding: 30px;
    gap: 25px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.cta-card::before {
    content: '';
    position: absolute;
    top: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    background: #99AA38;
    border-radius: 50%;
    opacity: 0.05;
    transition: all 0.4s ease;
}

.cta-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(153, 170, 56, 0.15);
}

.cta-card:hover::before {
    transform: scale(3);
    opacity: 0.08;
}

/* ========== CTA IMAGE ========== */
.cta-image {
    flex-shrink: 0;
    width: 120px;
    height: 120px;
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.cta-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ========== CTA CONTENT ========== */
.cta-content {
    position: relative;
    z-index: 1;
    flex: 1;
}

.cta-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #0A210F;
    margin: 0 0 8px;
}

.cta-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin: 0 0 20px;
}

/* ========== APPLY BUTTON ========== */
.btn-apply {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #99AA38;
    color: #0A210F;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.btn-apply:hover {
    background: transparent;
    color: #99AA38;
    border-color: #99AA38;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(153, 170, 56, 0.3);
}

.btn-apply svg {
    transition: transform 0.3s ease;
}

.btn-apply:hover svg {
    transform: translateX(4px);
}

/* ========== RESPONSIVE ========== */

@media (max-width: 991.98px) {
    .cta-banner {
        padding: 40px 0;
    }
    
    .cta-card {
        padding: 25px;
        gap: 20px;
    }
    
    .cta-image {
        width: 100px;
        height: 100px;
    }
    
    .cta-content h3 {
        font-size: 20px;
    }
}

@media (max-width: 767.98px) {
    .cta-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-banner {
        padding: 30px 0;
    }
    
    .cta-card {
        padding: 20px;
        gap: 15px;
    }
    
    .cta-image {
        width: 90px;
        height: 90px;
    }
    
    .cta-content h3 {
        font-size: 18px;
    }
    
    .cta-content p {
        font-size: 13px;
    }
}

@media (max-width: 575.98px) {
    .cta-card {
        flex-direction: column;
        text-align: center;
        padding: 25px 20px;
    }
    
    .cta-image {
        width: 100px;
        height: 100px;
        margin: 0 auto;
    }
    
    .cta-content p {
        margin-bottom: 15px;
    }
}