
.bor-rad-20{
    border-radius: 20px;
}


.tab-section-23 {
    background: #f9fbff;
}

.custom-tabs {
    border: none;
    justify-content: center;
}

.custom-tabs .nav-link {
    border: 2px solid #d1c3c340;
    margin: 0 8px;
    padding: 12px 30px;
    border-radius: 30px;
    background: #fff;
    color: #007CFB;
    font-weight: 600;
    transition: 0.3s;
}

.custom-tabs .nav-link.active {
    background: #FFD600;
    color: #000;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.custom-tab-content {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.custom-tab-content h3 {
    color: #181717;
    font-weight: 700;
}

.custom-tab-content ul {
    padding-left: 18px;
}

.custom-tab-content ul li {
    margin-bottom: 8px;
}

.custom-btn {
    background: #007CFB;
    color: #fff;
    padding: 10px 25px;
    border-radius: 30px;
    margin-top: 15px;
    display: inline-block;
}

.custom-btn:hover {
    background: #FFD600;
    color: #000;
}

.tab-img {
    border-radius: 16px;
}

@media(max-width:768px){
    .custom-tab-content {
        padding: 25px;
        text-align: center;
    }
}

/****process section*************/
.process-section-23 {
    padding: 70px 0;
    background: #f9fbff;
}

.section-title-23 h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
}

.process-row-23 {
    position: relative;
    align-items: center;
}

.process-box-23 {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    text-align: center;
    transition: .3s;
    height: 100%;
    min-height: 362px;
}
.process-box-23 p{
    margin-bottom: 0;
}

.process-box-23:hover {
    transform: translateY(-8px);
    box-shadow: 0px 0px 20px 1px #bdbdbd73;
}
.process-box-23:hover .process-num{
    color: #fff;
}


.process-num {
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFD600;
    color: #000000;
    border-radius: 50%;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
}

.process-box-23 h3 {
    font-size: 22px;
    color: #181717;
    margin-bottom: 15px;
    line-height: 30px;
}

.process-box-23 p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

.process-arrow-23 {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.process-arrow-23 img {
    width: 45px;
    opacity: 0.4;
}

.process-arrow-23:nth-of-type(2) {
    left: 32%;
}

.process-arrow-23:nth-of-type(4) {
    left: 65%;
}

.process-num {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.process-num::before {
    content: '';
    position: absolute;
    inset: 0;
    width: 0;
    height: 100%;
    background-color: #007CFB;
    z-index: -1;
    transition: width 0.4s ease;
}

.process-box-23:hover .process-num::before {
    width: 100%;
}


@media(max-width:991px) {
    .process-arrow-23 {
        display: none;
    }

    .process-box-23 {
        margin-bottom: 30px;
    }
    
}

/****CTA Section******/
.cta-sec-23 {
    padding: 70px 0;
    background: linear-gradient(135deg, #007CFB, #FFD600);
}

.cta-wrap-23 {
    background: #fff;
    border-radius: 22px;
    padding: 45px 50px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.cta-content-23 h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 10px;
}

.cta-content-23 p {
    font-size: 16px;
    color: #555;
    max-width: 600px;
}

.cta-btn-wrap-23 {
    flex-shrink: 0;
}

.cta-btn-23 {
    background: #007CFB;
    color: #fff;
    padding: 14px 34px;
    border-radius: 40px;
    font-weight: 600;
    text-decoration: none;
    transition: .3s;
    box-shadow: 0 8px 20px rgba(0,124,251,.3);
}

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

@media(max-width:768px){
    .cta-wrap-23 {
        flex-direction: column;
        text-align: center;
    }

    .cta-content-23 h2 {
        font-size: 28px;
    }
}

/************Why us Section**************/
.why-us-sec-23 {
    padding: 80px 0;
    background: #f9fbff;
}

.why-us-sec-23 h2 {
    font-size: 36px;
    font-weight: 700;
    color: #000000;
}

.why-box-23 {
    background: #fff;
    border-radius: 20px;
    padding: 30px 32px;
    display: flex;
    gap: 22px;
    height: 100%;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    transition: .35s;
}

.why-box-23:hover {
    transform: translateY(-6px);
}

.why-icon-23 {
    min-width: 50px;
    height: 50px;
    position: relative;
    border-radius: 555px;
    background: #FFD600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-icon-23 img {
       width: 40px;
    top: 13px;
    right: -10px;
    position: absolute;
    /* filter: brightness(0) invert(1); */
}

.why-content-23 h3 {
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 600;
}

.why-content-23 p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

@media(max-width:768px){
    .why-box-23 {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

/********************/
.contact-sec {
    padding: 90px 0;
    background: #f6f9ff;
}

.contact-wrap-2 {
    background: #fff;
    border-radius: 22px;
    padding: 55px;
    display: flex;
    gap: 40px;
    align-items: center;
    box-shadow: 0 18px 45px rgba(0,0,0,0.08);
}

.contact-left {
    flex: 1;
}

.contact-left h2 {
    font-size: 38px;
    font-weight: 700;
    color: #000;
}

.contact-left p {
    margin: 15px 0 25px;
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.contact-actions {
    display: flex;
    gap: 15px;
}

.contact-btn {
    padding: 12px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.contact-btn.primary {
    background: #007CFB;
    color: #fff;
}

.contact-btn.secondary {
    border: 2px solid #007CFB;
    color: #007CFB;
}

.contact-btn:hover {
    background: #FFD600;
    color: #000;
    border-color: #FFD600;
}

.contact-right {
    flex: 1;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 14px;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #007CFB;
}

.contact-submit {
    background: linear-gradient(135deg,#007CFB,#FFD600);
    border: none;
    color: #000;
    padding: 13px 28px;
    border-radius: 30px;
    font-weight: 600;
    width: 100%;
}
.contact-wrap-2 #contact-form input.from-control{
    border: none !important;
    border-bottom: 2px solid #179317 !important;
    width: 100%;
    padding: 8px;
}
.contact-wrap-2 .contact-right{
 padding: 60px;
 border-radius: 20px;
 background-color: #F8F9FA;
 border: 2px solid #9999994a;
}
.contact-wrap-2 .contact-right select {
    min-height: 44px;
}
@media(max-width:991px){
    .contact-wrap {
        flex-direction: column;
        padding: 35px;
    }

    .contact-left h2 {
        font-size: 30px;
    }
    .custom-tabs{
        display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: flex-start;
            overflow: scroll;
    }
    .custom-tabs li.nav-item {
    min-width: fit-content;
}
.tab-img{
    margin-top: 20px;
}
.cta-wrap-23{
    padding: 30px 25px;
}
.contact-wrap-2{
    padding: 35px;
    flex-direction:column;
}
.contact-actions{
    flex-direction: column;
    text-align: center;
}
.contact-wrap-2 .contact-right{
    padding: 20px;
}
}