/* Start custom CSS for html, class: .elementor-element-1db799ca *//* CTA Container */
.cta-box{
    display:flex;
    align-items:stretch;
    overflow:hidden;
    border-radius:12px;
    margin:30px 0;
    box-shadow:0 8px 25px rgba(0,0,0,0.08);
}

/* Left Content Section */
.cta-content{
    flex:1;
    padding:22px 28px; /* pehle 32px 36px tha */
    background:linear-gradient(
        135deg,
        rgba(212,175,55,0.75) 0%,
        rgba(212,175,55,0.55) 50%,
        rgba(184,134,11,0.9) 100%
    );
    display:flex;
    flex-direction:column;
    justify-content:center;
}

/* Right Logo Section */
.cta-logo{
    width:380px;
    background:#ffffff;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:18px; /* pehle 30px tha */
}

.cta-logo img{
    width:220px; /* pehle 280px tha */
    max-width:100%;
    height:auto;
    display:block;
}

/* Heading */
.cta-content h4{
    color:#111111;
    font-size:20px; /* pehle 22px tha */
    font-weight:700;
    margin:0 0 8px; /* pehle 12px tha */
    line-height:1.2;
}

/* Description */
.cta-content p{
    color:#2D2D2D;
    font-size:16px; /* pehle 17px tha */
    line-height:1.5;
    margin:0 0 12px; /* pehle 24px tha */
}

/* CTA Link */
.cta-content a{
    color:#0D1B4C !important;
    font-size:18px;
    font-weight:700;
    text-decoration:none;
    display:inline-block;
}

.cta-content a:hover{
    color:#ffffff !important;
}

/* Tablet */
@media (max-width:1024px){

    .cta-logo{
        width:300px;
    }

    .cta-content h4{
        font-size:30px;
    }
}

/* Mobile */
@media (max-width:768px){

    .cta-box{
        flex-direction:column;
    }

    .cta-content{
        text-align:center;
        padding:25px;
    }

    .cta-logo{
        width:100%;
        padding:25px;
    }

    .cta-logo img{
        width:220px;
    }

    .cta-content h4{
        font-size:28px;
    }

    .cta-content p{
        font-size:16px;
    }
}

.cta-box-link{
    display:block;
    text-decoration:none !important;
}

.cta-box-link:hover{
    text-decoration:none !important;
}

.cta-box-link span{
    color:#0D1B4C;
    font-weight:700;
}

.cta-box-link:hover .cta-box{
    transform:translateY(-2px);
    transition:all .3s ease;
}/* End custom CSS */