.elementor-pagination {
    display: flex;
    justify-content: center;
    /*	gap: 10px;*/
    margin-top: 30px;
    margin-bottom: 30px;
}

.elementor-pagination .page-numbers {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    border: 1px solid #00980F;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #00980F;
}

.elementor-pagination .page-numbers:hover {
    background: #00980F;
    color: #fff;
}

.testimonial-slide-wrap span.swiper-pagination-bullet {
    background: transparent;
    width: 15px;
    height: 15px;
    border: 1px solid #000;
    opacity: 1;
}

.testimonial-slide-wrap span.swiper-pagination-bullet.swiper-pagination-bullet-active {
    width: 24px;
    border-radius: 10px;
    background: #00980F;
    border-color: #00980F;
}

/*subham*/
.form-container h3 {
    font-family: Helvetica;
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
    text-align: center;
    margin: 0 0 4px;
}

.form-container p {
    font-family: Helvetica;
    font-size: 16px;
    font-weight: 500;
    line-height: 28px;
    text-align: center;

}

.form-container .top-sec {
    margin-bottom: 30px;
}

/* Form Container Styling */
.wpcf7 form .form-container {
    background-color: #fff;
    /* White background */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.15);
    /* Subtle shadow */
    max-width: 1200px;
    /* Max form width */


}

/* Two-column layout for rows with two input fields */
.wpcf7 .form-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

/* Input fields take 48% width for two columns */
.wpcf7 .form-row .half-width {
    width: 48%;
}

/* Full-width input for comment */
.wpcf7 .full-width {
    width: 100%;
    margin-bottom: 20px;
}

/* Styling input fields */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 select,
.wpcf7 textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #EBEBEB;
    border-radius: 8px;
    font-size: 16px;
    background-color: #EBEBEB;
    /* box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1); */
    transition: border-color 0.3s ease-in-out;
}

.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
    border-color: #007bff;
    /* Blue border focus */
    outline: none;
}

/* Submit Button */
.wpcf7 input[type="submit"] {
    background-color: #00980F;
    /* Blue background */
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
    display: block;
    margin: 0 auto;
	margin-top: 25px;
    /* Center the button */
}

.wpcf7 input[type="submit"]:hover {
    background-color: #00980G;
    /* Darker blue on hover */
}

/* Adjusting form responsiveness */
@media only screen and (max-width: 768px) {
    .wpcf7 .form-row {
        flex-direction: column;
    }

    .wpcf7 .form-row .half-width {
        width: 100%;
        margin-bottom: 15px;
        /* Add spacing for mobile */
    }
    .wpcf7 .form-row {
        margin-bottom: 0;
    }
    .form-container p {
        margin: 0;
    }
}


/* Form Container Styling */
.wpcf7 form .form-container-1 {
    background-color: #fff;
    /* White background */
    padding: 60px;
    border-radius: 10px;
    box-shadow: 0px 5px 20px rgba(0, 0, 0, 0.15);
    /* Subtle shadow */
    max-width: 1310px;
    /* height: 652px; */

}

/* Two-column layout for rows with two input fields */
.wpcf7 .form-container-1 .form-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

/* Input fields take 48% width for two columns */
.wpcf7 .form-container-1 .form-row .half-width {
    width: 48%;
}

/* Full-width input for comment */
.wpcf7 .form-container-1 .full-width {
    width: 100%;
    margin-bottom: 20px;
}

/* Styling input fields */
.wpcf7 .form-container-1 input[type="text"],
.wpcf7 .form-container-1 input[type="email"],
.wpcf7 .form-container-1 input[type="tel"],
.wpcf7 .form-container-1 textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    background-color: #f9f9f9;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: border-color 0.3s ease-in-out;
}

.wpcf7 .form-container-1 input[type="text"]:focus,
.wpcf7 .form-container-1 input[type="email"]:focus,
.wpcf7 .form-container-1 input[type="tel"]:focus,
.wpcf7 .form-container-1 select:focus,
.wpcf7 .form-container-1 textarea:focus {
    border-color: #007bff;
    /* Blue border focus */
    outline: none;
}

/* Submit Button */
.wpcf7 .form-container-1 input[type="submit"] {
    background-color: #00980F;
    color: #fff;
    padding: 16px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    text-transform: uppercase;
    transition: background-color 0.3s ease;
    display: flex;
    justify-content: end;
    align-items: end;
}

.wpcf7 .form-container-1 input[type="submit"]:hover {
    background-color: #00980G;
    /* Darker green on hover */
}

/* Adjusting form responsiveness */
@media only screen and (max-width: 768px) {
    .wpcf7 .form-container-1 .form-row {
        flex-direction: column;
    }

    .wpcf7 .form-container-1 .form-row .half-width {
        width: 100%;
        margin-bottom: 15px;
        /* Add spacing for mobile */
    }
}

/* Start Ayan CSS */


.banner-sec .home-banner-holder {
    width: calc(100% - 660px);
}

.banner-sec .img-block {
    position: relative;
    width: 660px;
    max-width: 100%;
}
.banner-sec .form-block{
    width: 660px; 
}

.banner-sec .img-block img {
    border-radius: 16px;
    position: relative;
    z-index: 1;
}

.banner-sec .img-block::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: #FFFFFF;
    opacity: 30%;
    position: absolute;
    top: 37px;
    left: 37px;
    border-radius: 16px;
}

.main-resource-wrap .e-con-inner {
    padding-bottom: 160px !important;
}

.main-resource-wrap .img-block {
    max-height: 549px;
    overflow: hidden;
    border-radius: 16px;
}

.main-resource-wrap .img-block img {
    width: 100%;
}

.main-resource-wrap .resource-box-section-wrap {
    box-shadow: 0px 4px 9px 0px #00000017;
    background: #FFFFFF;
    border-radius: 5px;
    width: calc(100% - 100px);
    padding: 22px 37px 22px 37px;
    position: absolute;
    top: 460px;
    right: 40px;
    max-width: 519px;
}

.main-resource-wrap .resource-box-section-wrap .date-fld {
    position: absolute;
    top: 0;
    right: 0;
}

.main-resource-wrap .resource-box-section-wrap .date-fld .elementor-widget-container {
    background-color: transparent !important;
}

.main-resource-wrap .resource-box-section-wrap .date-fld a {
    background-color: #2F3930;
    padding: 4px 16px;
}
.newsletter-form .tnp-field-email{
    margin-bottom: 0 !important;
}
.newsletter-form .tnp-field-email label{
    display: none;
}
.newsletter-form .tnp-field-email input{
    height: 86px;
    border-radius: 16px;
    padding: 24px 204px 24px 24px !important;
    outline: 0;
}
.newsletter-form  .tnp-subscription{
    margin: 0 !important;
    margin-left: auto !important;
}
.newsletter-form  .tnp-subscription form{
    position: relative;
}
.newsletter-form  .tnp-subscription .tnp-field-button{
    position: absolute;
    width: 173px;
    right: 20px;
    top: 12px;
    height: 62px;
    margin: 0;
}
.newsletter-form  .tnp-subscription .tnp-field-button input{
    width: 100%;
    height: 62px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #00980F;
    border-radius: 8px;
}
.useful-link-ul li{
    width: 50%;
}
.home-business-loan-sec .elementor-heading-title{
    color: #fff !important;
}
.home-business-loan-sec .decp .elementor-widget-container{
    color: #A5B8BE !important;
}

@media only screen and (max-width: 1500px) {
    .custom-container{
        padding-left: 50px !important;
        padding-right: 50px !important;
    }
}
@media only screen and (max-width: 1439px){
    .banner-sec .home-banner-holder {
        width: calc(100% - 600px);
    }    
    .banner-sec .form-block,
    .banner-sec .img-block {
        width: 600px;
    }
    .banner-sec .img-block::after {
        top: 19px;
        left: 19px;
    }
}
@media only screen and (max-width: 1365px) {
    .main-resource-wrap .resource-box-section-wrap {
        top: 300px;
        max-width: 550px;
    }
}
@media only screen and (max-width: 1279px) {
    .custom-container{
        padding-left: 24px !important;
        padding-right: 24px !important;
    }
    .banner-sec .home-banner-holder {
        width: calc(100% - 550px);
    }    
    .banner-sec .form-block,
    .banner-sec .img-block {
        width: 550px;
    }
    .banner-sec .home-banner-holder h2{
        font-size: 40px !important;
        line-height: 52px !important;
    }
    .banner-sec .img-block::after {
        top: 9px;
        left: 9px;
    }
}
header .elementor-widget-theme-site-logo .elementor-widget-container img.mobile-logo{
    display: none;
}
@media only screen and (max-width: 1024px) {
    header > .elementor-element .e-con-inner{
        gap: 10px;
    }
    header .elementor-widget-theme-site-logo .elementor-widget-container{
        display: flex;
        align-items: center;
    }
    header .elementor-widget-theme-site-logo .elementor-widget-container img,
    header .elementor-widget-theme-site-logo .elementor-widget-container img.mobile-logo{
        display: block;
        width: auto !important;
        height: 52px !important;
        object-fit: inherit !important;
    }
    header .elementor-widget-theme-site-logo .elementor-widget-container img:not(.mobile-logo){
        display: none;
    }
}
@media only screen and (max-width: 1023px) {
    .banner-sec .e-con-inner{
        flex-wrap: wrap !important;
    }
    .banner-sec .home-banner-holder {
        width: calc(100% - 0px);
    }    
    .banner-sec .form-block,
    .banner-sec .img-block {
        width: 100%;
        margin-top: 24px;
    }
    .banner-sec .home-banner-holder h2{
        font-size: 34px !important;
        line-height: 50px !important;
    }
    .banner-sec .img-block::after{
        display: none;
    }
    .main-resource-wrap .resource-box-section-wrap {
        width: calc(100% - 0px);
        top: 0;
        right: 0;
        max-width: 100%;
        position: relative;
        padding: 22px 22px 22px 22px;
    }
    .main-resource-wrap .e-con-inner {
        padding-bottom: 0px !important;
    }
    .newsletter-form .tnp-subscription {
        margin-left: 0 !important;
        max-width: 100%;
    }
}
@media only screen and (max-width: 767px) {
    .newsletter-form .tnp-subscription .tnp-field-button {
        width: 110px;
    }
    .newsletter-form .tnp-field-email input {
        padding: 24px 144px 24px 24px !important;
    }
    
    .banner-sec .home-banner-holder h2 {
        font-size: 30px !important;
        line-height: 42px !important;
    }
    
    .wpcf7 form .form-container-1 {
        padding: 20px;
    }
}

.newletter-block-wrap {
    padding: 80px 15px;
    color: #00980F;
    text-align: center;
    margin: 0;
    font-size: 20px;
    font-weight: 400;
}

.home-banner-form .wpcf7-response-output{
	color:#fff;
}



@media(max-width: 767px){
    .mobile-call{
        position: fixed !important;
        bottom: 8px;
        right: 8px;
        display: flex !important;
        width: 48px !important;
        height: 48px !important;
        box-shadow: 0px 1px 10px 1px rgba(0, 0, 0, 0.2);
    }
    .mobile-call .elementor-icon-box-icon{
        margin: 0;
    }
    .mobile-call .elementor-icon-box-icon .elementor-icon{
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0 4px 3px 0;
    }
    .mobile-call .elementor-icon-box-content{
        display: none;
    }
}
/* End Ayan CSS */

.captcha-wrrapper .wpcf7-form-control-wrap{
    margin: 20px auto 0px;
    width: 304px;
    display: block;
}